/* =========================================
   1. BASE STYLES & VARIABLES (RICH LIGHT/DARK HYBRID)
   ========================================= */
:root {
    /* South African Flag Color Palette */
    --sa-red: #E03C31;
    --sa-green: #007A3D;
    --sa-yellow: #FFB81C;
    --sa-blue: #001489;
    --sa-black: #000000;
    --sa-white: #FFFFFF;

    /* Primary Theme Setup (Mainly Red) */
    --primary: var(--sa-red);
    --primary-hover: #C6281E;
    
    /* Surface Colors */
    --bg-light: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-dark: #0A0E17; /* Dark Slate for contrast */
    --card-bg: #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.05);
    
    /* Text Colors */
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #F8FAFC;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
   2. REUSABLE COMPONENTS
   ========================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.grid-2-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; align-items: center; }

.section-header { text-align: center; max-width: 650px; margin: 0 auto 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-tag { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.5rem; display: inline-block; }

.highlight { color: var(--primary); }

/* Card styles */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

/* Alternate Section Utility Backgrounds */
.bg-color-red {
    background: linear-gradient(135deg, var(--sa-red) 50%, #B82A21);
    color: var(--text-light);
}

.bg-color-red h1, .bg-color-red h2, .bg-color-red h3, .bg-color-red h4 {
    color: var(--text-light);
}

.bg-color-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.85rem 1.85rem; border-radius: 50px; font-weight: 700;
    cursor: pointer; font-size: 0.95rem; gap: 0.5rem; border: none;
}

.btn-primary {
    background-color: var(--sa-white);
    color: var(--sa-red);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bg-color-red .btn-primary {
    background-color: var(--sa-white);
    color: var(--sa-red);
}

.btn-primary:hover {
    background-color: var(--sa-yellow);
    color: var(--sa-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--sa-white);
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--sa-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem;
}

/* =========================================
   3. NAVIGATION
   ========================================= */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 1.5rem 0; background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.navbar.scrolled { padding: 1rem 0; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }

/* Make logo bigger as requested */
.logo-img { max-height: 65px; width: auto; display: block; transition: var(--transition-smooth); }
.navbar.scrolled .logo-img { max-height: 55px; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-muted); font-size: 0.95rem; font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* Hide mobile button on desktop */
.mobile-menu-btn {
    display: none !important;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* =========================================
   4. HERO SECTION (RED THEME)
   ========================================= */
.hero {
    position: relative; padding: 11rem 0 7rem; min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--sa-red) 0%, #a8221b 100%);
    color: var(--text-light);
}

.hero-overlay {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.hero-text-wrapper h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 800; }

/* Light mode text colors override inside red background */
.hero-text-wrapper p { color: rgba(255, 255, 255, 0.85); font-size: 1.15rem; margin-bottom: 2.5rem; }

.hero-stats { display: flex; gap: 3rem; padding-top: 2rem; }
.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number { font-size: 2.25rem; font-weight: 800; color: var(--sa-yellow); }
.stat-label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }

.waving-flag-card {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px); border-radius: 24px; padding: 1rem;
    box-shadow: var(--shadow-heavy);
}

.flag-surface { border-radius: 16px; overflow: hidden; }

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}


/* Accent Bar */
.sa-accent-bar {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(to right, 
        var(--sa-black) 0%, var(--sa-yellow) 16.6%, var(--sa-green) 33.3%, 
        var(--sa-white) 50%, var(--sa-red) 66.6%, var(--sa-blue) 83.3%);
}

/* =========================================
   5. PRODUCTS (LIGHT THEME)
   ========================================= */
.products { padding: 7rem 0; background-color: var(--bg-alt); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }

.product-card {
    background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow-soft); transition: var(--transition-smooth);
}

.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); border-color: rgba(224, 60, 49, 0.2); }
.product-img-wrapper { height: 210px; overflow: hidden;}
.product-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.product-card:hover .product-img { transform: scale(1.04); }

.product-badge { position: absolute; top: 1rem; right: 1rem; padding: 0.4rem 0.8rem; border-radius: 6px; font-size: 0.75rem; font-weight: 700; color: white; }
.badge-orange { background-color: #F97316; } .badge-sa { background: linear-gradient(45deg, var(--sa-green), var(--sa-red)); } .badge-red { background-color: var(--sa-red); }

.product-info { padding: 1.75rem; }
.product-info h3 { font-size: 1.35rem; margin-bottom: 0.25rem; font-family: 'Space Grotesk', sans-serif; }
.specs-short { color: var(--primary); font-size: 0.85rem; font-weight: 700; margin-bottom: 0.75rem; }
.product-info p.desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }

.product-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-color); padding-top: 1rem; }
.spec-tag { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.35rem; }

.btn-icon {
    background: var(--bg-alt); color: var(--text-dark); width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; padding: 0 !important; /* Forces exact circular sizing */
}
.product-card:hover .btn-icon { background-color: var(--primary); border-color: var(--primary); color: white; }

/* =========================================
   6. SPECIFICATIONS (LIGHT)
   ========================================= */
.specs-section { padding: 6rem 0; background: var(--bg-light); }

.specs-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.specs-box {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center;
    background: var(--bg-alt); border-radius: 24px; padding: 4rem; box-shadow: var(--shadow-soft);
}

.specs-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; font-weight: 600; }
.specs-list li i { color: var(--primary); font-size: 1.1rem; }

.optional-add-on {
    display: flex; gap: 1rem; align-items: center; background: #FFFFFF;
    padding: 1.25rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); border-left: 5px solid var(--sa-yellow);
}

.add-on-icon { font-size: 1.5rem; color: var(--sa-yellow); }

/* CSS Diagram */
.flag-diagram { position: relative; height: 300px; display: flex; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05)); }
.diagram-flag {
    width: 250px; height: 160px; background: rgba(224, 60, 49, 0.05); border: 2.5px dashed var(--primary);
    border-radius: 8px; position: absolute; right: 20px; top: 40px;
    display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 800;
}
.diagram-pole { width: 6px; height: 260px; background: linear-gradient(to bottom, #CBD5E1, #64748B); position: absolute; right: 270px; top: 20px; border-radius: 3px; }
.callout { position: absolute; background: #FFFFFF; border: 1.5px solid var(--border-color); padding: 0.4rem 0.8rem; border-radius: 8px; font-size: 0.75rem; font-weight: 700; }
.callout-rope { right: 260px; top: 60px; } .callout-size { bottom: 60px; right: 80px; }

/* =========================================
   7. CUSTOM BRANDING (DARK BLUE / GREEN HYBRID)
   ========================================= */
.custom-branding {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #111827 100%);
    color: var(--text-light);
}

.custom-branding .section-header h2 { color: var(--text-light); }
.custom-branding .section-header p { color: rgba(255,255,255,0.7); }

/* Added missing Steps Container Grid */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: 1fr !important;
    }
}

.step-card {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px; padding: 3rem 2rem; text-align: center;
    box-shadow: var(--shadow-soft); transition: var(--transition-smooth);
    position: relative;
}

.step-card:hover { border-color: var(--sa-green); background: rgba(255, 255, 255, 0.05); }

.step-number { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.75rem; font-weight: 800; color: rgba(255, 255, 255, 0.04); }
.step-icon {
    width: 65px; height: 65px; background: rgba(0, 122, 61, 0.15); color: var(--sa-green);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin: 0 auto 1.5rem; border: 1px solid rgba(0, 122, 61, 0.2);
}

.step-card p { color: rgba(255, 255, 255, 0.7); }

/* =========================================
   8. COMPLETE RANGE (LIGHT)
   ========================================= */
.range-section { padding: 6rem 0; background: var(--bg-light); }
.range-section { 
    padding: 6rem 0; 
    background: var(--bg-light); 
    position: relative;
    overflow: hidden;
}

/* Fading Edges Mask */
.range-marquee::before,
.range-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.range-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.range-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.range-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1rem 0;
    width: 100%;
    margin-bottom: 1.5rem;
}

.marquee-track {
    display: inline-flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-left 35s linear infinite;
}

.to-right .marquee-track {
    animation-name: scroll-right;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.range-item {
    background: var(--bg-alt); 
    border: 1px solid var(--border-color); 
    padding: 1.25rem 2rem;
    border-radius: 14px; 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    font-weight: 700; 
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.range-item i { color: var(--sa-green); font-size: 1.1rem; }
.range-item:hover { 
    background: #FFFFFF; 
    transform: translateY(-4px); 
    box-shadow: var(--shadow-medium);
}

/* South African Flags Alternating Color Bar Bottom */
.range-item:nth-child(4n+1) { border-bottom: 3.5px solid var(--sa-red); }
.range-item:nth-child(4n+2) { border-bottom: 3.5px solid var(--sa-green); }
.range-item:nth-child(4n+3) { border-bottom: 3.5px solid var(--sa-yellow); }
.range-item:nth-child(4n+4) { border-bottom: 3.5px solid var(--sa-blue); }

/* Pause on hover for better UX */
.range-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* =========================================
   8.5 VIDEO GALLERY (LIGHT/GLASS)
   ========================================= */
.gallery-section {
    padding: 7rem 0;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(224, 60, 49, 0.2);
}

.video-wrapper {
    position: relative;
    height: 350px;
    background: #000;
    overflow: hidden;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--sa-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(224, 60, 49, 0.3);
    transform: scale(0.9);
    transition: var(--transition-smooth);
    padding-left: 4px;
}

.video-card:hover .play-btn {
    transform: scale(1);
    background: var(--sa-yellow);
    color: var(--sa-black);
}

.video-info {
    display: none;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}


.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* =========================================
   8.6 PHOTO GALLERY ADDITIONS
   ========================================= */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.tab-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--sa-red);
    border-color: var(--sa-red);
}

.tab-btn.active {
    background: var(--sa-red);
    color: white;
    border-color: var(--sa-red);
    box-shadow: 0 4px 12px rgba(224, 60, 49, 0.2);
}

.gallery-content {
    display: none;
    margin-top: 3rem;
}

.gallery-content.active {
    display: block !important;
}



@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Photo Cards */
.photo-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.photo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(224, 60, 49, 0.2);
}

.photo-wrapper {
    position: relative;
    height: 350px !important;
    overflow: hidden;
    background: #f4f5f7;
}


.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.photo-card:hover .gallery-img {
    transform: scale(1.08);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.photo-card:hover .photo-overlay {
    opacity: 1;
}

.view-btn {
    width: 55px;
    height: 55px;
    background: white;
    color: var(--sa-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.photo-card:hover .view-btn {
    transform: scale(1);
    background: var(--sa-red);
    color: white;
}

.photo-info {
    display: none;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}


.photo-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.photo-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   9. WHY CHOOSE US (RED THEME FOR PREMIUM IMPACT)
   ========================================= */
.why-choose {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--sa-red) 50%, #B82A21);
    color: var(--text-light);
}

.why-choose .grid-2-col { align-items: stretch; }
.why-choose .why-visual { height: 100%; }

.why-choose .section-tag { color: var(--sa-yellow); }
.why-choose h2 { 
    color: var(--text-light); 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
}
.why-choose .highlight { color: var(--sa-white); } /* fix invisibility on red background */
.why-choose p { color: rgba(255, 255, 255, 0.85); }

.glass-group { position: relative; width: 100%; max-width: 450px; margin: 0 auto; height: 100%; }

/* Visual why image scaling */
.why-img {
    width: 100%;
    height: 100%; /* Match height of column */
    object-fit: cover; /* Keeps image looking sharp and proportioned */
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    display: block;
}

.glass-item {
    position: absolute; background: #FFFFFF; border-radius: 16px; padding: 1.25rem;
    font-weight: 800; color: var(--text-dark); box-shadow: var(--shadow-heavy);
    z-index: 5; font-size: 1rem;
}

.item-1 { top: -20px; left: -20px; border-left: 5px solid var(--sa-red); }
.item-2 { bottom: -15px; right: -15px; border-left: 5px solid var(--sa-green); }
.item-3 { top: 40%; left: -30px; border-left: 5px solid var(--sa-yellow); }

.features-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }

.feature-card {
    display: flex; gap: 1.25rem; align-items: flex-start;
    background: rgba(255, 255, 255, 0.05); padding: 1.5rem; border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1); transition: var(--transition-smooth);
}

.feature-card:hover { background: rgba(255, 255, 255, 0.08); }

.feature-icon {
    width: 50px; height: 50px; background: rgba(255, 255, 255, 0.1); color: var(--sa-white);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0; border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card h4 { color: var(--sa-white); }
.feature-card p { color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; }

/* =========================================
   10. FEEDBACK & DELIVERY (ALT)
   ========================================= */
.feedback-section { padding: 6rem 0; background: var(--bg-alt); }
.review-card { text-align: center; margin-bottom: 3.5rem; }
.review-header { display: flex; justify-content: space-between; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); padding-bottom: 1rem; align-items: center; }

.stars { color: var(--sa-yellow); font-size: 1.1rem; }
.review-card p { font-style: italic; font-size: 1.15rem; margin-bottom: 2rem; font-weight: 600; }

.delivery-box {
    display: flex; gap: 1.5rem; background: rgba(224, 60, 49, 0.04); border: 1px solid rgba(224, 60, 49, 0.15);
    padding: 2.25rem; border-radius: 20px; align-items: center;
}
.delivery-icon { font-size: 2.5rem; color: var(--sa-red); }

/* =========================================
   11. CONTACT & FOOTER
   ========================================= */
.contact { 
    padding: 7rem 0; 
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0F172A 100%); 
    color: var(--text-light);
}
.contact .container { align-items: stretch; } /* forces height matching */

.contact-info h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--text-light); } /* Match other section h2s */
.contact-info p { color: rgba(255, 255, 255, 0.75); }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--sa-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 60, 49, 0.3);
    border-color: var(--sa-red);
}

/* Remove duplicate .contact-item:hover background change */

.contact-methods { display: grid; gap: 1.5rem; margin-top: 3rem; }

.contact-item {
    background: #FFFFFF; border: 1px solid rgba(0,0,0,0.03); padding: 1.5rem;
    border-radius: 16px; display: flex; align-items: center; gap: 1.25rem;
    box-shadow: var(--shadow-soft); transition: var(--transition-smooth);
}
.contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }

.contact-item i { 
    width: 50px; height: 50px; background: var(--sa-red); color: white; 
    border-radius: 12px; display: flex; align-items: center; justify-content: center; 
    font-size: 1.25rem; flex-shrink: 0;
}

.contact-item div { display: flex; flex-direction: column; }
.contact-item span { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item strong { font-size: 1.05rem; color: var(--text-dark); margin-top: 0.15rem; }

.closed-label { color: var(--sa-red); font-size: 0.85rem; font-weight: 700; margin-top: 0.35rem; }

.contact-form-wrapper { display: flex; align-items: stretch; }
.glass-form { 
    background: #FFFFFF; border: 1px solid rgba(0,0,0,0.04); border-radius: 24px; 
    padding: 3rem; box-shadow: var(--shadow-medium); width: 100%;
    display: flex; flex-direction: column; justify-content: space-between;
}

.glass-form h3 {
    color: var(--sa-red);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }

input, select, textarea { 
    width: 100%; background: #F3F4F6; border: 1px solid transparent; border-radius: 12px; 
    padding: 1rem 1.25rem; font-size: 0.95rem; transition: var(--transition-smooth); 
    color: var(--text-dark);
}

input:focus, select:focus, textarea:focus { 
    outline: none; border-color: var(--sa-red); background: #FFFFFF; 
    box-shadow: 0 0 0 4px rgba(224, 60, 49, 0.08); 
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed; bottom: 25px; right: 25px; background: #25D366; color: white;
    width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2.25rem; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 1000;
    transition: var(--transition-smooth);
}
.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px); background: #1EBE55; color: white; border-color: transparent;
}

footer { padding: 3rem 0; border-top: 1px solid var(--border-color); background: #FFFFFF; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }

.footer-link {
    color: var(--sa-red);
    font-weight: 700;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--sa-yellow);
}

.footer-flag-icon {
    display: inline-block;
    height: 16px;
    width: auto;
    vertical-align: middle;
    margin-left: 6px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .grid-2-col { grid-template-columns: 1fr; gap: 3rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .specs-box { grid-template-columns: 1fr; padding: 2.5rem; }
    .why-choose .why-visual { height: auto; }
    .why-img { height: 450px; }
    
    /* Ensure stacked columns are centered on tablet too */
    .why-content, .specs-content, .contact-info { text-align: center; }
    .section-tag { margin: 0 auto 0.75rem auto; display: block; width: max-content; text-align: center; }
}
@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block !important; } /* Show in responsive */
    .hero-text-wrapper h1 { font-size: 2.15rem; word-break: break-word; }
    .hero-stats { flex-wrap: wrap; justify-content: center; gap: 1.25rem; padding-top: 1.5rem; }
    .hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .navbar .nav-cta { display: none; }
    .why-img { height: 350px; }
    
    .waving-flag-card { padding: 0; overflow: hidden; }
    .hero-img { height: 380px; width: 100%; object-fit: cover; } /* Prevents overflow */
    
    .glass-group { 
        width: 100%; 
        height: auto; 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 0.5rem; 
        margin-top: 1.5rem; 
    }
    
    .glass-item { 
        position: static; 
        padding: 0.5rem 1rem; 
        font-size: 0.85rem; 
        margin-bottom: 0; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
        border-radius: 50px; /* Pill shape for mobile */
        width: max-content;
        border-left: none !important;
    }
    
    .item-1 { border: 1.5px solid var(--sa-red); }
    .item-2 { border: 1.5px solid var(--sa-green); }
    .item-3 { border: 1.5px solid var(--sa-yellow); }
    
    /* Centering Content on Mobile */
    .section-header h2, .why-content h2, .specs-content h2, .contact-info h2 { font-size: 1.85rem; margin-bottom: 1rem; text-align: center; }
    .specs-list { width: 100%; margin: 0 auto; text-align: left; }
    .optional-add-on { flex-direction: column; text-align: center; width: 100%; max-width: 400px; margin: 0 auto; }
    .contact-methods { width: 100%; max-width: 400px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 1.25rem; align-items: stretch; }
    .contact-item { width: 100%; }
    .social-links { justify-content: center; gap: 2rem; padding: 0.5rem 0; margin-bottom: 3.5rem; }
    
    /* Mobile Nav Fixes */
    .nav-links a { color: #FFFFFF !important; font-size: 1.35rem; font-weight: 700; width: 100%; }
    .nav-links { gap: 2.5rem; }
    
    .floating-whatsapp { width: 55px; height: 55px; font-size: 1.85rem; bottom: 20px; right: 20px; }
    
    .features-list { grid-template-columns: 1fr !important; } /* Force 1 column on mobile */

    /* Footer & Copyright Mobile Fix */
    footer .footer-content { 
        flex-direction: column !important; 
        text-align: center !important; 
        gap: 1.5rem !important; 
    }
    
    /* Avoid Email / Text Overflow */
    .contact-item strong { 
        word-break: break-all; 
    }
    /* Range Marquee mobile fading edge adjustment */
    .range-marquee::before,
    .range-marquee::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .hero-text-wrapper h1 { font-size: 1.85rem; }
    .hero-stats { flex-direction: column; gap: 1rem; align-items: center; padding-top: 1rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
}




