/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --primary: #071426;
    --primary-light: #0B1324;
    --secondary: #C89B3C;
    --secondary-light: #D4A64A;
    --accent: #0F766E;
    --bg-light: #F8FAFC;
    --text-dark: #111827;
    --text-muted: #4B5563;
    --text-light: #FFFFFF;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom); /* iPhone safe area */
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.section-padding {
    padding: 5rem 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.bg-light { background-color: #FFFFFF; }
.bg-dark { background-color: var(--primary); }
.bg-gold { background-color: var(--secondary); }
.bg-navy { background-color: var(--primary); }
.bg-teal { background-color: var(--accent); }

.text-center { text-align: center; }
.text-white { color: var(--text-light); }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.max-w-md { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.25rem; font-weight: 800; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }
}

.badge {
    display: inline-block;
    background-color: rgba(200, 155, 60, 0.15);
    color: var(--secondary);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.badge-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

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

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--text-light);
    background: transparent;
}

.btn-outline-light:hover {
    border-color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.1);
}

.wa-green {
    background-color: #25D366;
    color: white;
}
.wa-green:hover {
    background-color: #1ebe57;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.tb-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tb-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tb-whatsapp, .tb-phone {
    font-weight: 700;
    color: var(--secondary);
}

@media (min-width: 768px) {
    .tb-content {
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .tb-title, .tb-avail {
        display: none;
    }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 700;
    color: var(--text-dark);
}

.nav-link:hover {
    color: var(--secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-mobile-head {
    display: none;
}

@media (max-width: 1024px) {
    .nav-list { gap: 1rem; font-size: 0.9rem; }
    .header-actions .call-btn { display: none; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .header-actions .wa-btn { display: none; }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary);
        z-index: 1000;
        transition: right 0.4s ease;
        display: flex;
        flex-direction: column;
        padding: 2rem 1.5rem;
    }
    
    .nav.open { right: 0; }
    
    .nav-mobile-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-close {
        color: white;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-link {
        color: white;
        font-size: 1.125rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-overlay.open {
        opacity: 1;
        visibility: visible;
    }
}

/* ==========================================================================
   Hero Section (Image-Based)
   ========================================================================== */
.hero {
    position: relative;
    color: var(--text-light);
    padding: 6rem 0 5rem;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7,20,38,0.88) 0%, rgba(7,20,38,0.72) 50%, rgba(7,20,38,0.55) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 750px;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

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

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
    max-width: 620px;
}

.hero-sub {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 1.15rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
}

.hero-badge-item:hover {
    background: rgba(200,155,60,0.2);
    border-color: var(--secondary);
}

.hero-badge-icon {
    color: var(--secondary);
    font-size: 1rem;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.hero-phone a {
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.3rem;
    direction: ltr;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 5rem 0 4rem;
    }
    .hero h1 { font-size: 1.9rem; }
    .hero-desc { font-size: 1rem; }
    .hide-mobile { display: none; }
}

/* ==========================================================================
   Trust Metrics
   ========================================================================== */
.trust-metrics {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

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

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

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.metric-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

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

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

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

.main-service {
    background: var(--primary);
    color: white;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .main-service {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.srv-icon {
    width: 50px;
    height: 50px;
    background: rgba(200, 155, 60, 0.1);
    color: var(--secondary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.main-service .srv-icon {
    background: rgba(255,255,255,0.1);
    color: white;
    margin: 0;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.main-service h3 { margin-bottom: 0; }

.service-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.main-service p { color: rgba(255,255,255,0.8); margin: 0; }

.srv-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--accent);
    font-size: 0.875rem;
    margin-top: auto;
}

.main-service .srv-link {
    color: var(--secondary);
    margin: 0;
}

/* ==========================================================================
   Areas & Route Map
   ========================================================================== */
.areas-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .areas-split { grid-template-columns: 1fr 1fr; }
}

.cities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.city-tag {
    background: white;
    border: 1px solid #E5E7EB;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.city-tag.primary {
    background: rgba(15, 118, 110, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 700;
}

.inter-city-box {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border-right: 4px solid var(--secondary);
    box-shadow: var(--shadow-sm);
}

.route-map-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(15, 118, 110, 0.05) 0%, transparent 70%);
}

.map-pin {
    position: absolute;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.pin-1 { top: 20%; left: 30%; }
.pin-2 { top: 50%; right: 20%; }
.pin-3 { bottom: 25%; left: 40%; }

.map-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 5s linear infinite;
}

.animated-path.delay {
    animation-delay: 2.5s;
}

@keyframes drawLine {
    0% { stroke-dashoffset: 1000; opacity: 0; }
    10% { opacity: 1; }
    90% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

.map-truck {
    position: absolute;
    font-size: 2rem;
    z-index: 3;
    top: 35%;
    left: 45%;
    animation: floatTruck 3s ease-in-out infinite;
}

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

/* ==========================================================================
   Why Us
   ========================================================================== */
.why-us {
    position: relative;
    overflow: hidden;
}

.why-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100% 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

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

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.fc-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(200, 155, 60, 0.3);
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.125rem;
    color: white;
}

.feature-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   Timeline Process
   ========================================================================== */
.timeline {
    position: relative;
    margin-top: 3rem;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    width: 2px;
    background: #E5E7EB;
}

@media (min-width: 768px) {
    .timeline {
        display: flex;
        justify-content: space-between;
        margin-top: 4rem;
    }
    
    .timeline-line {
        top: 24px;
        bottom: auto;
        right: 0;
        left: 0;
        height: 2px;
        width: 100%;
    }
}

.timeline-item {
    position: relative;
    padding-right: 4rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .timeline-item {
        padding-right: 0;
        padding-top: 4rem;
        margin-bottom: 0;
        flex: 1;
        text-align: center;
    }
}

.tl-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    z-index: 2;
}

@media (min-width: 768px) {
    .tl-icon {
        right: 50%;
        transform: translateX(50%);
    }
}

.tl-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.tl-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,20,38,0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.g-overlay h4 {
    color: white;
    margin: 0;
}

.gallery-item:hover .g-overlay {
    opacity: 1;
}

/* Brand Image Card */
.brand-image-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.brand-image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.brand-image-card:hover img {
    transform: scale(1.03);
}

/* Why Us Hero (Image + Text) */
.why-us-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .why-us-hero {
        grid-template-columns: 1fr 1fr;
    }
}

.why-us-text h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.why-us-text p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.why-us-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.why-us-points span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
    }
}

@media (min-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(4, 1fr); }
}

.review-card {
    min-width: 280px;
    scroll-snap-align: start;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.rc-stars {
    color: #FBBF24;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.rc-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rc-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.rc-info strong { display: block; font-size: 0.875rem; }
.rc-info span { font-size: 0.75rem; color: var(--text-muted); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: right;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    padding-bottom: 1.25rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta-box {
    background: var(--primary);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    color: white;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-box {
        padding: 4rem;
        grid-template-columns: 2fr 1fr;
    }
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at top left, rgba(200, 155, 60, 0.15), transparent 60%);
    pointer-events: none;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-mini-card {
    background: white;
    color: var(--text-dark);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.cmc-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.cmc-row:last-child {
    border-bottom: none;
}

.cmc-row span { color: var(--text-muted); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--primary-light);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

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

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

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul a {
    color: rgba(255,255,255,0.8);
}

.footer ul a:hover {
    color: var(--secondary);
    padding-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
}

/* ==========================================================================
   Floating & Bottom Bar
   ========================================================================== */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1);
}

.pulse {
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    10% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.bottom-bar {
    display: none;
}

@media (max-width: 767px) {
    .floating-wa {
        bottom: 5rem;
        left: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .floating-wa svg {
        width: 24px;
        height: 24px;
    }

    .bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        z-index: 100;
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .bb-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 0;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--primary);
        border-right: 1px solid #E5E7EB;
    }
    
    .bb-item:last-child { border-right: none; }
    
    .bb-item.wa {
        background: #25D366;
        color: white;
        border: none;
    }
    
    .bb-icon { font-size: 1.25rem; margin-bottom: 0.25rem; }
}

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

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

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

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}
