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

:root {
    /* WHITE-FIRST palette */
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-50: #f8f8f8;
    --gray-100: #f0f0f0;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --black: #0a0a0a;

    /* Accent colors */
    --yellow: #FFD600;
    --yellow-dark: #E6C200;
    --yellow-soft: #FFF3B0;
    --yellow-glow: rgba(255, 214, 0, 0.12);
    --yellow-glow-strong: rgba(255, 214, 0, 0.2);
    --gradient-yellow: linear-gradient(135deg, #FFD600, #FFA000);

    /* Dark accents (used sparingly) */
    --dark-card: #111111;
    --dark-border: #222222;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Motion */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Shadows — light mode */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(255, 214, 0, 0.1);

    --container: 1280px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul,
ol {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-800);
    margin-bottom: 16px;
    background: var(--yellow-glow);
    padding: 6px 16px 6px 0;
    border-radius: 4px;
}

.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--gray-900);
}

.section-title .accent {
    color: var(--yellow-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.7;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gray-900);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--black);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-yellow {
    background: var(--gradient-yellow);
    color: var(--gray-900);
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
    font-weight: 700;
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 214, 0, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--gray-800);
    border: 1.5px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--gray-900);
    color: var(--gray-900);
    background: var(--gray-50);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.navbar.scrolled .nav-logo {
    color: var(--gray-900);
}

.nav-logo span {
    color: var(--yellow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-500);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:not(.nav-cta):hover {
    color: var(--white);
}

.navbar.scrolled .nav-links a:not(.nav-cta):hover {
    color: var(--gray-900);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

/* Nav CTA Button — premium shimmer effect */
.nav-cta {
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--gradient-yellow);
    color: var(--gray-900) !important;
    border-radius: 60px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: none;
    z-index: 1;
    pointer-events: none;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 28px rgba(255, 214, 0, 0.45),
                0 0 0 2px rgba(255, 214, 0, 0.15);
    color: var(--gray-900) !important;
}

.nav-cta:hover::before {
    animation: shimmer 0.7s var(--ease-out-expo) forwards;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 120%; }
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-900);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO (Dark) ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--black);
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.85) 80%, var(--white) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 60px;
    background: rgba(255, 214, 0, 0.15);
    border: 1px solid rgba(255, 214, 0, 0.25);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.4s forwards;
}

.hero h1 .highlight {
    color: var(--yellow);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 560px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.8s forwards;
}

.hero .btn-outline {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero .btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(255, 214, 0, 0.1);
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 1s forwards;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

/* ========== SERVICES (White bg) ========== */
.services {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

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

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

.service-image {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--gray-100);
}

.service-card:hover .service-image {
    border-color: rgba(255, 214, 0, 0.3);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-expo);
}

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

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    gap: 12px;
    color: var(--yellow-dark);
}

/* ========== HOW IT WORKS (off-white bg) ========== */
.how-works {
    padding: 100px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.how-works-header {
    text-align: center;
    margin-bottom: 64px;
}

.how-works-header .section-subtitle {
    margin: 0 auto;
}

.how-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.how-works-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.how-works-text h3 {
    font-size: 1.2rem;
    margin: 24px 0 8px;
    color: var(--gray-900);
}

.how-works-text p {
    margin-bottom: 16px;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.brand-tag {
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.brand-tag:hover {
    border-color: var(--yellow);
    background: var(--yellow-glow);
}

.how-works-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.how-works-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== ABOUT / WHY US (White bg) ========== */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

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

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
}

.about-floating-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
}

.about-floating-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--yellow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 214, 0, 0.3);
}

.about-floating-icon svg {
    width: 24px;
    height: 24px;
    color: var(--yellow-dark);
}

.about-floating-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-900);
}

.about-floating-text span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.about-content .section-title {
    text-align: left;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out-expo);
}

.about-feature:hover {
    border-color: var(--gray-300);
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--yellow-dark);
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.88rem;
    color: var(--gray-500);
}

/* ========== PROCESS (Dark section) ========== */
.process {
    padding: 120px 0;
    background: var(--gray-900);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
}

.process-header .section-label {
    color: var(--yellow);
}

.process-header .section-title {
    color: var(--white);
}

.process-header .section-subtitle {
    margin: 0 auto;
    color: var(--gray-400);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 214, 0, 0.08);
    line-height: 1;
    margin-bottom: 16px;
}

.process-step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out-expo);
}

.process-step:hover .process-step-icon {
    border-color: var(--yellow);
    background: var(--yellow-glow);
    transform: scale(1.1);
}

.process-step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--yellow);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.process-step p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* ========== GALLERY (White bg) ========== */
.gallery {
    padding: 120px 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery-header .section-subtitle {
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-item-label {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* ========== TESTIMONIALS (Off-white bg) ========== */
.testimonials {
    padding: 120px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-header .section-subtitle {
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.5s var(--ease-out-expo);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--yellow);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--yellow);
    font-size: 1rem;
}

.testimonial-author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-900);
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ========== COVERAGE (White bg) ========== */
.coverage {
    padding: 120px 0;
    background: var(--white);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.coverage-map {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.coverage-map::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 70%);
}

.coverage-regions {
    position: relative;
    z-index: 1;
}

.coverage-region {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}

.coverage-region:last-child {
    border-bottom: none;
}

.coverage-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0;
}

.coverage-region span {
    font-size: 0.95rem;
    color: var(--gray-700);
}

.coverage-content .section-title {
    text-align: left;
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.coverage-city {
    padding: 8px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 60px;
    font-size: 0.82rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.coverage-city:hover {
    border-color: var(--yellow);
    color: var(--gray-900);
    background: var(--yellow-glow);
}

/* ========== CTA SECTION (Yellow bg) ========== */
.cta {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    padding: 80px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 214, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card .section-label {
    color: var(--yellow);
    position: relative;
    z-index: 1;
}

.cta-card .section-title {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-card .section-subtitle {
    margin: 0 auto 40px;
    color: var(--gray-400);
    position: relative;
    z-index: 1;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-outline {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta .btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(255, 214, 0, 0.1);
}

/* ========== CONTACT FORM (Off-white bg) ========== */
.contact {
    padding: 120px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-900);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px var(--yellow-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    border-color: var(--gray-300);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--yellow);
}

.contact-info-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-900);
}

.contact-info-text span {
    font-size: 0.88rem;
    color: var(--gray-500);
}

.contact-info-text a {
    color: var(--gray-900);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--yellow-dark);
}

/* ========== FOOTER (Dark) ========== */
.footer {
    padding: 60px 0 24px;
    background: var(--gray-900);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--gray-500);
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-600);
}

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .about-grid,
    .coverage-grid,
    .contact-grid,
    .how-works-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
    }

    .nav-links.active a {
        color: var(--gray-700) !important;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

.cta-card {
  padding: 48px 24px;
}

.hero-actions {
  flex-direction: column;
}

.btn {
  justify-content: center;
}
}

/* ── WHATSAPP WIDGET ── */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}

.whatsapp-widget__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  transition: transform .3s var(--ease-out-expo), box-shadow .3s ease;
  position: relative;
}

.whatsapp-widget__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37, 211, 102, .45);
}

.whatsapp-widget__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: .6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.whatsapp-widget__chat {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 340px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
  overflow: hidden;
  transform: scale(.8) translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all .4s var(--ease-out-expo);
  transform-origin: bottom right;
}

.whatsapp-widget__chat.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width:600px) {
  .whatsapp-widget__chat {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transform-origin: bottom center;
    z-index: 9999;
  }

  .whatsapp-widget__chat.open {
    transform: translateY(0);
  }
}

.whatsapp-widget__header {
  background: #075E54;
  color: white;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-widget__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #128C7E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.whatsapp-widget__header strong {
  display: block;
  font-size: .85rem;
}

.whatsapp-widget__header span {
  font-size: .7rem;
  opacity: .8;
}

.whatsapp-widget__close {
  margin-left: auto;
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  opacity: .7;
  transition: opacity .2s;
}

.whatsapp-widget__close:hover {
  opacity: 1;
}

.whatsapp-widget__body {
  padding: 16px;
  background: #ECE5DD;
  min-height: 80px;
}

.whatsapp-widget__msg {
  background: white;
  padding: 12px 14px;
  border-radius: 0 8px 8px 8px;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

.whatsapp-widget__msg p {
  font-size: .85rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.whatsapp-widget__time {
  display: block;
  font-size: .65rem;
  color: #999;
  text-align: right;
  margin-top: 4px;
}

.whatsapp-widget__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #e0e0e0;
  background: #f0f0f0;
}

.whatsapp-widget__footer input {
  flex: 1;
  border: none;
  background: white;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 16px;
  outline: none;
  font-family: var(--font-body);
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}

.whatsapp-widget__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: background .2s;
}

.whatsapp-widget__send:hover {
  background: #128C7E;
}