/* =========================================
   Design Tokens
   ========================================= */
:root {
    --bg-silver: #E7ECEF;
    --soft-gray: #B8C2CC;
    --dark-charcoal: #17131F;
    --deep-purple: #5200B8;
    --electric-purple: #8A00FF;
    --white: #FFFFFF;
    --muted-text: #6B7280;
    --success-green: #18A058;

    --purple-grad: linear-gradient(135deg, #5200B8, #8A00FF);
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.08);

    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 40px;

    --fast: 0.3s ease;
    --smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
    font-family: 'Tajawal', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-silver);
    color: var(--dark-charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    /* Subtle grain texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

a { text-decoration: none; color: inherit; transition: var(--fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

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

h1, h2, h3 { line-height: 1.25; font-weight: 700; }

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--fast);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-large { padding: 1.1rem 2.8rem; font-size: 1.1rem; }

.btn-primary {
    background: var(--purple-grad);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(82, 0, 184, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(82, 0, 184, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--dark-charcoal);
    border-color: var(--dark-charcoal);
}
.btn-outline:hover { background: var(--dark-charcoal); color: var(--white); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark-charcoal); border-color: var(--white); }

.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

.full-width { width: 100%; }

/* =========================================
   Header
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--fast);
}

.site-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(231, 236, 239, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.brand-logo img { flex-shrink: 0; }

.brand-text { display: flex; flex-direction: column; }
.brand-name { font-size: 1.2rem; font-weight: 800; color: var(--dark-charcoal); line-height: 1.2; }
.brand-slogan { font-size: 0.7rem; color: var(--muted-text); font-weight: 500; }

.desktop-nav ul { display: flex; gap: 1.8rem; }
.desktop-nav a { font-weight: 500; color: var(--dark-charcoal); position: relative; padding: 0.25rem 0; }
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--purple-grad);
    transition: width var(--fast);
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; }
.desktop-nav a:hover { color: var(--deep-purple); }

.header-ctas { display: flex; gap: 0.75rem; }

/* Mobile Header */
.mobile-header-actions { display: none; align-items: center; gap: 0.5rem; }

.mobile-quick-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--fast);
}
.mobile-quick-btn.call-btn { background: var(--purple-grad); color: var(--white); }
.mobile-quick-btn.wa-btn { background: #25D366; color: var(--white); }

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 6px;
}
.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--dark-charcoal);
    transition: var(--fast);
    border-radius: 2px;
}

/* =========================================
   Mobile Menu Overlay
   ========================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-silver);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 1.2rem;
    left: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: var(--dark-charcoal);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav ul { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.mobile-nav a { font-size: 1.4rem; font-weight: 700; display: block; }
.mobile-nav a:hover { color: var(--deep-purple); }

.mobile-menu-ctas { display: flex; flex-direction: column; gap: 1rem; margin-top: auto; }

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    padding: 7rem 2rem 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.hero-card {
    position: relative;
    width: 100%;
    min-height: 82vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 6%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    /* entry animation */
    opacity: 0;
    transform: scale(0.96);
    animation: heroEnter 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
}

@keyframes heroEnter {
    to { opacity: 1; transform: scale(1); }
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-color: #3a3344;
    background-image: url('../images/hero-riyadh-moving.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

/* Slow zoom-in on load */
.hero-card.loaded .hero-bg-image { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    /* RTL: gradient from right to left since content is on the right */
    background: linear-gradient(to left, rgba(23, 19, 31, 0.92) 0%, rgba(23, 19, 31, 0.6) 50%, rgba(23, 19, 31, 0.25) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    color: var(--white);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    /* stagger animation */
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease 0.5s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease 0.7s forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease 0.9s forwards;
}

.trust-mini-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.1s forwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--success-green);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Slider Dots — LEFT side for RTL (visually on the left of the card) */
.hero-slider-dots {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-slider-dots .dot {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    position: relative;
    transition: var(--fast);
    padding-left: 18px;
}

.hero-slider-dots .dot.active { color: var(--white); }

.hero-slider-dots .dot::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--smooth);
}
.hero-slider-dots .dot.active::before { width: 10px; }

/* Visual Number — bottom left for RTL */
.hero-visual-number {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    color: var(--white);
}

.hero-visual-number .number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    opacity: 0.15;
    background: var(--purple-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-visual-number .label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    opacity: 0.6;
}

/* Scroll Down Button — positioned BELOW the hero card */
.scroll-down-btn {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: var(--purple-grad);
    border-radius: 50%;
    border: 6px solid var(--bg-silver);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(82, 0, 184, 0.25);
    transition: var(--smooth);
}

.scroll-down-btn:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(82, 0, 184, 0.35);
}

/* =========================================
   Trust Section
   ========================================= */
.trust-section {
    padding: 5rem 0 4rem;
    background-color: var(--bg-silver);
}

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

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--dark-charcoal);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: var(--smooth);
    box-shadow: var(--glass-shadow);
    /* Scroll reveal */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.trust-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-card:nth-child(2) { transition-delay: 0.1s; }
.trust-card:nth-child(3) { transition-delay: 0.2s; }
.trust-card:nth-child(4) { transition-delay: 0.3s; }

.trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(82, 0, 184, 0.3);
    box-shadow: 0 15px 40px rgba(82, 0, 184, 0.1);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(138, 0, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-purple);
    margin-bottom: 1.25rem;
}

.trust-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.trust-card p { color: var(--muted-text); font-size: 0.9rem; line-height: 1.7; }

/* =========================================
   Floating Mobile CTA
   ========================================= */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 998;
    display: none;
    flex-direction: column;
    align-items: center;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.cta-microcopy {
    font-size: 0.75rem;
    color: var(--success-green);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.floating-buttons { display: flex; width: 100%; gap: 0.75rem; }
.floating-buttons .btn { flex: 1; padding: 0.7rem 0; font-size: 0.85rem; }

/* =========================================
   Animations
   ========================================= */
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.pulse {
    animation: pulseAnim 2.5s ease-in-out infinite;
}

@keyframes pulseAnim {
    0%, 100% { box-shadow: 0 0 0 0 rgba(82, 0, 184, 0.35); }
    50% { box-shadow: 0 0 0 12px rgba(82, 0, 184, 0); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   Sections General
   ========================================= */
.section-padding { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 3vw, 2.5rem); color: var(--dark-charcoal); margin-bottom: 1rem; }
.section-subtitle { max-width: 700px; margin: 0 auto; color: var(--muted-text); font-size: 1.1rem; line-height: 1.6; }

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Scroll Reveal: stagger-in & fade-in-scale */
.stagger-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* =========================================
   Services Section
   ========================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 2.5rem 2rem; transition: var(--smooth); box-shadow: var(--glass-shadow); opacity: 0; transform: translateY(30px); display: flex; flex-direction: column; }
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { transform: translateY(-8px); border-color: rgba(82, 0, 184, 0.3); box-shadow: 0 15px 40px rgba(82, 0, 184, 0.1); }
.service-icon { width: 64px; height: 64px; background: rgba(138, 0, 255, 0.08); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--deep-purple); margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.service-card p { color: var(--muted-text); margin-bottom: 1.5rem; flex-grow: 1; line-height: 1.6; }
.service-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--deep-purple); font-size: 0.95rem; margin-top: auto; }
.service-link svg { transition: transform 0.3s ease; }
.service-card:hover .service-link svg { transform: translateX(-5px); }

/* Extra Services */
.extra-services { background: #fcfcfd; padding: 32px; border-radius: 16px; margin-top: 40px; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05); }
.extra-services-title { font-size: 1.25rem; margin-bottom: 12px; color: var(--dark-charcoal); }
.extra-services-desc { color: var(--muted-text); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
.extra-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.extra-service-pill { display: flex; align-items: center; gap: 12px; background: var(--white); padding: 16px; border-radius: 12px; font-weight: 600; border: 1px solid rgba(0,0,0,0.05); text-decoration: none; color: var(--dark-charcoal); transition: var(--smooth); box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.extra-service-pill:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(111,54,251,0.1); border-color: rgba(111,54,251,0.2); color: var(--electric-purple); }
.extra-service-pill svg { color: var(--electric-purple); }

/* =========================================
   Split Visual Section
   ========================================= */
.split-visual-section { background: var(--white); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-content h2 { font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.split-content p { color: var(--muted-text); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.8; }
.feature-list { margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.feature-list li { display: flex; align-items: center; gap: 1rem; font-weight: 500; }
.feature-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: rgba(24, 160, 88, 0.1); color: var(--success-green); border-radius: 50%; }
.split-actions { display: flex; gap: 1rem; }
.split-image-container { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); opacity: 0; transform: scale(0.96); transition: all 0.8s ease; }
.split-image-container.visible { opacity: 1; transform: scale(1); }
.split-image-container img { width: 100%; height: auto; object-fit: cover; display: block; }
.image-backdrop { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 100%); pointer-events: none; }

/* =========================================
   Process Section
   ========================================= */
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-timeline::before { content: ''; position: absolute; top: 35px; left: 0; right: 0; height: 2px; background: var(--soft-gray); z-index: 1; opacity: 0.3; }
.process-step { position: relative; z-index: 2; opacity: 0; transform: translateY(30px); transition: var(--smooth); }
.process-step.visible { opacity: 1; transform: translateY(0); }
.step-number { width: 70px; height: 70px; background: var(--bg-silver); border: 2px solid var(--soft-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: var(--dark-charcoal); margin-bottom: 1.5rem; transition: var(--smooth); }
.process-step:hover .step-number { background: var(--purple-grad); color: var(--white); border-color: transparent; box-shadow: 0 10px 20px rgba(82, 0, 184, 0.2); }
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.process-step p { color: var(--muted-text); font-size: 0.95rem; line-height: 1.6; }

/* =========================================
   Moving Types Section
   ========================================= */
.moving-types-section { background: var(--dark-charcoal); color: var(--white); }
.moving-types-section .section-header h2 { color: var(--white); }
.types-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.type-tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 350px; display: flex; align-items: flex-end; padding: 2.5rem; opacity: 0; transform: translateY(30px); transition: var(--smooth); }
.type-tile.visible { opacity: 1; transform: translateY(0); }
.tile-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.type-tile:hover .tile-bg { transform: scale(1.05); }
.tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(23, 19, 31, 0.9) 0%, rgba(23, 19, 31, 0.3) 100%); }
.tile-content { position: relative; z-index: 2; width: 100%; max-width: 400px; }
.tile-content h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--white); }
.tile-content p { color: rgba(255, 255, 255, 0.8); margin-bottom: 1.5rem; line-height: 1.6; }

/* =========================================
   Areas Section
   ========================================= */
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.area-card { background: var(--white); border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; border: 1px solid var(--soft-gray); transition: var(--smooth); opacity: 0; transform: translateY(20px); }
.area-card.visible { opacity: 1; transform: translateY(0); }
.area-card:hover { transform: translateY(-5px); border-color: var(--deep-purple); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.area-icon { width: 48px; height: 48px; background: var(--bg-silver); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--deep-purple); }
.area-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.area-card p { font-size: 0.85rem; color: var(--muted-text); margin-bottom: 1.5rem; line-height: 1.6; }
.area-link { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.85rem; font-weight: 700; color: var(--deep-purple); }
.areas-note { font-size: 0.85rem; color: var(--muted-text); }

/* =========================================
   Gallery Section
   ========================================= */
.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 1.5rem; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; opacity: 0; transform: scale(0.95); transition: var(--smooth); cursor: pointer; }
.gallery-item.visible { opacity: 1; transform: scale(1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(82, 0, 184, 0.6); display: flex; align-items: center; justify-content: center; color: var(--white); opacity: 0; transition: var(--smooth); backdrop-filter: blur(2px); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.item-large { grid-column: span 2; grid-row: span 2; }
.item-wide { grid-column: span 2; }

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; overflow-x: auto; padding-bottom: 2rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--soft-gray); scroll-snap-align: start; min-width: 300px; opacity: 0; transform: translateX(30px); transition: var(--smooth); }
.testimonial-card.visible { opacity: 1; transform: translateX(0); }
.stars { color: #FFB800; font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; font-weight: 500; }
.reviewer { display: flex; align-items: center; gap: 1rem; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--bg-silver); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--deep-purple); font-size: 1.2rem; }
.reviewer-info h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.reviewer-info span { font-size: 0.85rem; color: var(--muted-text); }

/* =========================================
   FAQ Section
   ========================================= */
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--white); border: 1px solid var(--soft-gray); border-radius: var(--radius-md); overflow: hidden; opacity: 0; transform: translateY(20px); transition: var(--smooth); }
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: transparent; border: none; font-size: 1.1rem; font-weight: 700; font-family: inherit; color: var(--dark-charcoal); cursor: pointer; text-align: right; }
.faq-icon { transition: transform 0.3s ease; display: flex; align-items: center; justify-content: center; color: var(--muted-text); }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--deep-purple); }
.faq-item.active { border-color: var(--deep-purple); box-shadow: 0 5px 15px rgba(82, 0, 184, 0.05); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.answer-inner { padding: 0 1.5rem 1.5rem; color: var(--muted-text); line-height: 1.7; }

/* =========================================
   Final CTA Section
   ========================================= */
.final-cta-section { padding-top: 2rem; padding-bottom: 6rem; }
.cta-banner { background: var(--purple-grad); border-radius: var(--radius-lg); padding: 5rem 3rem; text-align: center; color: var(--white); box-shadow: 0 20px 40px rgba(82, 0, 184, 0.2); position: relative; overflow: hidden; opacity: 0; transform: scale(0.96); transition: var(--smooth); }
.cta-banner.visible { opacity: 1; transform: scale(1); }
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); opacity: 0.5; pointer-events: none; }
.cta-banner h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; position: relative; z-index: 2; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto 3rem; position: relative; z-index: 2; line-height: 1.6; }
.cta-banner-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; position: relative; z-index: 2; }
.btn-white { background: var(--white); color: var(--deep-purple); }
.btn-white:hover { background: var(--bg-silver); transform: translateY(-2px); }
.cta-trust-badges { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 2rem; }
.cta-trust-badges span { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 500; }
.cta-trust-badges svg { color: var(--success-green); }

/* =========================================
   Footer
   ========================================= */
.site-footer { background: var(--dark-charcoal); color: var(--white); padding: 5rem 0 2rem; border-top: 5px solid var(--deep-purple); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-logo { filter: brightness(0) invert(1); }
.footer-desc { color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 0.95rem; }
.footer-links h3, .footer-contact h3 { font-size: 1.2rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.75rem; color: var(--white); }
.footer-links h3::after, .footer-contact h3::after { content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 3px; background: var(--deep-purple); border-radius: 2px; }
.footer-links ul { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-links a:hover { color: var(--white); padding-right: 5px; }
.footer-contact ul { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 1rem; color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.5; }
.footer-contact svg { flex-shrink: 0; color: var(--deep-purple); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
    .desktop-nav, .header-ctas { display: none; }
    .mobile-header-actions { display: flex; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); }

    .hero-slider-dots, .hero-visual-number { display: none; }

    .hero-card { padding: 3rem 5%; min-height: 75vh; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .split-image-container { order: -1; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .process-timeline::before { display: none; }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    body { padding-bottom: 90px; }
    .floating-cta { display: flex; }

    .hero-section { padding: 5rem 0.75rem 2rem; }

    .hero-card {
        border-radius: var(--radius-md);
        padding: 2.5rem 1.5rem 3.5rem;
        min-height: 78vh;
    }

    .hero-actions { flex-direction: column; }
    .btn-large { width: 100%; font-size: 1rem; padding: 1rem 1.5rem; }

    .trust-grid { grid-template-columns: 1fr; gap: 1rem; }

    .scroll-down-btn { width: 56px; height: 56px; bottom: -24px; }

    .trust-mini-row { gap: 1rem; }

    .section-padding { padding: 4rem 0; }
    .services-grid { grid-template-columns: 1fr; }
    .types-grid { grid-template-columns: 1fr; }
    .type-tile { min-height: 300px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .item-large { grid-column: span 1; grid-row: span 1; }
    .item-wide { grid-column: span 2; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: unset; }
    .split-actions { flex-direction: column; }
    .split-actions .btn { width: 100%; }
    .cta-banner { padding: 3rem 1.5rem; }
    .cta-banner-actions { flex-direction: column; width: 100%; }
    .cta-banner-actions .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 430px) {
    .hero-title { font-size: 2rem; }
    .container { padding: 0 1.25rem; }
    
    .areas-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .item-wide { grid-column: span 1; }
    .process-timeline { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .trust-item { font-size: 0.8rem; }
}

/* ==========================================================================
   Inner Pages Styles (Services & Hub)
   ========================================================================== */

/* Inner Hero */
.inner-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--bg-silver) 0%, #f4f4f6 100%);
    position: relative;
    overflow: hidden;
}
.inner-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: multiply;
    pointer-events: none;
}
.inner-hero .container {
    position: relative;
    z-index: 2;
}
.inner-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--dark-charcoal);
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.8);
}
.breadcrumb a {
    color: var(--electric-purple);
    font-weight: 500;
}
.breadcrumb span {
    opacity: 0.5;
}
.inner-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-charcoal);
    margin-bottom: 20px;
    line-height: 1.3;
}
.inner-hero .hero-text {
    font-size: 1.125rem;
    color: var(--muted-text);
    margin-bottom: 32px;
    line-height: 1.8;
}
.inner-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Service Inner Overview & Benefits */
.service-overview, .service-benefits {
    background: #fff;
}
.service-overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.service-overview-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--dark-charcoal);
}
.service-overview-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted-text);
    margin-bottom: 20px;
}
.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.benefit-card {
    background: var(--bg-silver);
    padding: 32px;
    border-radius: 16px;
    text-align: right;
    transition: transform 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
}
.benefit-card .icon {
    width: 48px; height: 48px;
    background: rgba(138, 43, 226, 0.1);
    color: var(--electric-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark-charcoal);
}

/* Related Services */
.related-services {
    background: #fcfcfd;
}
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .inner-hero { padding: 140px 0 60px; }
    .inner-hero-actions { flex-direction: column; }
    .service-benefits-grid { grid-template-columns: 1fr; }
}

/* =========================================
   Areas Pages
   ========================================= */

.area-hero {
    position: relative;
    padding: 120px 0 60px;
    background: var(--dark-charcoal);
    color: var(--white);
    overflow: hidden;
}
.area-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
}
.area-hero:hover .area-hero-bg {
    transform: scale(1.05);
}
.area-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(23,19,31,0.6) 0%, rgba(23,19,31,0.9) 100%);
}
.area-hero .container {
    position: relative;
    z-index: 2;
}
.area-breadcrumb {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.area-breadcrumb a { color: var(--white); }
.area-breadcrumb a:hover { color: var(--electric-purple); }
.area-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}
.area-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.area-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.area-badges span {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-overview {
    background: var(--bg-silver);
}
.area-overview-content {
    font-size: 1.1rem;
    color: var(--muted-text);
    line-height: 1.8;
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.district-card {
    background: var(--white);
    border: 1px solid var(--soft-gray);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: var(--smooth);
    display: block;
}
.district-card:hover {
    transform: translateY(-5px);
    border-color: var(--electric-purple);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.district-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--dark-charcoal); }
.district-card p { font-size: 0.85rem; color: var(--muted-text); }
.district-card-link { margin-top: 12px; display: inline-block; font-size: 0.85rem; color: var(--electric-purple); font-weight: 700; }

.service-links-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--glass-shadow);
}
.service-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.service-link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-silver);
    border-radius: var(--radius-md);
    transition: var(--fast);
    font-weight: 700;
}
.service-link-card:hover {
    background: var(--electric-purple);
    color: var(--white);
    transform: translateX(-5px);
}

.nearby-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}
.nearby-chip {
    padding: 8px 20px;
    background: rgba(138, 0, 255, 0.1);
    color: var(--electric-purple);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--fast);
}
.nearby-chip:hover {
    background: var(--electric-purple);
    color: var(--white);
}

.area-process {
    background: var(--dark-charcoal);
    color: var(--white);
}
.area-process .section-header h2 { color: var(--white); }

.area-route-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 1;
}
.route-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 3s linear forwards;
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 768px) {
    .area-hero { padding: 100px 0 40px; text-align: center; }
    .area-badges { justify-content: center; }
    .district-grid { grid-template-columns: repeat(2, 1fr); }
}
