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

:root {
    --primary: #06182A;
    --primary-dark: #0B2945;
    --primary-light: #133557;
    --accent: #FFD21C;
    --accent-dark: #E6BD1A;
    --accent-light: #FFC300;
    --whatsapp: #25D366;
    --whatsapp-dark: #1DA851;
    --red: #E11D2E;
    --red-dark: #BC1C26;
    --bg-light: #FAFBFC;
    --bg-lighter: #F7F8FA;
    --bg-card: #F0F2F5;
    --border-light: #E5E7EB;
    --border-input: #E8EAF0;
    --text-primary: #06182A;
    --text-secondary: #133557;
    --gray-50: #F9FAFB;
    --gray-200: #E5E7EB;
    --gray-500: #6B7280;
    --text-muted: rgba(6, 24, 42, 0.6);
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --gold-glow: 0 0 12px rgba(255,210,28,0.45);
    --gold-glow-strong: 0 0 6px rgba(255,210,28,0.6);
    --gold-glow-diffuse: 0 0 60px -15px rgba(255,210,28,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 24, 42, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,210,28,0.15);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 24, 42, 1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.logo-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(255,210,28,0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hide CTA and call on mobile, show only toggle + hamburger */
@media (max-width: 767px) {
    .nav-cta {
        display: none !important;
    }
    .nav-call-btn {
        display: none !important;
    }
}

.nav-call-btn {
    display: none;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 1024px) {
    .nav-call-btn {
        display: inline-flex;
    }
}

.nav-call-btn:hover {
    background: rgba(255,210,28,0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.nav-call-btn i {
    font-size: 0.8rem;
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: rgba(255,210,28,0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.theme-toggle.dark-mode i::before {
    content: "\f185";
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: var(--whatsapp);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .nav-cta {
        display: inline-flex;
    }
}

.nav-cta:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background: rgba(255,210,28,0.2);
    border-color: var(--accent);
    color: var(--accent);
}

/* ========== SIDEBAR ========== */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--primary);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sidebar-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-close:hover {
    background: var(--red);
    transform: rotate(90deg);
}

.sidebar-menu {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    border-right: 3px solid transparent;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--accent);
    background: rgba(255,210,28,0.08);
    border-right-color: var(--accent);
}

.sidebar-link i {
    width: 22px;
    text-align: center;
    font-size: 1rem;
}

.sidebar-footer {
    padding: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.sidebar-btn.whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.sidebar-btn.whatsapp:hover {
    background: var(--whatsapp-dark);
}

.sidebar-btn.phone {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.sidebar-btn.phone:hover {
    background: var(--accent);
    color: var(--primary);
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 0.75rem;
}

.sidebar-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.sidebar-info i {
    color: var(--accent);
    font-size: 0.75rem;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background: linear-gradient(135deg, #06182A 0%, #0B2945 40%, #133557 70%, #0B2945 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-bg-pattern.svg') repeat;
    opacity: 0.05;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,24,42,0.85) 0%, rgba(11,41,69,0.7) 50%, rgba(6,24,42,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
        align-items: center;
        padding: 2rem 2rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,210,28,0.15);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,210,28,0.3);
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.gold-text {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg);
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

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

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.hero-feature i {
    color: var(--accent);
}

.map-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: var(--accent);
    font-size: 1rem;
}

.rating-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
}

.rating-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-card);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ========== INSTANT ARRIVAL ========== */
.instant-section {
    padding: 5rem 0;
    background: var(--white);
}

.instant-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instant-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .instant-title {
        font-size: 2.5rem;
    }
}

.instant-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.instant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .instant-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.instant-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.instant-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.instant-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(255,210,28,0.2), rgba(255,210,28,0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-dark);
}

.instant-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.instant-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== COVERAGE ========== */
.coverage-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: var(--primary);
}

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

.coverage-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coverage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,24,42,0.95) 0%, rgba(6,24,42,0.85) 50%, rgba(6,24,42,0.95) 100%);
}

.coverage-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.coverage-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-2xl);
}

.coverage-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.coverage-logo .logo-title {
    font-size: 1rem;
}

.coverage-logo .logo-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

.coverage-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .coverage-title {
        font-size: 2.5rem;
    }
}

.coverage-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.coverage-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,210,28,0.1);
    border: 1px solid rgba(255,210,28,0.2);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.coverage-feature i {
    font-size: 1rem;
}

.coverage-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.coverage-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: var(--transition);
}

.coverage-stat:hover {
    background: rgba(255,210,28,0.1);
    border-color: rgba(255,210,28,0.2);
    color: var(--accent);
}

.coverage-stat i {
    color: var(--accent);
    font-size: 0.85rem;
}

/* ========== TICKER ========== */
.ticker-section {
    background: var(--accent);
    padding: 0.75rem 0;
    overflow: hidden;
}

.ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    animation: ticker 40s linear infinite;
    gap: 2rem;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    white-space: nowrap;
}

.ticker-diamond {
    font-size: 0.6rem;
    opacity: 0.6;
}

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

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== WHY CHOOSE US ========== */
.why-section {
    padding: 5rem 0;
    background: var(--primary);
    overflow: hidden;
}

.why-title {
    text-align: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,210,28,0.2);
    border-radius: 16px;
    padding: 1.2rem 0.75rem;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    word-break: break-word;
}

.why-card:hover {
    border-color: var(--accent);
    background: rgba(255,210,28,0.06);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.why-card h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.why-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    hyphens: auto;
}

.why-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.why-cta h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

.why-cta > p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.why-cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-why-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-why-whatsapp:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-why-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.btn-why-call:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .why-title {
        font-size: 1.4rem;
    }

    .why-card h3 {
        font-size: 0.8rem;
    }

    .why-card p {
        font-size: 0.7rem;
    }

    .why-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .why-cta {
        padding: 2rem 1rem;
    }

    .why-cta h3 {
        font-size: 1rem;
    }

    .why-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ========== BATTERY SELECTOR (HERO) ========== */
.map-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px -20px rgba(6,24,42,0.35);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.map-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
    transition: background 0.3s ease;
}

.map-card-header i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.map-card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
}

.selector-form-hero {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.selector-step-hero label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
}

.selector-select-hero {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 2px solid var(--border-input);
    border-radius: var(--radius);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2306182A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 0.75rem center;
    padding-left: 2rem;
}

.selector-select-hero:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,210,28,0.2);
}

.selector-select-hero:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.selector-btn-hero {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    justify-content: center;
}

.map-info-hero {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

/* ========== BATTERY BRANDS ========== */
.brands-section {
    padding: 4rem 0;
    background: var(--white);
}

.brands-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.brands-section .section-title {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0 auto;
}

.brands-section .section-line {
    width: 60px;
}

.brands-scroll-container {
    position: relative;
    padding: 0 0.5rem;
}

.brands-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.brands-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.brands-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.brand-card-battery {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.brand-card-battery:hover {
    border-color: rgba(255,210,28,0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px -8px rgba(255,210,28,0.15);
}

.brand-battery-img {
    width: 100%;
    height: 140px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.brand-battery-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card-battery h3 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.brand-battery-origin {
    color: var(--gray-500);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.brand-battery-btns {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-check {
    display: block;
    background: rgba(255,210,28,0.15);
    color: var(--accent);
    padding: 0.5rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(255,210,28,0.3);
}

.btn-call {
    display: block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 700;
}

/* Brands Navigation Arrows */
.brands-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,210,28,0.3);
    background: rgba(255,210,28,0.15);
    color: var(--accent);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.brands-arrow:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.brands-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.brands-arrow-right {
    right: -22px;
}

.brands-arrow-left {
    left: -22px;
}

/* Battery Types */
.battery-types-section {
    margin-top: 3rem;
}

.types-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.type-card {
    background: var(--primary-dark);
    border: 1px solid rgba(255,210,28,0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.type-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,210,28,0.3);
}

.type-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    background: rgba(255,210,28,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

.type-card h4 {
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.type-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.type-badge {
    display: inline-block;
    background: rgba(255,210,28,0.1);
    color: var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
}

/* Shared Diagram Grid */
.diagram-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: 750px;
    margin: 0 auto;
    direction: ltr;
    padding: 0 4rem;
}

.diagram-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.diagram-col-center {
    flex: 0 0 auto;
    align-items: center;
}

.diagram-card {
    background: var(--white);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    direction: rtl;
}

.diagram-card p {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.diagram-card-top,
.diagram-card-bottom {
    min-width: 160px;
}

.diagram-num {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 28px;
    text-align: center;
    margin-bottom: 0.3rem;
}

.diagram-num-red {
    background: #BC1C26;
    color: var(--white);
}

/* Battery Shared */
.diagram-battery {
    width: 180px;
    height: 150px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.warning-battery {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.battery-terminal {
    position: absolute;
    top: -12px;
    width: 30px;
    height: 16px;
    border-radius: 4px 4px 0 0;
}

.warning-battery .battery-terminal {
    background: #555;
}

.bt-left { left: 35px; }
.bt-right { right: 35px; }

.battery-label-area {
    width: 80px;
    height: 60px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.warning-label-area {
    background: rgba(188,28,38,0.15);
    border: 2px solid #BC1C26;
    color: #BC1C26;
}

.battery-sub-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

/* ========== BATTERY WARNING SIGNS ========== */
.warning-section {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.warning-label {
    color: #BC1C26;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.warning-title {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.warning-desc {
    color: var(--gray-500);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.warning-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #BC1C26;
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 2.5rem;
    transition: var(--transition);
}

.warning-cta:hover {
    background: #A01620;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(188,28,38,0.4);
}

/* ========== CARE & WARNING RESPONSIVE ========== */
@media (max-width: 767px) {
    .warning-title {
        font-size: 1.4rem;
    }

    .diagram-grid {
        gap: 0.4rem;
        padding: 0 1.5rem;
    }

    .warning-section {
        padding: 3rem 1.5rem;
    }

    .diagram-card {
        min-width: 0;
        padding: 0.4rem 0.3rem;
    }

    .diagram-card p {
        font-size: 0.7rem;
    }

    .diagram-card-top,
    .diagram-card-bottom {
        min-width: 100px;
    }

    .diagram-num {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
        line-height: 20px;
    }

    .diagram-battery {
        width: 120px;
        height: 100px;
    }

    .battery-label-area {
        width: 60px;
        height: 45px;
        font-size: 1.3rem;
    }

    .battery-sub-text {
        font-size: 0.5rem;
    }

    .battery-terminal {
        width: 22px;
        height: 12px;
        top: -9px;
    }
}

/* ========== REVIEWS ========== */
.reviews-section {
    padding: 6rem 0;
    background: var(--bg-lighter);
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,210,28,0.1);
    color: var(--accent-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    border: 1px solid rgba(255,210,28,0.3);
}

.reviews-badge i {
    color: var(--accent);
}

.reviews-slider {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 100%;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .review-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .review-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}

.review-meta h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    display: flex;
    gap: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.review-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.review-nav-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255,210,28,0.1);
}

.review-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    box-shadow: var(--gold-glow-strong);
    width: 28px;
    border-radius: 28px;
}

/* ========== ABOUT ========== */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-feature i {
    color: var(--accent);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    max-width: 450px;
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px -20px rgba(6,24,42,0.35);
}

/* ========== BRAND LOGOS ========== */
.brand-logos-section {
    padding: 4rem 0;
    background: var(--primary);
    text-align: center;
}

.brand-logos-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.brand-logos-title .gold-text {
    color: var(--accent);
}

.brand-logos-divider {
    display: flex;
    justify-content: center;
    margin: 0.75rem 0;
}

.brand-logos-divider span {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.brand-logos-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.brand-logo-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    height: 100px;
}

.brand-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 210, 28, 0.15);
}

.brand-logo-card img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .brand-logos-title { font-size: 1.5rem; }
    .brand-logos-desc { font-size: 0.9rem; }
    .brand-logos-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .brand-logo-card { padding: 1.25rem; height: 80px; }
    .brand-logo-card img { max-height: 50px; }
}

/* ========== FAQ ========== */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
    font-family: inherit;
    gap: 1rem;
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.25rem 1rem;
    color: var(--gray-500);
    font-size: 0.85rem;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .faq-section { padding: 3rem 0; }
    .faq-title { font-size: 1.4rem; }
    .faq-question { font-size: 0.85rem; padding: 0.85rem 1rem; }
    .faq-answer p { font-size: 0.8rem; padding: 0 1rem 0.85rem; }
}

/* Dark mode FAQ */
body.dark-mode .faq-section {
    background: #0D1525;
}

body.dark-mode .faq-title {
    color: #fff;
}

body.dark-mode .faq-item {
    background: #111B2E;
    border-color: #1C2A45;
}

body.dark-mode .faq-question {
    color: #E8ECF1;
}

body.dark-mode .faq-answer p {
    color: rgba(184,196,214,0.7);
}

body.dark-mode .faq-item.active {
    border-color: var(--accent);
}

/* ========== BRANCHES ========== */
.branches-section {
    padding: 6rem 0;
    background: var(--bg-lighter);
}

.branches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .branches-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.branch-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.branch-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(255,210,28,0.15), rgba(255,210,28,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-dark);
}

.branch-card:hover .branch-icon {
    background: var(--accent);
    color: var(--primary);
}

.branch-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.branch-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ========== CONTACT ========== */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.contact-icon.whatsapp {
    background: rgba(37,211,102,0.1);
    color: var(--whatsapp);
}

.contact-icon.phone {
    background: rgba(255,210,28,0.1);
    color: var(--accent-dark);
}

.contact-icon.email {
    background: rgba(6,24,42,0.1);
    color: var(--primary);
}

.contact-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.footer-orb {
    position: absolute;
    border-radius: 50%;
    animation: sideOrb 6s ease-in-out infinite;
}

.footer-orb-1 {
    width: 200px;
    height: 200px;
    background: rgba(255,210,28,0.1);
    top: -50px;
    right: 10%;
    animation-delay: 0s;
}

.footer-orb-2 {
    width: 150px;
    height: 150px;
    background: rgba(255,210,28,0.08);
    bottom: -30px;
    left: 15%;
    animation-delay: 2s;
}

.footer-orb-3 {
    width: 100px;
    height: 100px;
    background: rgba(255,210,28,0.06);
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes sideOrb {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-20px); }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo-wrapper .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
}

.footer-logo-wrapper .logo-title {
    font-size: 1rem;
}

.footer-logo-wrapper .logo-sub {
    font-size: 0.65rem;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link.whatsapp {
    color: var(--whatsapp);
}

.social-link.phone {
    color: var(--accent);
}

.social-link.email {
    color: var(--white);
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(-4px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent);
    font-size: 0.9rem;
    width: 20px;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.footer-badge i {
    color: var(--accent);
}

/* ========== WHATSAPP FLOATING ========== */
.whatsapp-float {
    position: fixed;
    bottom: 94px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 998;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.call-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 998;
    transition: var(--transition);
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.maps-float {
    position: fixed;
    bottom: 164px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #4285F4;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(66,133,244,0.4);
    z-index: 998;
    transition: var(--transition);
}

.maps-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(66,133,244,0.5);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ========== DARK MODE ========== */
body.dark-mode {
    --bg-light: #0A0F1A;
    --bg-lighter: #0D1525;
    --bg-card: #111B2E;
    --border-light: #1C2A45;
    --border-input: #1C2A45;
    --text-primary: #E8ECF1;
    --text-secondary: #B8C4D6;
    --text-muted: rgba(200, 210, 225, 0.6);
}

/* Navbar */
body.dark-mode .navbar {
    background: rgba(10, 15, 26, 0.98);
}

body.dark-mode .navbar.scrolled {
    background: rgba(10, 15, 26, 1);
}

/* Sidebar */
body.dark-mode .sidebar {
    background: #080C16;
}

body.dark-mode .sidebar-link {
    color: rgba(255,255,255,0.7);
}

body.dark-mode .sidebar-link:hover,
body.dark-mode .sidebar-link.active {
    background: rgba(255,210,28,0.08);
}

/* Hero */
body.dark-mode .hero {
    background: linear-gradient(135deg, #050810 0%, #0A1020 40%, #0E1830 70%, #0A1020 100%);
}

body.dark-mode .hero-badge {
    background: rgba(255,210,28,0.12);
    border-color: rgba(255,210,28,0.25);
}

body.dark-mode .hero-title {
    color: #FFFFFF;
}

body.dark-mode .hero-desc {
    color: rgba(255,255,255,0.7);
}

body.dark-mode .hero-feature {
    color: rgba(255,255,255,0.8);
}

body.dark-mode .btn-secondary {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

body.dark-mode .btn-secondary:hover {
    background: rgba(255,255,255,0.18);
}

/* Map Card / Selector */
body.dark-mode .map-card {
    background: #111B2E;
}

body.dark-mode .map-card-header {
    background: linear-gradient(135deg, #080C16, #0E1830);
}

body.dark-mode .map-card-header h3 {
    color: #FFFFFF;
}

body.dark-mode .selector-select-hero {
    background-color: #0D1525;
    border-color: #1C2A45;
    color: #E8ECF1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23E8ECF1' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

body.dark-mode .selector-select-hero option,
body.dark-mode .selector-select-hero option:checked,
body.dark-mode .selector-select-hero option:selected {
    background-color: #0D1525 !important;
    color: #E8ECF1 !important;
    padding: 8px;
}

/* Fix for mobile select dropdowns */
@supports (-webkit-appearance: none) {
    body.dark-mode .selector-select-hero {
        color-scheme: dark;
    }
}

body.dark-mode .selector-step-hero label {
    color: #B8C4D6;
}

/* Ticker */
body.dark-mode .ticker-section {
    background: var(--accent-dark);
}

/* Section Titles */
body.dark-mode .section-title {
    color: #FFFFFF;
}

body.dark-mode .section-desc {
    color: rgba(184,196,214,0.7);
}

/* Battery Brands */
body.dark-mode .brand-card-battery {
    background: #111B2E;
    border-color: #1C2A45;
}

body.dark-mode .brand-card-battery:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

body.dark-mode .brand-card-battery h3 {
    color: #E8ECF1;
}

body.dark-mode .brand-battery-origin {
    color: rgba(184,196,214,0.6);
}

/* Reviews */
body.dark-mode .reviews-section {
    background: #0D1525;
}

body.dark-mode .review-card {
    background: #111B2E;
    border-color: #1C2A45;
}

body.dark-mode .review-meta h4 {
    color: #E8ECF1;
}

body.dark-mode .review-date {
    color: rgba(184,196,214,0.5);
}

body.dark-mode .review-text {
    color: rgba(184,196,214,0.85);
}

body.dark-mode .review-avatar {
    background: linear-gradient(135deg, #1C2A45, #0E1830);
    color: var(--accent);
}

body.dark-mode .reviews-badge {
    background: rgba(255,210,28,0.1);
    border-color: rgba(255,210,28,0.2);
}

body.dark-mode .review-nav-btn {
    background: #111B2E;
    border-color: #1C2A45;
    color: #E8ECF1;
}

body.dark-mode .review-nav-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255,210,28,0.1);
}

body.dark-mode .dot {
    background: #1C2A45;
}

/* Branches */
body.dark-mode .branches-section {
    background: #0D1525;
}

body.dark-mode .branch-card {
    background: #111B2E;
    border-color: #1C2A45;
}

body.dark-mode .branch-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

body.dark-mode .branch-card h3 {
    color: #E8ECF1;
}

body.dark-mode .branch-card p {
    color: rgba(184,196,214,0.6);
}

/* Contact */
body.dark-mode .contact-section {
    background: #0A0F1A;
}

body.dark-mode .contact-card {
    background: #111B2E;
    border-color: #1C2A45;
}

body.dark-mode .contact-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

body.dark-mode .contact-card h3 {
    color: #E8ECF1;
}

body.dark-mode .contact-card p {
    color: rgba(184,196,214,0.7);
}

/* Dark mode - Warning Section */
body.dark-mode .warning-section {
    background: #0A0F1A;
}

body.dark-mode .warning-title {
    color: #E8ECF1;
}

body.dark-mode .warning-desc {
    color: rgba(184,196,214,0.6);
}

body.dark-mode .warning-battery {
    background: linear-gradient(135deg, #0a0a15, #111827);
}

/* Dark mode - Care & Warning shared */
body.dark-mode .diagram-card {
    background: #111B2E;
    border: 1px solid #1C2A45;
}

body.dark-mode .diagram-card p {
    color: #E8ECF1;
}

/* Footer */
body.dark-mode .footer {
    background: #060A14;
}

/* Scroll to Top */
body.dark-mode .scroll-top {
    background: #111B2E;
    border-color: var(--accent);
}

/* WhatsApp Float */
body.dark-mode .whatsapp-float {
    background: var(--whatsapp);
}

body.dark-mode .call-float {
    background: #25D366;
}

body.dark-mode .maps-float {
    background: #4285F4;
}
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

/* Button Outline Dark */
body.dark-mode .btn-outline {
    color: #E8ECF1;
    border-color: #1C2A45;
}

body.dark-mode .btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* Selector Button Disabled */
body.dark-mode .selector-btn-hero:disabled {
    opacity: 0.4;
}

/* Branch Button Outline */
body.dark-mode .branch-card .btn-outline {
    color: #E8ECF1;
    border-color: #1C2A45;
}

body.dark-mode .branch-card .btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* Contact Button Outline */
body.dark-mode .contact-card .btn-outline {
    color: #E8ECF1;
    border-color: #1C2A45;
}

body.dark-mode .contact-card .btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* Focus States */
body.dark-mode .selector-select-hero:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,210,28,0.15);
}

/* Footer Links */
body.dark-mode .footer-links a {
    color: rgba(255,255,255,0.6);
}

body.dark-mode .footer-links a:hover {
    color: var(--accent);
}

body.dark-mode .footer-contact li {
    color: rgba(255,255,255,0.6);
}

body.dark-mode .footer-badge {
    background: rgba(255,255,255,0.08);
}

body.dark-mode .footer-bottom {
    border-top-color: rgba(255,255,255,0.08);
}

body.dark-mode .footer-bottom p {
    color: rgba(255,255,255,0.4);
}

/* Social Links */
body.dark-mode .social-link {
    border-color: rgba(255,255,255,0.15);
}

body.dark-mode .social-link:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ========== HERO DECORATIVE ========== */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    z-index: 1;
    pointer-events: none;
}

/* ========== DARK MODE - BATTERY BRANDS ========== */
body.dark-mode .brands-section {
    background: #060A14;
}

body.dark-mode .section-title {
    color: var(--white);
}

body.dark-mode .section-desc {
    color: rgba(255,255,255,0.7);
}

body.dark-mode .brand-card-battery {
    background: #111B2E;
    border-color: #1C2A45;
}

body.dark-mode .brand-card-battery:hover {
    border-color: rgba(255,210,28,0.35);
    box-shadow: 0 8px 25px -8px rgba(0,0,0,0.4);
}

body.dark-mode .brand-battery-img {
    background: #0D1525;
}

body.dark-mode .brand-card-battery h3 {
    color: #E8ECF1;
}

body.dark-mode .brand-battery-origin {
    color: rgba(184,196,214,0.5);
}

body.dark-mode .type-card {
    background: #111B2E;
    border-color: #1C2A45;
}

body.dark-mode .type-card:hover {
    border-color: rgba(255,210,28,0.3);
}

/* ========== DARK MODE - INSTANT & COVERAGE ========== */
body.dark-mode .instant-section {
    background: #0A0F1A;
}

body.dark-mode .instant-title {
    color: #FFFFFF;
}

body.dark-mode .instant-desc {
    color: rgba(184,196,214,0.7);
}

body.dark-mode .instant-card {
    background: #111B2E;
    border-color: #1C2A45;
}

body.dark-mode .instant-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

body.dark-mode .instant-card h3 {
    color: #E8ECF1;
}

body.dark-mode .instant-card p {
    color: rgba(184,196,214,0.7);
}

body.dark-mode .coverage-section {
    background: #060A14;
}

/* ========== DARK MODE FORM FIXES ========== */
body.dark-mode {
    color-scheme: dark;
}

body.dark-mode .selector-btn-hero {
    background: var(--accent);
    color: #06182A;
}

body.dark-mode .selector-btn-hero:hover:not(:disabled) {
    background: var(--accent-dark);
    box-shadow: 0 0 20px rgba(255,210,28,0.3);
}

body.dark-mode .btn-primary {
    background: var(--accent);
    color: #06182A;
}

body.dark-mode .btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 0 20px rgba(255,210,28,0.3);
}

body.dark-mode .sidebar-btn.whatsapp {
    background: var(--whatsapp);
    color: white;
}

body.dark-mode .sidebar-btn.phone {
    color: var(--accent);
    border-color: var(--accent);
}

body.dark-mode .sidebar-btn.phone:hover {
    background: var(--accent);
    color: #06182A;
}

body.dark-mode .nav-cta {
    background: var(--whatsapp);
    color: white;
}

body.dark-mode .map-card-header {
    background: linear-gradient(135deg, #080C16, #0E1830);
}

body.dark-mode .map-info-hero {
    border-top-color: #1C2A45;
}

/* Dark mode - Page components */
body.dark-mode .about-page-section {
    color: var(--text-primary);
}

body.dark-mode .about-stat-card {
    background: var(--bg-card);
    border-color: var(--border-light);
}

body.dark-mode .about-stat-card h3 {
    color: var(--accent);
}

body.dark-mode .about-value-card {
    background: var(--bg-card);
    border-color: var(--border-light);
}

body.dark-mode .about-value-card h3 {
    color: var(--text-primary);
}

body.dark-mode .contact-info-card {
    background: var(--bg-card);
    border-color: var(--border-light);
}

body.dark-mode .contact-info-card h3 {
    color: var(--text-primary);
}

body.dark-mode .page-header-title {
    color: var(--text-primary);
}

body.dark-mode .page-header-desc {
    color: var(--text-secondary);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,210,28,0.2); }
    50% { box-shadow: 0 0 40px rgba(255,210,28,0.4); }
}

.map-card {
    animation: glow 3s ease-in-out infinite;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========== BRANDS RESPONSIVE ========== */
@media (min-width: 1024px) {
    .brands-scroll {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .brands-scroll {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .brands-arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .brands-section {
        padding: 3rem 0;
    }

    .brands-section .section-title {
        font-size: 1.4rem;
    }

    .brands-scroll-container {
        padding: 0 1.25rem;
    }

    .brands-scroll {
        display: flex;
        gap: 1rem;
        width: max-content;
    }

    .brand-card-battery {
        flex: 0 0 170px;
        padding: 0.75rem;
    }

    .brand-battery-img {
        height: 110px;
        padding: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .brand-card-battery h3 {
        font-size: 0.85rem;
    }

    .brand-battery-origin {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .btn-check,
    .btn-call {
        font-size: 0.7rem;
        padding: 0.4rem;
    }

    .brands-arrow {
        display: flex;
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .brands-arrow-right {
        right: -4px;
    }

    .brands-arrow-left {
        left: -4px;
    }
}

/* ========== FULL SITE RESPONSIVE ========== */
@media (max-width: 767px) {
    /* Sections vertical padding */
    .hero { padding: 4rem 0 2rem; }
    .instant-section,
    .why-section,
    .brands-section,
    .warning-section,
    .reviews-section,
    .about-section,
    .branches-section,
    .contact-section { padding: 3rem 0; }

    .section-header { margin-bottom: 2rem; }
    .section-title { font-size: 1.4rem; }
    .section-desc { font-size: 0.9rem; }

    /* Battery types - fix 3 columns */
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .types-title { font-size: 1.2rem; margin-bottom: 1.5rem; }
    .type-card { padding: 1rem 0.75rem; }
    .type-card h4 { font-size: 0.9rem; }
    .type-card p { font-size: 0.7rem; }
    .type-badge { font-size: 0.6rem; padding: 0.15rem 0.4rem; }

    /* Reviews */
    .review-card { padding: 1.25rem; }
    .reviews-track { gap: 1rem; }
    .review-nav-btn { width: 36px; height: 36px; }

    /* Branches */
    .branch-card { padding: 1.25rem; }
    .branch-icon { width: 45px; height: 45px; }

    /* Contact */
    .contact-card { padding: 1.25rem; }
    .contact-icon { width: 55px; height: 55px; }
    .contact-card h3 { font-size: 1rem; }

    /* Footer */
    .footer { padding: 3rem 0 0; }
    .footer-grid { gap: 1.5rem; }
    .footer-about p { font-size: 0.85rem; }

    /* Hero */
    .hero-desc { font-size: 0.9rem; }
    .hero-buttons { gap: 0.75rem; }

    /* Instant */
    .instant-card { padding: 1rem; }
    .instant-card-icon { width: 40px; height: 40px; font-size: 1.1rem; }

    /* Ticker */
    .ticker-item { font-size: 0.75rem; }

    /* Page Header */
    .page-header { padding: 8rem 0 3rem; text-align: center; }
    .page-header-title { font-size: 2rem; }
    .page-header-desc { font-size: 1rem; margin-top: 0.5rem; }
    .page-breadcrumb { font-size: 0.85rem; margin-top: 1rem; }
    .page-breadcrumb a { color: var(--accent); }
    .page-breadcrumb span { margin: 0 0.5rem; color: var(--text-muted); }

    /* About Page */
    .about-page-section { padding: 0 0 4rem; }
    .about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
    .about-page-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
    .about-page-text p { margin-bottom: 1rem; line-height: 1.8; color: var(--text-secondary); }
    .about-page-image { border-radius: var(--radius-xl); overflow: hidden; }
    .about-page-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); }
    .about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
    .about-stat-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); }
    .about-stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .about-stat-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.2rem; color: var(--primary); }
    .about-stat-card h3 { font-size: 2rem; font-weight: 800; color: var(--primary); }
    .about-stat-card p { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.25rem; }
    .about-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 4rem; }
    .about-mv-card { background: var(--primary); color: #fff; border-radius: var(--radius-xl); padding: 2.5rem; text-align: center; }
    .about-mv-icon { width: 60px; height: 60px; background: rgba(255,210,28,0.15); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.5rem; color: var(--accent); }
    .about-mv-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
    .about-mv-card p { color: rgba(255,255,255,0.8); line-height: 1.7; }
    .about-values { text-align: center; }
    .about-values > h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 2rem; }
    .about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .about-value-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 2rem 1.5rem; transition: var(--transition); }
    .about-value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .about-value-card i { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; }
    .about-value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
    .about-value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

    /* Contact Info Grid */
    .contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .contact-info-card { background: var(--bg-lighter); border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 2rem; text-align: center; }
    .contact-info-card i { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; }
    .contact-info-card h3 { font-size: 1.1rem; }
    .contact-info-card p { font-size: 0.85rem; }

    /* Page Header */
    .page-header { padding: 7rem 0 2rem; }
    .page-header-title { font-size: 1.6rem; }

    /* About Page */
    .about-page-grid { grid-template-columns: 1fr; }
    .about-page-image { order: -1; max-height: 250px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .about-stat-card { padding: 1.25rem 1rem; }
    .about-stat-card h3 { font-size: 1.5rem; }
    .about-mv-grid { grid-template-columns: 1fr; }
    .about-mv-card { padding: 1.5rem; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }

    /* Contact Info */
    .contact-info-grid { grid-template-columns: 1fr; }
}