/* ===================================================
   BESPOKE AUTO GARAGE — Main Stylesheet
   Colors: #f29b05 (main), #101d2b (supporting)
=================================================== */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --amber: #f29b05;
    --amber-dark: #c97e00;
    --amber-light: #ffd06b;
    --navy: #101d2b;
    --navy-light: #1c2f46;
    --navy-lighter: #253d56;
    --white: #ffffff;
    --off-white: #f5f0e8;
    --light-amber: #fff3d4;
    --text-muted: #5a6a7a;
    --charcoal: #1e2a35;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    position: fixed;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    overflow: visible;
    background: var(--amber);
    color: var(--navy);
    padding: 10px 20px;
    font-weight: 700;
    z-index: 10000;
}

/* ===================================================
   WHATSAPP FLOATING BUTTON
=================================================== */
.whatsapp-btn {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 1000;
    background-color: #0a1520;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(3, 3, 3, 0.4);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-btn:hover {
    background-color: #16924d;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(29, 184, 84, 0.5);
}
.whatsapp-btn svg {
    flex-shrink: 0;
    color: #ffffff;
}
.whatsapp-btn span {
    color: #ffffff;
}

/* ===================================================
   NAVIGATION
=================================================== */
nav {
    background-color: var(--navy);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}
nav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}
.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--amber);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}
.logo-text span {
    color: var(--amber);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--amber);
}
.nav-cta-btn {
    background-color: var(--amber) !important;
    color: var(--navy) !important;
    padding: 9px 22px;
    border-radius: 5px;
    font-weight: 700 !important;
    transition: background-color 0.3s !important;
}
.nav-cta-btn:hover {
    background-color: var(--amber-dark) !important;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 998;
}
.mobile-overlay.active { display: block; }

/* ===================================================
   HERO SECTION
=================================================== */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    /* background-color: var(--deep-purple); */
}

.hero-picture {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none !important; /* Remove any blur/brightness */
    z-index: 0;
}

.hero-picture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
    max-width: 800px;
    padding: 30px;
    border-radius: 12px;

    backdrop-filter: none !important; /* Remove glass blur */
    -webkit-backdrop-filter: none !important; /* Safari fix */
}

.hero-content h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 14px;
    margin-bottom: 35px;
    line-height: 1.6;
}
.hero-badge {
    display: inline-block;
    background: rgba(242,155,5,0.15);
    border: 1px solid rgba(242,155,5,0.4);
    color: var(--amber);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-content h1 span {
    color: var(--amber);
}
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-stats {
    display: flex;
    gap: 30px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-stat strong {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--amber);
}
.hero-stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cta-btn {
    display: inline-block;
    background-color: var(--amber);
    color: var(--navy);
    padding: 13px 32px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}
.cta-btn:hover {
    background-color: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(242,155,5,0.35);
}
.cta-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 13px 32px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}
.cta-btn-outline:hover {
    border-color: var(--amber);
    color: var(--amber);
}
.hero-visual {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.hero-graphic {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.glow-ring {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 2px solid rgba(242,155,5,0.2);
    animation: pulse-ring 3s ease-in-out infinite;
}
.glow-ring::before {
    content: '';
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
    border-radius: 50%;
    border: 1px solid rgba(242,155,5,0.15);
}
@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; }
}
.car-icon-wrap {
    position: relative;
    z-index: 2;
}

/* ===================================================
   SECTIONS BASE
=================================================== */
section {
    padding: 80px 0;
}
.section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 0.3px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 60px;
}

/* ===================================================
   FEATURED CAROUSEL
=================================================== */
.featured-products {
    background-color: var(--off-white);
    padding: 60px 0;
    overflow: hidden;
}
.featured-products .container {
    margin-bottom: 0;
}
.featured-carousel {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding: 10px 0;
}
.featured-track {
    display: flex;
    gap: 30px;
    animation: scrollFeatured 45s linear infinite;
    animation-play-state: paused;
    width: max-content;
    will-change: transform;
}
.featured-track:hover {
    animation-play-state: paused;
}
.featured-card {
    flex-shrink: 0;
    width: 250px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: all 0.3s;
    position: relative;
}
.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.13);
}
.featured-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    color: var(--navy);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.featured-image {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 375 / 250;
    overflow: hidden;
}
.feat-img-accident { background: linear-gradient(135deg, #1c2f46, #253d56); color: var(--amber); }
.feat-img-body     { background: linear-gradient(135deg, #2a1a05, #4a2f0a); color: var(--amber); }
.feat-img-paint    { background: linear-gradient(135deg, #101d2b, #1c3a5a); color: var(--amber); }
.feat-img-detail   { background: linear-gradient(135deg, #1a2810, #2d4520); color: var(--amber); }
.feat-img-tint     { background: linear-gradient(135deg, #0f1b28, #1a2d40); color: var(--amber); }
.feat-img-custom   { background: linear-gradient(135deg, #28150a, #4a2510); color: var(--amber); }

.featured-content {
    padding: 20px;
}
.featured-content h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}
.featured-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}
.featured-btn {
    display: block;
    width: 100%;
    background-color: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
}
.featured-btn:hover {
    background-color: var(--amber);
    color: var(--navy);
}
@keyframes scrollFeatured {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================================
   CTA SECTION
=================================================== */
.cta-section {
    background-color: var(--navy);
    padding: 50px 15px;
}
.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}
.cta-content h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}
.cta-content p {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-primary {
    background-color: var(--amber);
    color: var(--navy);
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}
.cta-primary:hover {
    background-color: var(--amber-dark);
    transform: translateY(-2px);
}
.cta-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 12px 28px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}
.cta-secondary:hover {
    border-color: var(--amber);
    color: var(--amber);
}

/* ===================================================
   ABOUT SECTION
=================================================== */
.about {
    background-color: var(--white);
    padding: 80px 0;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-text h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.25;
}
.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}
.about-graphic {
    background: var(--navy);
    border-radius: 16px;
    padding: 40px 30px;
    color: var(--white);
}
.about-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.about-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(242,155,5,0.1);
    border: 1px solid rgba(242,155,5,0.2);
    border-radius: 10px;
    padding: 20px 10px;
    color: var(--amber);
    transition: all 0.3s;
}
.about-icon-item:hover {
    background: rgba(242,155,5,0.18);
    border-color: var(--amber);
}
.about-icon-item span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    text-align: center;
}
.about-tagline {
    text-align: center;
    border-top: 1px solid rgba(242,155,5,0.2);
    padding-top: 20px;
    color: var(--amber);
    font-size: 15px;
    font-style: italic;
}

/* ===================================================
   SERVICES SECTION
=================================================== */
.services {
    background-color: var(--off-white);
    padding: 80px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.service-image {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 293 / 195;
}
.si-1 { background: linear-gradient(135deg, var(--navy), var(--navy-lighter)); color: var(--amber); }
.si-2 { background: linear-gradient(135deg, #2a1500, #5a3000); color: var(--amber); }
.si-3 { background: linear-gradient(135deg, #0a1822, #162640); color: var(--amber); }
.si-4 { background: linear-gradient(135deg, #0f2018, #1c3828); color: var(--amber); }
.si-5 { background: linear-gradient(135deg, #1a0f28, #2e1a4a); color: var(--amber); }
.si-6 { background: linear-gradient(135deg, #2a1800, #4a2c00); color: var(--amber); }
.si-7 { background: linear-gradient(135deg, #0a1f2e, #0f2e44); color: var(--amber); }
.si-8 { background: linear-gradient(135deg, #1a2010, #2c3820); color: var(--amber); }

.service-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-content h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.service-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
    flex-grow: 1;
}
.service-btn {
    display: inline-block;
    background-color: var(--amber);
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
    margin-top: auto;
}
.service-btn:hover {
    background-color: var(--amber-dark);
    transform: translateY(-1px);
}

/* ===================================================
   METRICS SECTION
=================================================== */
.metrics {
    background: linear-gradient(135deg, var(--navy), var(--navy-lighter));
    padding: 60px 0;
    color: var(--white);
}
.metrics .section-title { color: var(--white); }
.metrics .section-subtitle { color: rgba(255,255,255,0.75); }
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 10px;
}
.metric-item {
    text-align: center;
    padding: 30px 25px;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    border: 1px solid rgba(242,155,5,0.2);
    transition: all 0.3s;
}
.metric-item:hover {
    transform: translateY(-5px);
    border-color: var(--amber);
    background: rgba(242,155,5,0.08);
}
.metric-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--amber);
    margin-bottom: 10px;
}
.metric-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.metric-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* ===================================================
   COMMITMENTS
=================================================== */
.commitments {
    background-color: var(--white);
    padding: 60px 0;
}
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 10px;
}
.commitment-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--off-white);
    border-radius: 10px;
    border: 1px solid #e8dcc8;
    transition: all 0.3s;
}
.commitment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242,155,5,0.15);
    border-color: var(--amber);
}
.commitment-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.commitment-icon::after {
    content: '✓';
    font-size: 26px;
    color: var(--navy);
    font-weight: 900;
}
.commitment-item h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.commitment-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===================================================
   MISSION & VISION
=================================================== */
.mission-vision {
    background-color: var(--navy);
    padding: 60px 0;
}
.mission-vision .section-title { color: var(--white); }
.mission-vision .section-subtitle { color: rgba(255,255,255,0.75); }
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.mission-card, .vision-card {
    background: rgba(255,255,255,0.06);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(242,155,5,0.2);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s;
}
.mission-card:hover, .vision-card:hover {
    border-color: var(--amber);
    background: rgba(242,155,5,0.06);
}
.mv-icon {
    width: 44px;
    height: 44px;
    background: var(--amber);
    border-radius: 8px;
    flex-shrink: 0;
}
.mv-content h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}
.mv-label {
    display: inline-block;
    background: var(--amber);
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================================
   VALUES
=================================================== */
.values {
    background-color: var(--off-white);
    padding: 60px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.value-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: 10px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.value-item:hover {
    transform: translateY(-4px);
    border-bottom-color: var(--amber);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.value-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 16px;
}
.value-icon svg { stroke: var(--amber); }
.value-item h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.value-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===================================================
   REVIEWS
=================================================== */
.reviews {
    background: linear-gradient(135deg, var(--navy), #0a1520);
    padding: 70px 0;
    color: var(--white);
}
.reviews .section-title { color: var(--white); }
.reviews .section-subtitle { color: rgba(255,255,255,0.75); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 10px;
}
.review-card {
    background: rgba(255,255,255,0.06);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(242,155,5,0.15);
    transition: all 0.3s;
}
.review-card:hover {
    background: rgba(242,155,5,0.07);
    border-color: rgba(242,155,5,0.4);
    transform: translateY(-3px);
}
.stars { margin-bottom: 14px; }
.stars::before {
    content: '★★★★★';
    font-size: 18px;
    color: var(--amber);
    letter-spacing: 2px;
}
.review-text {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviewer-avatar {
    width: 42px;
    height: 42px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reviewer-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}
.reviewer-info p {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

/* ===================================================
   FAQS
=================================================== */
.faqs {
    background: var(--off-white);
    padding: 70px 20px;
}
.faqs .section-title { text-align: center; }
.faqs .section-subtitle { text-align: center; }
.faq-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.faq-question {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--navy);
    color: var(--white);
    transition: background 0.3s;
}
.faq-question span { color: var(--white); }
.faq-question:hover { background: var(--navy-lighter); }
.faq-toggle {
    font-size: 22px;
    font-weight: 700;
    transition: transform 0.3s;
    color: var(--amber) !important;
    flex-shrink: 0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--navy);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer-content {
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    border-top: 1px solid rgba(242,155,5,0.2);
}

/* ===================================================
   CONTACT
=================================================== */
.contact {
    background-color: var(--white);
    padding: 70px 0;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.contact-info {
    background: var(--navy);
    padding: 30px;
    border-radius: 12px;
}
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242,155,5,0.15);
    border: 1px solid rgba(242,155,5,0.3);
    border-radius: 50%;
    color: var(--amber);
}
.contact-details h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}
.contact-details p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
}
.contact-details a {
    color: var(--amber);
    transition: opacity 0.2s;
}
.contact-details a:hover { opacity: 0.8; }
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-height: 380px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

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

    .social-links a {
        width: 40px;
        height: 40px;
        background: var(--amber-dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        color: var(--white); /* ensures icon inherits white color */
    }

    /* .social-links a:nth-child(even) {
        background: var(--secondary);
    } */

    .social-links a svg {
        fill: var(--white); /* force SVG icons to be white */
        width: 20px;
        height: 20px;
    }

    .social-links a img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .social-links a:hover {
        transform: translateY(-5px);
    }

/* ===================================================
   FOOTER
=================================================== */
footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 55px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto 35px;
    padding: 0 20px;
}
.footer-logo {
    margin-bottom: 16px;
}
.footer-section p, .footer-section a {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.8);
}
.footer-section a {
    display: block;
    transition: color 0.3s, padding-left 0.2s;
}
.footer-section a:hover {
    color: var(--amber);
    padding-left: 4px;
}
.footer-section h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.designer span {
    font-size: 12px; /* smaller */
}
.designer {
    display: flex;
    align-items: center; /* vertically centers text and image */
    gap: 5px; /* space between elements */
    flex-wrap: nowrap; /* prevent wrapping to next line */
}

.designer span,
.designer a,
.designer img {
    display: inline-block;
}

.designer a {
    font-size: 12px;
    color: inherit;
    text-decoration: none;
    position: relative;
}

/* Underline effect */
.designer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

/* On hover */
.designer a:hover::after {
    width: 100%;
}

.designer img {
    width: 18px;
    height: 18px;
}



/* ===================================================
   SCROLL TO TOP
=================================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--amber);
    color: var(--navy);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top svg { stroke: var(--navy); }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
    background-color: var(--amber-dark);
    transform: translateY(-4px);
}

/* ===================================================
   RESPONSIVE DESIGN
=================================================== */
@media (max-width: 968px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.2);
        padding: 30px 0;
        z-index: 999;
        gap: 0;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: left;
    }
    .nav-links.active { left: 0; }

    .hero {
        height: 500px;
    }
    .hero-content { 
        max-width: 100%; 
        padding: 20px;
    }
    .hero-content h1 { font-size: 30px; }

    .about-content { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .hero { 
        height: 500px;
    }
    .hero-content { 
        text-align: left; 
        margin-left: 0; 
        margin-right: 0; 
        max-width: 100%; 
        padding: 0 20px; 
    }
    .hero-content h1 { 
        font-size: 30px; 
        margin-bottom: 15px; 
    }
    .hero-content p { 
        font-size: 15px; 
        margin-bottom: 25px; 
        line-height: 1.5; 
    }
    .hero-content .cta-btn { 
        padding: 10px 25px; 
        font-size: 13px; 
    }
    .hero-stats { gap: 20px; }

    section { padding: 50px 0; }

    .section-title { font-size: 28px; text-align: left; }
    .section-subtitle { font-size: 16px; text-align: left; margin-bottom: 40px; }

    /* All text left on mobile */
    .about-text h2 { text-align: left; }
    .about-text p { text-align: left; }
    h2, h3 { text-align: left; }
    section p { text-align: left; }

    .cta-content { text-align: left; }
    .cta-buttons { justify-content: flex-start; flex-direction: column; align-items: flex-start; }
    .cta-primary, .cta-secondary { width: 100%; max-width: 280px; text-align: center; }

    .services-grid { grid-template-columns: 1fr 1fr; }

    .commitment-item, .value-item { text-align: left; }
    .commitment-icon, .value-icon { margin-left: 0; }

    .faqs { padding: 50px 15px; }
    .faqs .section-title { text-align: left; }
    .faqs .section-subtitle { text-align: left; }

    .metrics .section-title { text-align: left; }
    .metrics .section-subtitle { text-align: left; }
    .metric-item { text-align: left; }

    .reviews .section-title { text-align: left; }
    .reviews .section-subtitle { text-align: left; }

    .mission-vision .section-title { text-align: left; }
    .mission-vision .section-subtitle { text-align: left; }

    .footer-content { grid-template-columns: 1fr; gap: 25px; padding: 0 20px; }
    .footer-section { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; }
    .footer-section:last-child { border-bottom: none; }
    .footer-bottom { text-align: left; }

    .scroll-top { right: 15px; bottom: 15px; }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .commitments-grid { grid-template-columns: 1fr; }

    .hero-content h1 { font-size: 22px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .cta-btn, .cta-btn-outline { width: 100%; text-align: center; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }

    .section-title { font-size: 26px; }
    .about-text h2 { font-size: 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .featured-track { animation-play-state: paused !important; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
@media (max-width: 768px) {
    .featured-track { will-change: auto; }
}

@media (max-width: 480px) {
    .hero { height: 450px; }
    .hero-content { 
        text-align: left; 
        align-items: flex-start; 
    }
    .hero-content h1 { 
        font-size: 24px; 
        margin-bottom: 12px; 
        line-height: 1.3; 
    }
    .hero-content p { 
        font-size: 14px; 
        margin-bottom: 20px; 
        line-height: 1.4; 
    }
    .hero-content .cta-btn { 
        padding: 10px 25px; 
        font-size: 13px; 
    }
    .section-title { font-size: 24px; }
    .section-subtitle { font-size: 14px; }
    .logo { font-size: 18px; }
    .logo-img { height: 55px; width: auto; }
    section { padding: 40px 0; }
    .container { padding: 0; }
    .about-text h2 { font-size: 22px; }
    .about-text p { font-size: 14px; }
    .product-card h3, .service-card h3 { font-size: 18px; }
    .product-card p, .service-card p { font-size: 13px; }
    .product-btn { font-size: 13px; padding: 8px 20px; }
    .products-cta-btn { font-size: 14px; padding: 12px 30px; }
    .why-item h3 { font-size: 18px; }
    .why-item p { font-size: 13px; }
    .contact-item h3 { font-size: 16px; }
    .contact-details p { font-size: 14px; }
    .footer-content { 
        grid-template-columns: 1fr; 
        gap: 20px; 
        text-align: left; 
        padding: 0 15px; 
    }
    .footer-section { 
        align-items: flex-start; 
        padding-bottom: 15px; 
        border-bottom: 1px solid rgba(255,255,255,0.1); 
    }
    .footer-section:last-child { 
        border-bottom: none; 
        padding-bottom: 0; 
    }
    .footer-section h3 { 
        font-size: 15px; 
        margin-bottom: 10px; 
    }
    .footer-section a, .footer-section p { 
        text-align: left; 
        font-size: 13px; 
    }
    .footer-section .logo { justify-content: flex-start; }
    .footer-bottom { 
        flex-direction: column; 
        text-align: left; 
        font-size: 12px; 
        gap: 8px; 
        padding: 12px 15px 0; 
    }
    .designer { 
        display: flex; 
        align-items: center; 
        justify-content: flex-start; 
        gap: 6px; 
        font-size: 12px; 
    }
    .brands-grid { 
        grid-template-columns: 1fr; 
        gap: 12px; 
    }
    .brand-card { 
        display: flex; 
        flex-direction: row; 
        align-items: center; 
        text-align: left; 
        padding: 12px 15px; 
        gap: 12px; 
    }
    .brand-card img.brand-logo { 
        width: 60px; 
        height: 50px; 
        margin-bottom: 0; 
    }
    .brand-card h3 { 
        margin: 0 0 3px; 
        font-size: 15px; 
    }
    .brand-card p { 
        margin: 0; 
        font-size: 11px; 
    }
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        padding: 0;
        border-radius: 50%;
        left: 15px;
        bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .whatsapp-btn span { display: none; }
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
    .scroll-top { 
        bottom: 15px; 
        right: 15px; 
        width: 45px; 
        height: 45px; 
        z-index: 998;
    }
    .scroll-top svg { 
        width: 20px; 
        height: 20px; 
    }
}
