/* ═══════════════════════════════════════════════════════════════
   MOLLA TRADERS – MAIN STYLESHEET
   Mobile-First | B2B Manufacturing Landing Page
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
    /* Brand Colors */
    --navy-950:   #050D1F;
    --navy-900:   #0A1628;
    --navy-800:   #0F2044;
    --navy-700:   #152858;
    --navy-600:   #1C336E;
    --navy-500:   #264085;
    --amber-500:  #E8A020;
    --amber-400:  #F5B840;
    --amber-300:  #FACF70;
    --amber-100:  #FFF4DC;
    --grey-800:   #1E2939;
    --grey-700:   #374151;
    --grey-600:   #4B5563;
    --grey-500:   #6B7280;
    --grey-400:   #9CA3AF;
    --grey-300:   #D1D5DB;
    --grey-200:   #E5E7EB;
    --grey-100:   #F3F4F6;
    --grey-50:    #F9FAFB;
    --white:      #FFFFFF;
    --success:    #059669;
    --error:      #DC2626;
    /* Typography */
    --font-body:  system-ui, -apple-system, 'Inter', 'Segoe UI', sans-serif;
    --font-display: 'Barlow Condensed', 'Inter', system-ui, sans-serif;
    /* Spacing */
    --section-py: 80px;
    --container:  1200px;
    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:  0 4px 12px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.07);
    --shadow-lg:  0 12px 32px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.09);
    --shadow-navy: 0 8px 24px rgba(10,22,40,.35);
    /* Transitions */
    --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
    /* Border radius */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--grey-800);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ─── Utility Classes ────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.mt-2 { margin-top: 1rem; }
.text-center { text-align: center; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full { width: 100%; }

.btn-primary {
    background: var(--amber-500);
    color: var(--navy-900);
    box-shadow: 0 4px 16px rgba(232,160,32,.35);
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--amber-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,160,32,.45);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
    background: #20bc5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover, .btn-outline:focus {
    border-color: var(--amber-500);
    color: var(--amber-500);
    transform: translateY(-2px);
}

/* ─── Section Headers ────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--grey-600);
    max-width: 620px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 56px;
}

.section-header--dark .section-title { color: var(--white); }
.section-header--dark .section-subtitle { color: var(--grey-400); }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-navy);
}

.nav-container { width: 100%; }

.nav-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 68px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--amber-500);
    color: var(--navy-900);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 0.62rem;
    color: var(--grey-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Nav links */
.nav-links {
    display: none;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    color: var(--grey-300);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--amber-500);
    background: rgba(232,160,32,.1);
}

.nav-cta { margin-left: auto; }

/* Mobile menu button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
    border-radius: var(--radius-sm);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Panel */
.mobile-menu {
    display: none;
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: var(--navy-900);
}

.mobile-menu.open { display: block; }

.mobile-nav-link {
    display: block;
    color: var(--grey-300);
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: var(--transition);
}

.mobile-nav-link:hover { color: var(--amber-500); padding-left: 8px; }

/* ─── Tablet+ navigation ─────────────────────────────────────── */
@media (min-width: 768px) {
    .nav-links { display: flex; }
    .mobile-menu-btn { display: none; }
    .nav-cta { margin-left: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 68px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 13, 31, 0.93) 0%,
        rgba(10, 22, 40, 0.85) 50%,
        rgba(21, 40, 88, 0.80) 100%
    );
    z-index: 1;
}

/* Animated gradient fallback when no video */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(38,64,133,.6) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,160,32,.15);
    border: 1px solid rgba(232,160,32,.3);
    color: var(--amber-400);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-headline-accent { color: var(--amber-400); }

.hero-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 640px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    min-width: 120px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--amber-400);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,.6);
    margin-top: 4px;
}

.hero-stat-divider {
    display: none;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-trust-badges span {
    font-size: 0.8rem;
    color: rgba(255,255,255,.65);
    font-weight: 500;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.45);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,.4);
    border-bottom: 2px solid rgba(255,255,255,.4);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(5px); }
}

@media (min-width: 640px) {
    .hero-cta-group { flex-direction: row; flex-wrap: wrap; }
    .hero-stat-divider { display: block; width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }
}

/* ═══════════════════════════════════════════════════════════════
   SPECIFICATIONS SECTION
   ═══════════════════════════════════════════════════════════════ */
.specs-section {
    padding: var(--section-py) 0;
    background: var(--grey-50);
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 56px;
}

.spec-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-500), var(--amber-300));
    opacity: 0;
    transition: var(--transition);
}

.spec-card:hover {
    border-color: var(--amber-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.spec-card:hover::before { opacity: 1; }

.spec-card--primary {
    background: var(--navy-900);
    border-color: var(--navy-700);
    color: var(--white);
}

.spec-card--primary .spec-card-title { color: var(--white); }
.spec-card--primary .spec-card-desc { color: rgba(255,255,255,.75); }
.spec-card--primary::before { opacity: 1; }

.spec-card--highlight {
    border-color: rgba(220,38,38,.25);
    background: #FFF5F5;
}

.spec-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1;
}

.spec-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.spec-card-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--amber-100);
    color: #92600A;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.spec-badge--red {
    background: #FEE2E2;
    color: #991B1B;
}

.spec-card-desc {
    font-size: 0.9rem;
    color: var(--grey-600);
    line-height: 1.65;
}

/* Size chips */
.spec-size-chart {
    display: flex;
    gap: 6px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.size-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--navy-900);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

/* GSM bar */
.gsm-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.gsm-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--grey-500);
    flex-shrink: 0;
}

.gsm-track {
    flex: 1;
    height: 6px;
    background: var(--grey-200);
    border-radius: 3px;
    overflow: hidden;
}

.gsm-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--amber-300), var(--amber-500));
    border-radius: 3px;
    animation: gsmFill 2s ease-out forwards;
}

@keyframes gsmFill {
    from { width: 0; }
    to { width: 100%; }
}

@media (min-width: 600px) {
    .specs-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
    .specs-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Comparison Table */
.specs-table-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--grey-200);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.specs-table-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 20px;
    text-align: center;
}

.specs-table-container { overflow-x: auto; }

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.specs-table th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--grey-50);
    color: var(--grey-600);
    border-bottom: 2px solid var(--grey-200);
}

.col-molla { color: var(--navy-900) !important; background: rgba(21,40,88,.06) !important; }
.col-stocklot { color: var(--grey-600) !important; }

.specs-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--grey-100);
    color: var(--grey-700);
}

.specs-table td.col-molla {
    color: var(--success);
    font-weight: 600;
    background: rgba(5,150,105,.04);
}

.specs-table td.col-stocklot {
    color: var(--grey-500);
}

.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:hover td { background: var(--grey-50); }
.specs-table tr:hover td.col-molla { background: rgba(5,150,105,.06); }

/* ═══════════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════════ */
.gallery-section {
    padding: var(--section-py) 0;
    background: var(--navy-900);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--navy-800);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }

.gallery-item--wide {
    grid-column: 1 / -1;
    aspect-ratio: 16/7;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 14px 10px;
    background: linear-gradient(0deg, rgba(5,13,31,.9) 0%, transparent 100%);
    color: rgba(255,255,255,.9);
    font-size: 0.8rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Placeholder state */
.gallery-item--placeholder {
    border: 2px dashed rgba(255,255,255,.15);
}

.gallery-placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 20px;
}

.gallery-placeholder-icon { font-size: 2.5rem; }

.gallery-placeholder-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,.45);
    font-weight: 500;
}

.gallery-upload-note {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 32px;
}

.gallery-upload-note p { font-size: 0.85rem; color: rgba(255,255,255,.6); }
.gallery-upload-note a { color: var(--amber-400); }

.gallery-cta {
    text-align: center;
}

.gallery-cta p {
    color: rgba(255,255,255,.7);
    margin-bottom: 16px;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-caption { transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   SHIPPING SECTION
   ═══════════════════════════════════════════════════════════════ */
.shipping-section {
    padding: var(--section-py) 0;
    background: var(--white);
}

.shipping-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Shipping Route Visualization */
.shipping-route {
    background: var(--navy-900);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    color: var(--white);
}

.shipping-route-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.route-point {
    display: flex;
    align-items: center;
    gap: 16px;
}

.route-icon { font-size: 2rem; }

.route-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-400);
    font-weight: 600;
}

.route-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.route-sub { font-size: 0.82rem; color: var(--grey-400); }

.route-point--origin .route-icon {
    background: var(--amber-500);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.route-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--grey-500);
}

.route-ship { font-size: 1.5rem; }

.route-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--amber-500), rgba(232,160,32,.2));
    position: relative;
}

.route-arrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid rgba(232,160,32,.5);
}

.route-destinations {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.route-point--dest {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    padding: 14px 18px;
    border-radius: var(--radius-md);
}

/* Shipping Details Cards */
.shipping-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shipping-detail-card {
    display: flex;
    gap: 20px;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.shipping-detail-card:hover {
    border-color: var(--amber-300);
    box-shadow: var(--shadow-md);
}

.sdc-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.sdc-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.sdc-content p {
    font-size: 0.9rem;
    color: var(--grey-600);
    line-height: 1.65;
}

/* Payment Terms */
.payment-terms { display: flex; flex-direction: column; gap: 10px; }

.payment-term {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--grey-700);
}

.pt-badge {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(21,40,88,.1);
    color: var(--navy-700);
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 2px;
}

.pt-badge--no {
    background: rgba(220,38,38,.1);
    color: #991B1B;
}

.payment-term--no { opacity: 0.75; }

/* Doc list */
.doc-list { padding-left: 0; }
.doc-list li {
    font-size: 0.88rem;
    color: var(--grey-600);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}
.doc-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--amber-500);
    font-weight: 700;
}

@media (min-width: 900px) {
    .shipping-layout { flex-direction: row; }
    .shipping-route { flex: 0 0 380px; }
    .shipping-route-inner { flex-direction: column; }
    .route-destinations { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */
.contact-section {
    padding: var(--section-py) 0;
    background: var(--grey-50);
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-info .section-title { color: var(--navy-900); margin-top: 8px; }

.contact-info > p {
    color: var(--grey-600);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.contact-methods { display: flex; flex-direction: column; gap: 14px; }

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-method--whatsapp {
    background: #F0FDF4;
    border-color: rgba(37,211,102,.3);
}

.contact-method--whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 4px 12px rgba(37,211,102,.15);
}

.cm-icon { font-size: 1.4rem; }

.wa-icon { color: #25D366; }

.cm-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey-500);
    margin-bottom: 2px;
}

.cm-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-900);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--grey-700);
}

.required { color: var(--error); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-sm);
    background: var(--grey-50);
    color: var(--grey-800);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy-700);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(21,40,88,.1);
}

.form-group select { appearance: none; cursor: pointer; }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group:not(:last-child) { margin-bottom: 0; }

/* Last form-group without row */
.form-group + .form-group { margin-top: 0; }

.contact-form > .form-group { margin-bottom: 16px; }

.form-submit-row { margin-top: 24px; }

.btn-full { width: 100%; }

#cfSubmitBtn { position: relative; }

.form-response {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
}

.form-response.success {
    background: #ECFDF5;
    border: 1px solid rgba(5,150,105,.3);
    color: #065F46;
}

.form-response.error {
    background: #FEF2F2;
    border: 1px solid rgba(220,38,38,.3);
    color: #991B1B;
}

.form-disclaimer {
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--grey-400);
    text-align: center;
    line-height: 1.5;
}

@media (min-width: 600px) {
    .form-row { flex-direction: row; }
}

@media (min-width: 900px) {
    .contact-layout { flex-direction: row; align-items: flex-start; }
    .contact-info { flex: 0 0 360px; }
    .contact-form-wrap { flex: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--navy-950);
    color: rgba(255,255,255,.8);
    padding-top: 64px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-logo--white .logo-name { color: var(--white); }
.site-logo--white .logo-sub { color: var(--grey-500); }

.footer-desc {
    font-size: 0.88rem;
    color: var(--grey-500);
    line-height: 1.7;
    margin: 16px 0 20px;
}

.footer-links-group h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-400);
    margin-bottom: 16px;
}

.footer-links-group ul { display: flex; flex-direction: column; gap: 8px; }

.footer-links-group li, .footer-links-group a {
    font-size: 0.88rem;
    color: var(--grey-500);
    transition: var(--transition);
}

.footer-links-group a:hover { color: var(--amber-400); padding-left: 4px; }

.footer-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.fp-badge {
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(232,160,32,.15);
    color: var(--amber-400);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(232,160,32,.2);
}

/* Legal Notice */
.footer-legal {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 32px;
}

.legal-notice h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber-400);
    margin-bottom: 10px;
}

.legal-notice p {
    font-size: 0.75rem;
    color: var(--grey-500);
    line-height: 1.7;
}

.footer-bottom {
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255,255,255,.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--grey-600);
    text-align: center;
    line-height: 1.6;
}

.footer-seo-tags {
    margin-top: 8px !important;
    font-size: 0.68rem !important;
    color: var(--navy-700) !important;
}

@media (min-width: 640px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
    .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .footer-brand { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.15);
    color: var(--white);
    transition: var(--transition);
    animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,.6), 0 4px 12px rgba(0,0,0,.2);
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 66px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy-900);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--navy-900);
}

.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
    50% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,.0); }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
    .btn-lg { padding: 14px 20px; font-size: 0.9rem; }
    .hero-headline { font-size: 1.85rem; }
}

/* Print */
@media print {
    .site-header, .whatsapp-float, .hero-section video { display: none !important; }
    .site-footer { background: var(--white) !important; color: var(--grey-800) !important; }
}
