/* ==========================================================================
   Variables & Reset
   ========================================================================== */
    :root {
    /* Brand Colors — Deep Navy Identity */
    --primary-navy: #173B8F;
    --primary-navy-dark: #071426;
    --primary-petrol: #0369a1;
    --accent-gold: #FFB000;
    --accent-gold-hover: #E09E00;
    --text-dark: #0F172A;
    --text-gray: #475569;
    --bg-light: #F4F7FB;
    --bg-white: #ffffff;
    --whatsapp-color: #25D366;
    --whatsapp-dark: #128C7E;
    
    /* Gradients */
    --gradient-navy: linear-gradient(160deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, #fbbf24 100%);
    --hero-overlay: linear-gradient(160deg, rgba(7,20,38,0.93) 0%, rgba(23,59,143,0.87) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(255, 176, 0, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    
    /* Animations */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   Keyframes (Motion System)
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

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

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

@keyframes dashFlow {
    from { stroke-dashoffset: 200; }
    to { stroke-dashoffset: 0; }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition-slow);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-slow);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

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

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

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

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

.pattern-bg {
    background-color: var(--bg-light);
    background-image: radial-gradient(rgba(30, 58, 138, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4 {
    color: var(--primary-navy);
    line-height: 1.3;
    font-weight: 700;
}

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

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

.bg-light { background-color: var(--bg-light); }
.bg-navy { background-color: var(--primary-navy); }
.bg-blue { background-color: var(--primary-navy-dark); }
.text-white { color: var(--bg-white) !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.font-bold { font-weight: 700; }

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

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

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

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

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

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

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

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

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

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--primary-navy-dark);
    color: var(--bg-white);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info, .top-bar-contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-info span, .top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-contact a:hover {
    color: var(--accent-gold);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(7,20,38,0.1);
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

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

.main-nav a {
    color: var(--primary-navy-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
    font-size: 1.1rem;
}

.main-nav a:hover {
    color: var(--primary-navy);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

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

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

.hamburger {
    display: none;
    background: rgba(7,20,38,0.06);
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(7,20,38,0.1);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: var(--primary-navy-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 6rem 0;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: -1;
}

.animated-path-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.hero-path {
    animation: dashFlow 20s linear infinite;
}

.path-dot {
    offset-path: path("M0,160 C320,300, 420,0, 1440,160");
    animation: moveDot 15s linear infinite;
}

@keyframes moveDot {
    0% { offset-distance: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { offset-distance: 100%; opacity: 0; }
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.trust-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 176, 0, 0.12);
    backdrop-filter: blur(4px);
    color: var(--bg-white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 176, 0, 0.35);
    box-shadow: none;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--bg-white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.7;
    text-shadow: none;
}

.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-trust-bar span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--bg-white);
    text-shadow: none;
    background: rgba(255,255,255,0.07);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.hero-quote-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    width: 340px;
    text-align: center;
    border-top: 4px solid var(--accent-gold);
    z-index: 2;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.glass-card {
    background: var(--bg-white);
    border: 2px solid rgba(255, 176, 0, 0.25);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-xl);
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-quote-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.quote-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quote-phone {
    flex: 1;
    background-color: var(--primary-navy);
    color: var(--bg-white);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.quote-phone:hover {
    background-color: var(--primary-petrol);
    color: var(--bg-white);
}

.quote-wa {
    background-color: var(--whatsapp-color);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.btn-pulse {
    animation: pulse-soft 2s infinite;
}

.quote-wa:hover {
    background-color: var(--whatsapp-dark);
    color: var(--bg-white);
    animation: none;
}

.quote-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}

.quote-trust span {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.quote-trust svg {
    color: var(--accent-gold);
}

/* ==========================================================================
   Features
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-num {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(30, 58, 138, 0.03);
    z-index: -1;
    line-height: 1;
    transition: var(--transition-slow);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover .feature-num {
    color: rgba(30, 58, 138, 0.06);
    transform: scale(1.1) translateX(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(30, 58, 138, 0.05);
    color: var(--primary-petrol);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-navy);
    color: var(--accent-gold);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.services-grid > .service-card:nth-child(even) {
    /* For alternating layout later if needed, now we use flex container with cards */
}

/* To keep it simple, we use a grid of cards for services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(3, 105, 161, 0.2);
}

.service-card-highlight {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 768px) {
    .service-card-highlight {
        grid-template-columns: 1fr;
    }
}

.highlight-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}
.placeholder-img.bg-blue { background-color: var(--primary-navy); }
.placeholder-img.bg-orange { background-color: var(--accent-gold); }

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    margin-bottom: 0.5rem;
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-navy);
    font-weight: 700;
    margin-top: auto;
    transition: var(--transition);
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--accent-gold-hover);
}

.service-card:hover .service-link svg {
    transform: translateX(-5px);
}

.small-services-tags {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.service-tag {
    background-color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
    color: var(--primary-navy);
    font-weight: 500;
}

/* ==========================================================================
   Service Areas
   ========================================================================== */
.map-container {
    position: relative;
    padding: 3rem 0;
}

.map-path-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    height: auto;
    z-index: 0;
    opacity: 0.5;
}

.map-path-bg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 4s forwards;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.area-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    color: var(--primary-navy);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.glow-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent-gold);
    transition: var(--transition);
}

.area-btn:hover {
    background-color: var(--primary-navy);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-navy);
}

.area-btn:hover .glow-dot {
    background-color: var(--whatsapp-color);
    box-shadow: 0 0 10px var(--whatsapp-color);
}

/* Areas Group Titles */
.areas-group-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.areas-group-icon {
    font-size: 1.4rem;
}

.area-local {
    border-color: rgba(3, 105, 161, 0.15);
    background: rgba(3, 105, 161, 0.04);
}

/* Header WhatsApp Button (mobile) */
.header-wa-btn {
    display: none;
    width: 38px;
    height: 38px;
    background-color: var(--whatsapp-color);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header-wa-btn:hover {
    background-color: var(--whatsapp-dark);
    color: var(--bg-white);
}

@media (max-width: 768px) {
    .header-wa-btn.d-mobile-only {
        display: flex;
    }
}

/* ==========================================================================
   Work Steps
   ========================================================================== */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: rgba(255,255,255,0.1);
    z-index: 1;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 10%;
    width: 0%;
    height: 2px;
    background-color: var(--accent-gold);
    z-index: 1;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline.active::after {
    width: 80%;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-navy);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 8px rgba(3, 105, 161, 0.2);
    border: 2px solid var(--accent-gold);
    transition: var(--transition-slow);
}

.timeline-step:hover .step-number {
    background-color: var(--accent-gold);
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(245, 158, 11, 0.2);
}

.timeline-step h3 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.timeline-step p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ==========================================================================
   Pre-Move Tips
   ========================================================================== */
.tips-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.tips-content {
    flex: 1;
}

.tips-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.tips-image {
    flex: 1;
    position: relative;
    height: 400px;
    background-image: url('assets/images/hero-bg.png'); /* Reusing hero for now or could be a solid color */
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tips-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--primary-navy);
    opacity: 0.8;
}

.box-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--accent-gold) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.2;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent-gold);
    position: relative;
    transition: var(--transition);
    z-index: 1;
    overflow: hidden;
}

.review-card::after {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    font-family: serif;
    color: rgba(30, 58, 138, 0.04);
    z-index: -1;
    line-height: 1;
}

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

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

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

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer .info h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.reviewer .info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: right;
    padding: 1.2rem 1.5rem;
    background-color: var(--bg-white);
    border: none;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--bg-white);
}

.faq-answer p {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-gray);
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: var(--primary-navy);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.bg-gradient-navy {
    background: var(--gradient-navy);
}

.cta-floating-truck {
    position: absolute;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    opacity: 0.15;
    animation: driveTruck 20s linear infinite;
    pointer-events: none;
}

@keyframes driveTruck {
    0% { transform: translateY(-50%) translateX(0) scaleX(-1); }
    100% { transform: translateY(-50%) translateX(calc(100vw + 300px)) scaleX(-1); }
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--primary-navy-dark);
    color: var(--bg-light);
    padding: 4rem 0 0;
}

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

.footer-logo {
    width: 200px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    max-width: 400px;
}

.footer h3 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating Buttons
   ========================================================================== */
.floating-wa, .floating-phone {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: var(--transition);
}

.floating-wa {
    right: 30px;
    background-color: var(--whatsapp-color);
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-dark);
}

.floating-phone {
    left: 30px;
    background-color: var(--primary-navy);
}

.d-mobile-only {
    display: none;
}

.bottom-bar-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bb-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bg-white);
    gap: 0.3rem;
    transition: var(--transition);
}

.bb-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.bb-btn.bb-call { color: #60a5fa; }
.bb-btn.bb-wa { color: var(--whatsapp-color); }
.bb-btn.bb-quote { 
    background: var(--accent-gold);
    color: var(--primary-navy-dark);
    font-weight: 800;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.5rem; }
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    /* FIXED: overlay stays dark on all breakpoints for text readability */
    .hero::before {
        background: var(--hero-overlay);
    }
    .hero-trust-bar { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .tips-container { flex-direction: column; }
    .timeline::before { display: none; }
}

@media (max-width: 768px) {
    .top-bar-info { display: none; }
    .top-bar-content { justify-content: center; }
    
    .hamburger { display: flex; }
    .d-none-mobile { display: none; }
    
    .header-content { height: 60px; }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--primary-navy-dark);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }
    
    .main-nav.active { right: 0; }
    
    .main-nav .nav-links {
        flex-direction: column;
        gap: 0;
        text-align: right;
    }

    .main-nav .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .main-nav.active .nav-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .main-nav.active .nav-links li:nth-child(1) { transition-delay: 0.05s; }
    .main-nav.active .nav-links li:nth-child(2) { transition-delay: 0.1s; }
    .main-nav.active .nav-links li:nth-child(3) { transition-delay: 0.15s; }
    .main-nav.active .nav-links li:nth-child(4) { transition-delay: 0.2s; }
    .main-nav.active .nav-links li:nth-child(5) { transition-delay: 0.25s; }
    .main-nav.active .nav-links li:nth-child(6) { transition-delay: 0.3s; }
    
    .main-nav a {
        color: rgba(255,255,255,0.85);
        font-size: 1.1rem;
        padding: 0.9rem 0;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .main-nav a::after { display: none; }

    .main-nav a:hover {
        color: var(--accent-gold);
    }
    
    .mobile-nav-contact {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* Dark overlay behind mobile nav */
    .main-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        z-index: -1;
    }

    .main-nav.active::before {
        opacity: 1;
    }
    
    .hero-title { font-size: 2rem; }
    .hero-quote-card { width: 100%; max-width: 400px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-contact ul li { justify-content: center; }
    .footer-logo { margin: 0 auto 1.5rem; }
    .footer-about p { margin: 0 auto; }
    
    /* Show bottom bar, adjust body padding */
    body { padding-bottom: 72px; }
    .bottom-bar-mobile { display: flex; }
    .floating-wa { bottom: 88px; right: 16px; width: 50px; height: 50px; }
    .floating-phone { display: none; }
}

@media (max-width: 430px) {
    .hero-title { font-size: 1.8rem; }
    .hero-trust-bar span { font-size: 0.9rem; }
    .section-heading h2 { font-size: 2rem; }
    .feature-card { padding: 1.5rem; }
}

@media (max-width: 360px) {
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .quote-contact { flex-direction: column; }
    .quote-wa { width: 100%; }
}

/* ==========================================================================
   Inner Pages (Services & Locations)
   ========================================================================== */

.inner-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(3,105,161,0.85)), url('../assets/images/hero-bg.png') no-repeat center center/cover;
    color: var(--bg-white);
    text-align: center;
    overflow: hidden;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
}

.inner-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.inner-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 992px) {
    .page-layout {
        grid-template-columns: 1fr;
    }
}

.inner-content-text {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .inner-content-text {
        padding: 1.5rem;
    }
    .inner-hero h1 { font-size: 2rem; }
}

.inner-content-text h2 {
    color: var(--primary-navy-dark);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid rgba(245, 158, 11, 0.2);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.inner-content-text h3 {
    color: var(--primary-navy);
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.inner-content-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.inner-content-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.inner-content-text ul li {
    position: relative;
    padding-right: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.inner-content-text ul li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--accent-gold);
    font-weight: bold;
}

.featured-image {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.contact-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(3, 105, 161, 0.1);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-card h3 {
    color: var(--primary-navy-dark);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-card .btn {
    width: 100%;
    margin-bottom: 1rem;
    justify-content: center;
}

.related-links-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
}

.related-links-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
    font-size: 1.2rem;
}

.related-links-card ul {
    list-style: none;
    padding: 0;
}

.related-links-card li {
    margin-bottom: 0.5rem;
}

.related-links-card a {
    color: var(--text-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.related-links-card a:hover {
    color: var(--accent-gold);
    transform: translateX(-5px);
}
