/*
 * Custom CSS for The Doctor Furniture
 * Brand colors derived from logo: Black + Gold
 * Uses CSS Custom Properties for easy theming.
 * Works alongside Tailwind CSS v4 via CDN.
 */

/* ─── Google Fonts ──────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Custom Properties (Design Tokens) ─────────────────────────────── */
:root {
    /* Brand colors */
    --color-black: #1a1a1a;
    --color-gold: #b8860b;
    --color-gold-light: #c5a54e;
    --color-gold-dark: #8b6508;
    --color-cream: #faf8f5;
    --color-charcoal: #2d2d2d;
    --color-dark-bg: #111111;

    /* Neutral */
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;

    /* Feedback */
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-warning: #f59e0b;
    --color-info: #3b82f6;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-max: 1280px;
    --container-padding: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-gold: 0 4px 14px rgba(184,134,11,0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Logo sizing (overridden by JS from site settings) */
    --logo-width: 50px;
    --logo-height: 50px;
    --logo-mobile-width: 36px;
    --logo-mobile-height: 36px;
}

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

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    line-height: 1.7;
    background: var(--color-white);
    overflow-x: hidden;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

/* ─── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin-top: 0.75rem;
}

.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-500);
    max-width: 600px;
    margin-bottom: 3rem;
}

.section-subtitle.text-center {
    margin-left: auto;
    margin-right: auto;
}

/* ─── Global Social Float ──────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
}

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

/* ─── Container ─────────────────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

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

.btn-dark {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

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

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

.btn-white:hover {
    background: var(--color-cream);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
}

/* ─── Header / Navigation ──────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
    padding: 1rem 0;
}

.header[data-style="transparent"] {
    background: transparent;
}

.header[data-style="solid"],
.header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    padding: 0.5rem 0;
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo img,
.footer-logo img {
    width: 100%;
    height: auto;
    max-width: var(--logo-width);
    max-height: var(--logo-height);
    object-fit: contain;
    transition: all var(--transition-base);
}

.header.scrolled .header-logo img {
    max-width: calc(var(--logo-width) * 0.8);
    max-height: calc(var(--logo-height) * 0.8);
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.header-logo-text span {
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.625rem 1.5rem;
    background: var(--color-gold);
    color: var(--color-white) !important;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--color-gold-dark);
    transform: translateY(-1px);
}

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

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.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 Section ──────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-black);
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17,17,17,0.9) 0%,
        rgba(26,26,26,0.7) 50%,
        rgba(45,45,45,0.6) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--color-gold);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 560px;
}

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

/* Hero Slideshow Dots */
.hero-dots {
    position: absolute;
    bottom: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 0.75rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255,255,255,0.6);
}

.hero-dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(184,134,11,0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

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

/* ─── Trust Bar ─────────────────────────────────────────────────────────── */
.trust-bar {
    background: var(--color-black);
    border-top: 1px solid rgba(184,134,11,0.3);
    border-bottom: 1px solid rgba(184,134,11,0.3);
    padding: 2rem 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    font-size: 1.75rem;
    color: var(--color-gold);
}

.trust-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ─── About Section ─────────────────────────────────────────────────────── */
.about-section {
    padding: var(--section-padding);
    background: var(--color-cream);
}

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

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 200px;
    height: 200px;
    border: 3px solid var(--color-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.about-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin-top: 0.75rem;
}

.about-content p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.9;
}

/* ─── Services Section ──────────────────────────────────────────────────── */
.services-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-gold-light);
}

.service-card-image {
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-card-body {
    padding: 1.75rem;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

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

/* ─── Products / Categories Section ──────────────────────────────────────── */
.products-section {
    padding: var(--section-padding);
    background: var(--color-black);
    color: var(--color-white);
}

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

.products-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
}

.product-card:hover {
    background: rgba(184,134,11,0.1);
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.product-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
}

/* ─── Why Choose Us ──────────────────────────────────────────────────────── */
.why-section {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-left: 4px solid transparent;
}

.why-card:hover {
    border-left-color: var(--color-gold);
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
}

.why-card:hover .why-icon {
    background: var(--color-gold);
    color: var(--color-white);
}

.why-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    font-weight: 700;
}

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

/* ─── Process Section ───────────────────────────────────────────────────── */
.process-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 3rem;
    padding: 0 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--color-gray-200);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 180px;
}

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-black);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border: 3px solid var(--color-gold);
    transition: all var(--transition-base);
}

.process-step:hover .process-step-number {
    background: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 0.9375rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* ─── Testimonials / Google Reviews ─────────────────────────────────────── */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--color-charcoal);
    color: var(--color-white);
}

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

.google-rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.google-rating-text {
    color: var(--color-gold);
    font-size: 1.125rem;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), #d4a017);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-white);
}

.testimonial-date {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-google {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

/* ─── Contact Section ───────────────────────────────────────────────────── */
.contact-section {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

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

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--color-gold);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 0.9375rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item-text p,
.contact-item-text a {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.contact-item-text a:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--color-black);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    font-size: 1.125rem;
}

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

/* Contact Form */
.contact-form {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-black);
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
}

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

/* Phone input with +91 prefix */
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-prefix {
    position: absolute;
    left: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-gray-600);
    z-index: 1;
    pointer-events: none;
}

/* Photo Upload Zone */
.photo-upload-zone {
    position: relative;
    border: 2px dashed var(--color-gray-300);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
    background: var(--color-gray-50);
    cursor: pointer;
    min-height: 120px;
}

.photo-upload-zone:hover,
.photo-upload-zone:focus-within {
    border-color: var(--color-gold);
    background: rgba(184,134,11,0.04);
}

.photo-file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.photo-upload-placeholder {
    color: var(--color-gray-500);
    pointer-events: none;
}

.photo-upload-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.photo-upload-placeholder p {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--color-gray-600);
}

.photo-upload-placeholder small {
    font-size: 0.8125rem;
    color: var(--color-gray-400);
}

.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.photo-thumb {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--color-gold-light);
    box-shadow: var(--shadow-sm);
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-count-msg {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-top: 0.5rem;
    min-height: 1.2em;
}

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

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

.footer-brand p {
    font-size: 0.9375rem;
    margin-top: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-gst {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

/* ─── Modal ─────────────────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: 1rem;
}

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

.modal-container {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--color-gray-100);
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    color: var(--color-gray-600);
}

.modal-close:hover {
    background: var(--color-gray-200);
    color: var(--color-black);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid var(--color-gray-200);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Quote form inside modal */
.quote-form .form-group {
    margin-bottom: 1rem;
}

/* ─── Toast Notifications ───────────────────────────────────────────────── */
.toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: var(--shadow-xl);
    transform: translateX(120%);
    transition: all var(--transition-base);
    border-left: 4px solid var(--color-gray-400);
}

.toast-visible {
    transform: translateX(0);
}

.toast-exit {
    transform: translateX(120%);
    opacity: 0;
}

.toast-success { border-left-color: var(--color-success); }
.toast-error { border-left-color: var(--color-error); }
.toast-info { border-left-color: var(--color-info); }
.toast-warning { border-left-color: var(--color-warning); }

.toast-icon {
    font-size: 1.125rem;
    font-weight: 700;
}

.toast-success .toast-icon { color: var(--color-success); }
.toast-error .toast-icon { color: var(--color-error); }
.toast-info .toast-icon { color: var(--color-info); }
.toast-warning .toast-icon { color: var(--color-warning); }

.toast-message {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.125rem;
    color: var(--color-gray-400);
    cursor: pointer;
    padding: 0.25rem;
    transition: color var(--transition-fast);
}

.toast-close:hover {
    color: var(--color-gray-700);
}

/* ─── Before/After Slider ───────────────────────────────────────────────── */
.ba-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}

.ba-after,
.ba-before {
    width: 100%;
}

.ba-after img,
.ba-before img {
    width: 100%;
    display: block;
    pointer-events: none;
}

.ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.ba-before img {
    width: auto;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 5;
}

.ba-handle-line {
    flex: 1;
    width: 3px;
    background: var(--color-gold);
}

.ba-handle-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.ba-label {
    position: absolute;
    bottom: 1rem;
    padding: 0.375rem 0.75rem;
    background: rgba(0,0,0,0.6);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
}

.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* ─── Scroll Animations ─────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ─── Utility Classes ───────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }
.bg-black { background-color: var(--color-black); }
.bg-cream { background-color: var(--color-cream); }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .process-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
        --container-padding: 1rem;
    }

    /* Mobile nav */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-black);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 1.5rem;
        transition: right var(--transition-base);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

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

    .hero-content h1 {
        font-size: 2.25rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .process-step {
        max-width: 140px;
    }
}

/* ─── Product Gallery Overlay ──────────────────────────────────────────── */
.product-gallery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.gallery-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.gallery-close:hover {
    background: rgba(255,255,255,0.1);
}

.gallery-title {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.gallery-viewport {
    position: relative;
    max-width: 800px;
    max-height: 70vh;
    width: 90vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-viewport img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    transition: opacity 0.4s ease;
}

.gallery-order-code {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.75);
    color: var(--color-gold);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1px solid rgba(184,134,11,0.3);
    backdrop-filter: blur(4px);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.2s;
}

.gallery-nav:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.gallery-nav.prev { left: -60px; }
.gallery-nav.next { right: -60px; }

.gallery-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

.gallery-dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
}

.gallery-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.gallery-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.2s;
}

.gallery-whatsapp-btn:hover {
    background: #1da851;
    transform: scale(1.02);
}

.gallery-counter {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .gallery-nav.prev { left: 0.5rem; }
    .gallery-nav.next { right: 0.5rem; }
    .gallery-nav { width: 36px; height: 36px; font-size: 1rem; }
    .gallery-title { font-size: 1rem; }

    .header-logo img,
    .footer-logo img {
        max-width: var(--logo-mobile-width);
        max-height: var(--logo-mobile-height);
        width: 100%;
        height: auto;
    }
}

/* ─── Contact Map ───────────────────────────────────────────────────────── */
.map-container {
    margin-top: 2rem;
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-gray-100);
}

/* ─── Global Logo Styling ───────────────────────────────────────────────── */
.header-logo img,
.footer-logo img {
    filter: drop-shadow(0 0 1px white) drop-shadow(0 0 1px white) drop-shadow(0 0 2px white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUSINESS STRATEGY SECTIONS — Niche, Scarcity, D2C, Local SEO
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Hero Scarcity Badge ──────────────────────────────────────────────── */
.hero-scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(184,134,11,0.2), rgba(184,134,11,0.05));
    border: 1px solid rgba(184,134,11,0.4);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gold-light);
    backdrop-filter: blur(8px);
    animation: scarcityPulse 2.5s ease-in-out infinite;
}

.hero-scarcity-badge .scarcity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes scarcityPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184,134,11,0); }
    50% { box-shadow: 0 0 20px 4px rgba(184,134,11,0.15); }
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* ─── Hero Niche Subtitle ──────────────────────────────────────────────── */
.hero-niche-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(184,134,11,0.3);
}

/* ─── Niche Expertise Section (replaces Why Choose Us) ─────────────────── */
.niche-section {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.niche-section .section-title {
    color: var(--color-black);
}

.niche-section .section-subtitle {
    color: var(--color-gray-600);
}

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

.niche-card {
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray-100);
    position: relative;
    overflow: hidden;
}

.niche-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

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

.niche-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(184,134,11,0.2);
}

.niche-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(184,134,11,0.25);
    transition: all var(--transition-base);
}

.niche-card:hover .niche-icon {
    transform: scale(1.08) rotate(-3deg);
}

.niche-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-black);
}

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

/* ─── In-Home Consultation Section ──────────────────────────────────────── */
.consultation-section {
    padding: var(--section-padding);
    background: var(--color-black);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.consultation-section .section-subtitle {
    color: rgba(255,255,255,0.65);
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.consultation-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.consultation-card:hover {
    background: rgba(184,134,11,0.06);
    border-color: rgba(184,134,11,0.3);
    transform: translateY(-6px);
}

.consultation-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184,134,11,0.2), rgba(184,134,11,0.05));
    border: 2px solid rgba(184,134,11,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
    transition: all var(--transition-base);
}

.consultation-card:hover .consultation-card-icon {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

.consultation-card h3 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.consultation-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.consultation-cta {
    margin-top: 3rem;
}

/* ─── Service Areas Section (Local SEO) ─────────────────────────────────── */
.service-areas-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.service-areas-section .section-subtitle {
    color: var(--color-gray-500);
}

.areas-zones {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.area-zone {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.area-zone:hover {
    border-color: var(--color-gold-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.area-zone-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.area-zone-badge {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--color-gold);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    flex-shrink: 0;
}

.area-zone-header h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
}

.area-list {
    list-style: none;
}

.area-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    color: var(--color-gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.area-list li:last-child {
    border-bottom: none;
}

.area-list li::before {
    content: '📍';
    font-size: 0.75rem;
}

.area-list li:hover {
    color: var(--color-gold-dark);
}

.areas-tagline {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1rem;
    color: var(--color-gray-500);
}

.areas-tagline a {
    color: var(--color-gold);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.areas-tagline a:hover {
    color: var(--color-gold-dark);
}

/* ─── Scarcity Sticky Banner ───────────────────────────────────────────── */
.scarcity-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid var(--color-gold);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scarcity-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(184,134,11,0.06) 25%,
        rgba(184,134,11,0.12) 50%,
        rgba(184,134,11,0.06) 75%,
        transparent 100%
    );
    animation: bannerShimmer 4s ease-in-out infinite;
}

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

.scarcity-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.scarcity-banner-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.9375rem;
    font-weight: 500;
}

.scarcity-banner-text strong {
    color: var(--color-gold);
    font-weight: 700;
}

.scarcity-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
}

.scarcity-banner-cta:hover {
    background: var(--color-gold-light);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(184,134,11,0.4);
}

/* ─── Responsive: New Sections ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .niche-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .areas-zones {
        grid-template-columns: 1fr;
    }

    .scarcity-banner-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-scarcity-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}
