/* ============================================================
   TRACKVIEW — DESIGN SYSTEM (FULLY FIXED - NO SHAKING)
   ============================================================ */

:root {
    /* Color */
    --navy: #0B1F3A;
    --navy-light: #14315C;
    --amber: #F2A63C;
    --amber-dark: #D98A1F;
    --cream: #F7F5F0;
    --white: #FFFFFF;
    --ink: #1B2430;
    --slate: #5B6472;
    --slate-light: #8B93A1;
    --border: #E3E0D6;
    --success-bg: #E4F4EC;
    --success-ink: #1C7C54;
    --transit-bg: #FDEFDC;
    --transit-ink: #92400E;
    --pending-bg: #E7EAF6;
    --pending-ink: #14315C;
    --alert-bg: #FBEAE5;
    --alert-ink: #C1432A;
    --telegram: #0088CC;
    --telegram-dark: #006699;
    --whatsapp: #25D366;
    --whatsapp-dark: #1DA851;

    /* Type */
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;

    /* Layout */
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow-card: 0 1px 2px rgba(11,31,58,0.04), 0 12px 32px -12px rgba(11,31,58,0.18);
    --shadow-lift: 0 20px 44px -16px rgba(11,31,58,0.28);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.15;
    margin: 0;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--navy);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 0 0 var(--radius-sm) 0;
    z-index: 2000;
    font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Consistent focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--amber-dark);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ========== SITE HEADER / NAV ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--amber);
    font-size: 15px;
}

/* ========== DESKTOP NAV ========== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--slate);
    padding: 8px 2px;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
    border-bottom-color: var(--amber);
}

.nav-link--cta {
    background: var(--navy);
    color: var(--white) !important;
    border-bottom: none !important;
    padding: 10px 18px;
    border-radius: 999px;
}

.nav-link--cta:hover { background: var(--navy-light); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    border-radius: var(--radius-sm);
    z-index: 1001;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== MOBILE NAV - FIXED ========== */
.nav-overlay {
    display: none;
}

.nav-close {
    display: none;
}

/* ========== MOBILE RESPONSIVE - FIXED ========== */
@media (max-width: 860px) {
    /* Show hamburger menu */
    .menu-toggle {
        display: flex;
    }

    /* Hide desktop nav links */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 80px 28px 32px;
        overflow-y: auto;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        border-left: 1px solid var(--border);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex !important; /* Always flex, position controls visibility */
    }

    /* Show nav when open - slide in from right */
    .nav-links.open {
        right: 0;
    }

    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
        backdrop-filter: blur(4px);
    }

    .nav-overlay.active {
        display: block;
    }

    /* Close button */
    .nav-close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 28px;
        color: var(--navy);
        cursor: pointer;
        padding: 8px;
        line-height: 1;
        border-radius: var(--radius-sm);
        transition: background var(--transition);
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
    }

    .nav-close:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    /* Mobile nav links styling */
    .nav-link {
        padding: 14px 4px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        font-size: 17px;
        font-weight: 500;
        color: var(--slate);
    }

    .nav-link.active,
    .nav-link:hover {
        border-bottom-color: var(--amber);
        color: var(--navy);
    }

    .nav-link--cta {
        margin-top: 12px;
        text-align: center;
        border-bottom: none !important;
        background: var(--navy);
        color: var(--white) !important;
        padding: 14px 20px;
        border-radius: 999px;
    }

    .nav-link--cta:hover {
        background: var(--navy-light);
    }

    /* Dark mode for mobile */
    @media (prefers-color-scheme: dark) {
        .nav-links {
            background: var(--navy);
            border-left-color: rgba(255,255,255,0.08);
        }
        .nav-link {
            color: #C7D0E0;
            border-bottom-color: rgba(255,255,255,0.06);
        }
        .nav-link.active,
        .nav-link:hover {
            color: var(--white);
            border-bottom-color: var(--amber);
        }
        .nav-close {
            color: var(--white);
        }
        .nav-close:hover {
            background: rgba(255,255,255,0.08);
        }
        .nav-link--cta {
            background: var(--amber);
            color: var(--navy) !important;
        }
        .nav-link--cta:hover {
            background: var(--amber-dark);
            color: var(--white) !important;
        }
        .nav-overlay {
            background: rgba(0, 0, 0, 0.6);
        }
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .nav-links {
        width: 100%;
        max-width: 100%;
        padding: 72px 20px 24px;
    }
}

/* ========== HERO ========== */
.hero {
    padding: clamp(40px, 6vw, 88px) 0 clamp(48px, 7vw, 96px);
    background: radial-gradient(ellipse at top right, rgba(242,166,60,0.10), transparent 55%), var(--cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--amber-dark);
    background: rgba(242,166,60,0.14);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.eyebrow--center { margin: 0 auto 16px; }

.hero-copy h1 {
    font-size: clamp(36px, 5.2vw, 60px);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hero-lede {
    color: var(--slate);
    font-size: clamp(16px, 1.6vw, 18px);
    max-width: 46ch;
    margin-top: 20px;
}

.hero-points {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 15px;
}

.hero-points i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--success-bg);
    color: var(--success-ink);
    font-size: 11px;
    flex-shrink: 0;
}

/* ========== LABEL CARD ========== */
.label-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
    padding: 40px 32px 28px;
    border: 1px solid var(--border);
}

.label-card__perforation {
    position: absolute;
    top: -1px;
    left: 24px;
    right: 24px;
    height: 12px;
    background-image: radial-gradient(circle, var(--cream) 3.5px, transparent 3.6px);
    background-size: 20px 12px;
    background-repeat: repeat-x;
    background-position: top center;
}

.label-card__stamp {
    position: absolute;
    top: 22px;
    right: 24px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--amber-dark);
    border: 2px solid var(--amber);
    border-radius: 6px;
    padding: 4px 10px;
    transform: rotate(6deg);
}

.label-card__title {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 14px;
}

.tracking-form { display: block; }

.input-row {
    display: flex;
    gap: 12px;
}

.input-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
}

.input-wrap__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-light);
    font-size: 15px;
}

#trackingInput {
    width: 100%;
    padding: 15px 16px 15px 44px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 15px;
    color: var(--ink);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

#trackingInput::placeholder { color: var(--slate-light); font-family: var(--font-body); }

#trackingInput:focus {
    outline: none;
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(11,31,58,0.08);
}

#trackingInput.is-success { border-color: var(--success-ink); }
#trackingInput.is-error { border-color: var(--alert-ink); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 22px;
    white-space: nowrap;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
    background: var(--navy);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -8px rgba(11,31,58,0.5);
}

.btn--primary:disabled {
    opacity: 0.7;
    cursor: progress;
    transform: none;
}

.btn--secondary {
    background: var(--amber);
    color: var(--navy);
}

.btn--secondary:hover {
    background: var(--amber-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.spinner {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: var(--white);
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.form-error {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--alert-bg);
    color: var(--alert-ink);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.form-error.is-visible { display: flex; }

.label-card__meta {
    display: flex;
    gap: 20px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed var(--border);
    font-size: 13px;
    color: var(--slate);
}

.label-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.label-card__meta i { color: var(--amber-dark); }

/* ========== RESULTS ========== */
.results { display: none; padding: 8px 0 clamp(48px, 6vw, 80px); }
.results.is-active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.results-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 32px;
    max-width: 860px;
    margin: 0 auto;
}

.result-status-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--cream);
}

.result-tracking-no {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 16px;
    background: var(--cream);
    padding: 8px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.result-tracking-no i { color: var(--navy); }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
}

.status-delivered { background: var(--success-bg); color: var(--success-ink); }
.status-transit { background: var(--transit-bg); color: var(--transit-ink); }
.status-pending { background: var(--pending-bg); color: var(--pending-ink); }
.status-delayed { background: var(--alert-bg); color: var(--alert-ink); }

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.location-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    border-left: 4px solid var(--border);
}

.location-card--origin { border-left-color: var(--amber); }
.location-card--current { border-left-color: var(--navy); background: #EEF2F9; }
.location-card--destination { border-left-color: var(--success-ink); }

.location-card i { font-size: 18px; color: var(--navy); margin-bottom: 6px; display: block; }

.location-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--slate);
}

.location-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 4px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 18px;
}

.info-item { display: flex; flex-direction: column; gap: 4px; }

.info-label {
    font-size: 12px;
    color: var(--slate);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-label i { color: var(--amber-dark); font-size: 12px; }

.info-value { font-size: 14px; font-weight: 600; color: var(--ink); }

.history-block {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-bottom: 18px;
}

.history-block h4 {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.history-block h4 i { color: var(--navy); }

.history-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.history-row:last-child { border-bottom: none; }
.history-row .h-loc { display: flex; align-items: center; gap: 8px; }
.history-row .h-loc i { color: var(--amber-dark); }
.history-row .h-date { color: var(--slate); font-size: 12px; white-space: nowrap; }

.result-actions {
    text-align: center;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
}

/* ========== SECTION HEAD ========== */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); }
.section-sub { color: var(--slate); margin-top: 12px; font-size: 16px; }

/* ========== STEPS ========== */
.steps { padding: clamp(48px, 7vw, 96px) 0; }

.steps-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}

.step { position: relative; padding-left: 4px; }

.step-index {
    display: block;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--amber-dark);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: 15px; }

/* ========== CAPABILITIES ========== */
.capabilities { padding: clamp(48px, 7vw, 96px) 0; background: var(--white); }

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.capability-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--amber);
}

.capability-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--navy);
    color: var(--amber);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.capability-card h3 { font-size: 17px; margin-bottom: 8px; }
.capability-card p { color: var(--slate); font-size: 14px; }

/* ========== TRUST INDICATORS ========== */
.trust {
    padding: clamp(40px, 5vw, 64px) 0;
    background: var(--cream);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.trust-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.trust-content p {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.5;
}

/* ========== CTA ========== */
.cta {
    padding: clamp(56px, 8vw, 100px) 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(135deg, rgba(11, 31, 58, 0.92) 0%, rgba(11, 31, 58, 0.85) 50%, rgba(11, 31, 58, 0.75) 100%),
        url('../trackview.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cta-bg-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(242, 166, 60, 0.08), transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(242, 166, 60, 0.05), transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(26px, 3.6vw, 36px);
    margin-bottom: 14px;
}

.cta-content h2 i {
    color: var(--amber);
    margin-right: 10px;
}

.cta-content p {
    color: #C7D0E0;
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content .btn--secondary {
    background: var(--amber);
    color: var(--navy);
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cta-content .btn--secondary:hover {
    background: var(--amber-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -8px rgba(242, 166, 60, 0.4);
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.cta-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #C7D0E0;
    font-size: 13px;
    opacity: 0.85;
    transition: opacity var(--transition);
}

.cta-trust-badge:hover {
    opacity: 1;
}

.cta-trust-badge i {
    color: var(--amber);
    font-size: 16px;
}

/* ============================================================
   TESTIMONIALS - BIG, BOLD, PROFESSIONAL
   ============================================================ */
.testimonials {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--cream);
    position: relative;
}

.testimonials .section-head {
    margin-bottom: 56px;
}

.testimonials .section-head h2 {
    font-size: clamp(32px, 4vw, 48px);
}

/* Wrapper with side padding for arrows */
.testimonials-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Slider Grid - 3 cards on desktop */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* BIG CARDS */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 300px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
    border-color: var(--amber);
}

/* Premium accent bar */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--amber), var(--amber-dark));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Large Stars */
.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--amber);
    font-size: 20px;
    letter-spacing: 2px;
}

/* Large Quote */
.testimonial-quote {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
    font-weight: 400;
}

.testimonial-quote::before {
    content: '"';
    color: var(--amber);
    font-size: 32px;
    font-weight: 700;
    margin-right: 6px;
    opacity: 0.7;
}

.testimonial-quote::after {
    content: '"';
    color: var(--amber);
    font-size: 32px;
    font-weight: 700;
    margin-left: 6px;
    opacity: 0.7;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 2px solid var(--border);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-info strong {
    color: var(--navy);
    font-size: 17px;
    font-weight: 700;
    display: block;
}

.testimonial-info span {
    color: var(--slate);
    font-size: 14px;
}

/* Navigation Arrows - BIGGER */
.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-card);
}

.testimonial-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-50%) scale(1.05);
}

.testimonial-btn--prev {
    left: 0;
}

.testimonial-btn--next {
    right: 0;
}

.testimonial-btn i {
    font-size: 20px;
}

/* Dots - Hidden on desktop */
.testimonial-dots {
    display: none;
}

/* ============================================================
   TESTIMONIALS RESPONSIVE
   ============================================================ */

/* Tablet - 2 cards */
@media (max-width: 1024px) {
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .testimonial-card {
        min-height: 280px;
        padding: 32px 28px;
    }
}

/* Mobile - Horizontal scroll, 1 card */
@media (max-width: 768px) {
    .testimonials-wrapper {
        padding: 0 16px;
    }
    
    .testimonials-slider {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 4px 4px 16px 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-card {
        flex: 0 0 calc(92% - 10px);
        min-width: 0;
        scroll-snap-align: start;
        min-height: 240px;
        padding: 28px 24px;
    }
    
    .testimonial-quote {
        font-size: 15px;
    }
    
    .testimonial-stars i {
        font-size: 17px;
    }
    
    .testimonial-btn {
        display: none;
    }
    
    /* Show dots on mobile */
    .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 24px;
    }
    
    .testimonial-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--border);
        cursor: pointer;
        transition: all var(--transition);
        border: none;
        padding: 0;
    }
    
    .testimonial-dots .dot.active {
        background: var(--amber);
        width: 30px;
        border-radius: 5px;
    }
    
    .testimonial-avatar {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    
    .testimonial-info strong {
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 calc(96% - 4px);
        padding: 24px 20px;
        min-height: 220px;
    }
    
    .testimonial-quote {
        font-size: 14px;
    }
    
    .testimonial-stars i {
        font-size: 15px;
    }
}

/* ========== FOOTER ========== */
.site-footer { background: #081527; color: #9AA6BA; padding: 56px 0 28px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 36px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo i { color: var(--amber); }
.footer-brand p { line-height: 1.6; font-size: 14px; max-width: 32ch; }

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    transition: all var(--transition);
    text-decoration: none;
}

.social-link--telegram {
    background: var(--telegram);
    color: var(--white);
}

.social-link--telegram:hover {
    background: var(--telegram-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.social-link--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.social-link--whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.social-link i {
    font-size: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 11px; }

.footer-col a,
.footer-col li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-col a {
    color: #9AA6BA;
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--amber); }
.footer-col i { width: 16px; text-align: center; color: var(--amber); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    text-align: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: left; order: 1; }
    .label-card { order: 2; }
    .steps-list { grid-template-columns: 1fr; gap: 28px; }
    .capability-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
    .container { padding: 0 18px; }
    .navbar { padding: 14px 18px; }
    .location-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .input-row { flex-direction: column; }
    .btn--primary { width: 100%; }
    .label-card { padding: 34px 20px 22px; }
    .label-card__stamp { top: 18px; right: 18px; }
    .capability-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: left; }
    .result-status-row { flex-direction: column; align-items: flex-start; }
    .results-card { padding: 22px; }
    .hero-points li { font-size: 14px; }
    .trust-item { flex-direction: column; align-items: center; text-align: center; }
    .footer-social { justify-content: center; }
    .cta-trust-badges {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
}