/* ================================================
   Setup Lojistik - Premium Design System
   Color: Navy #0B1F3A | Gold #D4AF37 | Light #F5F7FA
   ================================================ */

/* ---------- RESET & ROOT ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #0B1F3A;
    --navy-light:  #112d52;
    --navy-mid:    #1a3a5c;
    --gold:        #D4AF37;
    --gold-light:  #e8cc6a;
    --gold-dark:   #b8941e;
    --white:       #ffffff;
    --off-white:   #F5F7FA;
    --gray:        #8892a4;
    --gray-light:  #e8ecf2;
    --text:        #1e2a3a;
    --text-light:  #4a5568;
    --font-main:   'Inter', sans-serif;
    --font-display:'Playfair Display', serif;
    --radius:      12px;
    --shadow-sm:   0 2px 8px rgba(11,31,58,.10);
    --shadow-md:   0 8px 32px rgba(11,31,58,.16);
    --shadow-lg:   0 20px 60px rgba(11,31,58,.22);
    --transition:  .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-py { padding: 100px 0; }
.section-py-sm { padding: 60px 0; }

/* ---------- TYPOGRAPHY ---------- */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
}
.section-subtitle.light { color: rgba(255,255,255,.75); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.12);
    opacity: 0;
    transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(212,175,55,.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(212,175,55,.5); }

.btn-outline-white {
    border: 2px solid rgba(255,255,255,.6);
    color: var(--white);
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn-navy {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(11,31,58,.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 32px rgba(0,0,0,.25);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: grid; place-items: center;
    color: var(--navy);
    font-size: 1.1rem;
}
.brand-text { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -.5px; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
    padding: 8px 16px;
    color: rgba(255,255,255,.82);
    font-weight: 500;
    font-size: .9rem;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
    background: rgba(212,175,55,.1);
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.nav-phone i { color: var(--gold); }
.nav-phone:hover { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.hamburger span { height: 2px; background: var(--white); border-radius: 4px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO SLIDER ---------- */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,31,58,.88) 0%, rgba(11,31,58,.45) 60%, rgba(0,0,0,.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
}

.hero-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .7s .3s forwards;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .7s .5s forwards;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 44px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .7s .7s forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .7s .9s forwards;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 20px;
}
.slider-dots { display: flex; gap: 10px; }
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

.slider-arrow {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.35);
    color: var(--white);
    display: grid; place-items: center;
    transition: var(--transition);
    font-size: .9rem;
}
.slider-arrow:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- SERVICES PREVIEW ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; margin-top: 56px; }

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 72px; height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: grid; place-items: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* ---------- STATS ---------- */
.stats-section { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 40px; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ---------- WHY US ---------- */
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.whyus-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.whyus-image img { width: 100%; height: 520px; object-fit: cover; }
.whyus-list { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.whyus-item { display: flex; gap: 18px; align-items: flex-start; }
.whyus-icon {
    width: 52px; height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
    border: 1px solid rgba(212,175,55,.3);
    border-radius: 12px;
    display: grid; place-items: center;
    color: var(--gold);
    font-size: 1.1rem;
}
.whyus-text h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.whyus-text p { font-size: .875rem; color: var(--text-light); line-height: 1.6; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--off-white); }
.testimonials-track { display: flex; gap: 28px; overflow: hidden; margin-top: 56px; }
.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-stars { color: var(--gold); margin-bottom: 18px; font-size: .9rem; }
.testi-text { font-size: .95rem; color: var(--text-light); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: grid; place-items: center;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--navy); font-size: .9rem; }
.testi-company { font-size: .8rem; color: var(--gray); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/images/slide-truck.jpg') center/cover no-repeat;
    opacity: .07;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 16px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ---------- FORMS ---------- */
.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 56px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .85rem; font-weight: 700; color: var(--navy); letter-spacing: .3px; }
.form-group input, .form-group select, .form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: .95rem;
    color: var(--text);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(11,31,58,.06);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { grid-column: 1 / -1; text-align: center; margin-top: 8px; }

/* Success / Error Message */
.alert {
    padding: 16px 24px;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 500;
    margin-bottom: 28px;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 20px;
    padding: 48px 40px;
    color: var(--white);
}
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 10px; }
.contact-info-card p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 36px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
    width: 46px; height: 46px;
    background: rgba(212,175,55,.15);
    border: 1px solid rgba(212,175,55,.3);
    border-radius: 10px;
    display: grid; place-items: center;
    color: var(--gold);
    flex-shrink: 0;
}
.contact-item-text span { display: block; font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.contact-item-text a, .contact-item-text p { color: rgba(255,255,255,.9); font-weight: 500; }

/* ---------- ABOUT PAGE ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: 20px; }
.about-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 140px; height: 140px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 20px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
}
.about-badge-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.about-badge-text { font-size: .75rem; font-weight: 700; color: var(--navy); text-align: center; text-transform: uppercase; letter-spacing: 1px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-icon { color: var(--gold); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.value-item h4 { font-weight: 700; font-size: .95rem; color: var(--navy); }
.value-item p { font-size: .85rem; color: var(--text-light); }

/* ---------- SERVICES PAGE ---------- */
.services-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.service-full-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.service-full-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-full-img { height: 200px; overflow: hidden; }
.service-full-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-full-card:hover .service-full-img img { transform: scale(1.06); }
.service-full-body { padding: 32px; }
.service-full-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-full-body p { font-size: .9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-features li { font-size: .85rem; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 900;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: var(--transition);
    animation: pulse 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
    50%      { box-shadow: 0 4px 36px rgba(37,211,102,.7); }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- FOOTER ---------- */
.footer { background: #070f1e; }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 48px; }
.footer-brand { margin-bottom: 18px; display: inline-flex; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.12);
    display: grid; place-items: center;
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-heading { font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .875rem; color: rgba(255,255,255,.5); }
.footer-contact-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.5); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 24px 0; }
.footer-bottom p { text-align: center; font-size: .85rem; color: rgba(255,255,255,.3); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .whyus-grid, .about-grid { grid-template-columns: 1fr; }
    .whyus-image, .about-image-wrap { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .testimonial-card { flex: 0 0 calc(50% - 14px); }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 20px; z-index: 998; font-size: 1.25rem; }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.1rem; }
    .hamburger { display: flex; z-index: 999; }
    .nav-phone { display: none; }
    .form-grid { grid-template-columns: 1fr; }
    .form-card { padding: 36px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .testimonial-card { flex: 0 0 calc(100% - 0px); }
    .values-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
}
