/* 
   Jolly Wedding Studio - Design System 
   Inspired by Picture Perfect reference site
   Dark, Elegant, Glass Effects
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette – Dark Theme */
    --background: 30 10% 6%;
    /* Near black with warmth */
    --foreground: 30 5% 90%;
    --card: 30 5% 10%;
    --card-foreground: 30 5% 90%;
    --primary: 42 70% 48%;
    /* Gold accent */
    --primary-foreground: 0 0% 100%;
    --secondary: 30 8% 14%;
    --muted: 30 5% 18%;
    --muted-foreground: 30 5% 55%;
    --border: 30 5% 15%;
    --accent: 42 50% 55%;
    /* Lighter Gold */
    --accent-foreground: 0 0% 100%;
    --radius: 0.75rem;

    /* Simplified tokens */
    --color-bg: hsl(30 10% 6%);
    --color-surface: hsl(30 5% 10%);
    --color-surface-light: hsl(30 5% 14%);
    --color-border: hsl(30 5% 15%);
    --color-gold: hsl(42 70% 48%);
    --color-gold-hover: hsl(42 70% 42%);
    --color-gold-glow: hsla(42, 70%, 48%, 0.15);
    --color-white: #ffffff;
    --color-text: hsl(30 5% 80%);
    --color-text-muted: hsl(30 5% 50%);
    --color-black: #000000;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Manrope', system-ui, sans-serif;

    /* Layout */
    --container-width: 1200px;
}

/* ================================================================
   Reset & Base
   ================================================================ */
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.15;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ================================================================
   Utilities
   ================================================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-8 {
    margin-top: 4rem;
}

/* ================================================================
   Animations
   ================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

/* ================================================================
   Buttons
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    touch-action: manipulation;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-gold-glow);
}

.btn-outline {
    background: transparent;
    border-color: hsla(42, 70%, 48%, 0.5);
    color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    box-shadow: 0 8px 25px var(--color-gold-glow);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-white:hover {
    background: hsla(0, 0%, 100%, 0.9);
    transform: scale(1.05);
}

.btn-ghost {
    background: hsla(0, 0%, 100%, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid hsla(0, 0%, 100%, 0.15);
    color: var(--color-white);
}

.btn-ghost:hover {
    background: hsla(0, 0%, 100%, 0.15);
    border-color: hsla(0, 0%, 100%, 0.3);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ================================================================
   Section Header
   ================================================================ */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p.subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-top: 16px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.divider-gold {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 0 auto;
}

.divider-gold.align-left {
    margin: 0;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

/* ================================================================
   Navbar (Glass)
   ================================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

/* Glass style on scroll */
.navbar.scrolled {
    padding: 12px 0;
    background: hsla(30, 10%, 6%, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: hsla(0, 0%, 100%, 0.7);
    position: relative;
    transition: color 0.3s ease;
}

/* Animated underline */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-white);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--color-white);
}

/* ================================================================
   Mobile Menu Overlay (Glass)
   ================================================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: hsla(30, 10%, 6%, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.mobile-menu-close:hover {
    color: var(--color-gold);
}

.mobile-nav-links li {
    margin-bottom: 28px;
    text-align: center;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--color-gold);
}

/* ================================================================
   Hero Section
   ================================================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 25s infinite alternate;
}

/* Hero Slideshow */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

/* Dark fade overlay — blends hero into dark bg */
.overlay-gold {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            hsla(0, 0%, 0%, 0.35) 0%,
            hsla(0, 0%, 0%, 0.5) 50%,
            hsla(30, 10%, 6%, 1) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 0 24px;
    z-index: 1;
}

.hero-tagline {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-gold);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-style: italic;
    line-height: 1.1;
    font-weight: 400;
}

.hero-subhead {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 300;
    margin-bottom: 40px;
    color: hsla(0, 0%, 100%, 0.7);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: hsla(0, 0%, 100%, 0.4);
    font-size: 1.2rem;
    animation: bounce 2.5s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-8px);
    }

    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* ================================================================
   About Section
   ================================================================ */
.about {
    border-top: 1px solid hsla(0, 0%, 100%, 0.04);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 20px;
    border-left: 2px solid var(--color-gold);
    padding-left: 20px;
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.signature {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    text-align: right;
    margin-top: 32px;
    color: var(--color-gold);
}

/* Glass Image Frame */
.image-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.03);
}

/* ================================================================
   Gallery Section — Masonry with Glass Filters
   ================================================================ */
.gallery {
    background-color: var(--color-surface);
    position: relative;
    border-top: 1px solid hsla(0, 0%, 100%, 0.04);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.04);
}

.gallery-filters {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Glass pill filter buttons */
.filter-btn {
    background: hsla(0, 0%, 100%, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid hsla(0, 0%, 100%, 0.08);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.82rem;
    cursor: pointer;
    padding: 10px 24px;
    color: hsla(0, 0%, 100%, 0.5);
    transition: all 0.3s ease;
    border-radius: 50px;
    letter-spacing: 0.5px;
    touch-action: manipulation;
}

.filter-btn:hover {
    background: hsla(0, 0%, 100%, 0.08);
    color: var(--color-white);
    border-color: hsla(0, 0%, 100%, 0.2);
}

.filter-btn.active {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    font-weight: 600;
}

/* Masonry grid using CSS columns (like reference) */
.masonry-grid {
    columns: 3;
    column-gap: 16px;
}

@media (min-width: 768px) {
    .masonry-grid {
        column-gap: 24px;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (min-width: 768px) {
    .masonry-item {
        margin-bottom: 24px;
    }
}

/* Hover gradient overlay */
.masonry-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, hsla(0, 0%, 0%, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius);
    pointer-events: none;
}

.masonry-item:hover::after {
    opacity: 1;
}

.masonry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    border-radius: var(--radius);
}

/* Varied aspect ratios for masonry effect */
.masonry-item:nth-child(1) img {
    aspect-ratio: 4/5;
    object-fit: cover;
}

.masonry-item:nth-child(2) img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.masonry-item:nth-child(3) img {
    aspect-ratio: 3/4;
    object-fit: cover;
}

.masonry-item:nth-child(4) img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.masonry-item:nth-child(5) img {
    aspect-ratio: 4/5;
    object-fit: cover;
}

.masonry-item:nth-child(6) img {
    aspect-ratio: 3/4;
    object-fit: cover;
}

.masonry-item:nth-child(7) img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.masonry-item:nth-child(8) img {
    aspect-ratio: 4/5;
    object-fit: cover;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* ================================================================
   Services / Pricing — Glass Cards
   ================================================================ */
.services {
    border-top: 1px solid hsla(0, 0%, 100%, 0.04);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Glass card */
.pricing-card {
    background: hsla(0, 0%, 100%, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(0, 0%, 100%, 0.06);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Top edge glow */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.1), transparent);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    border-color: hsla(42, 70%, 48%, 0.3);
}

.pricing-card.featured {
    background: hsla(42, 70%, 48%, 0.04);
    border: 1px solid hsla(42, 70%, 48%, 0.2);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, transparent, hsla(42, 70%, 48%, 0.3), transparent);
}

.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-black);
    padding: 6px 20px;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 0 0 8px 8px;
}

.pricing-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.price {
    font-size: 2.2rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
    margin-bottom: 28px;
}

.features-list {
    margin-bottom: 32px;
    text-align: left;
}

.features-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--color-text-muted);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 600;
}

/* ================================================================
   Services Grid
   ================================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: hsla(0, 0%, 100%, 0.03);
    border: 1px solid hsla(0, 0%, 100%, 0.06);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, hsla(42, 70%, 48%, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: hsla(42, 70%, 48%, 0.25);
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.35);
    background: hsla(42, 70%, 48%, 0.04);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: hsla(42, 70%, 48%, 0.1);
    border: 1px solid hsla(42, 70%, 48%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--color-gold);
    color: var(--color-black);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-white);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-card {
        padding: 28px 18px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 24px 14px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .service-card h3 {
        font-size: 0.95rem;
    }
}

/* ================================================================
   CTA Section
   ================================================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-section .cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-section .cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section .cta-overlay {
    position: absolute;
    inset: 0;
    background: hsla(0, 0%, 0%, 0.6);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-style: italic;
}

.cta-content p {
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 32px;
    font-weight: 300;
    font-size: 1.05rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ================================================================
   Contact Section
   ================================================================ */
.contact {
    border-top: 1px solid hsla(0, 0%, 100%, 0.04);
}

.contact-info p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.contact-details {
    margin-top: 32px;
}

.item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
}

.item i {
    font-size: 1rem;
    color: var(--color-gold);
    width: 24px;
    flex-shrink: 0;
    text-align: center;
}

.item a,
.item span {
    color: var(--color-text-muted);
    font-weight: 300;
    transition: color 0.3s;
}

.item a:hover {
    color: var(--color-gold);
}

.social-links {
    margin-top: 32px;
    display: flex;
    gap: 12px;
}

/* Glass social buttons */
.social-links a {
    width: 42px;
    height: 42px;
    background: hsla(0, 0%, 100%, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid hsla(0, 0%, 100%, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: hsla(0, 0%, 100%, 0.6);
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--color-gold-glow);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Glass Contact Form */
.contact-form-wrapper {
    background: hsla(0, 0%, 100%, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid hsla(0, 0%, 100%, 0.06);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.08), transparent);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    background: hsla(0, 0%, 100%, 0.03);
    border: 1px solid hsla(0, 0%, 100%, 0.08);
    border-radius: var(--radius);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    outline: none;
    transition: all 0.3s;
    touch-action: manipulation;
}

input::placeholder,
textarea::placeholder {
    color: hsla(0, 0%, 100%, 0.2);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-glow);
    background: hsla(0, 0%, 100%, 0.05);
}

select option {
    background: var(--color-surface);
    color: var(--color-white);
}

/* ================================================================
   Footer
   ================================================================ */
.footer {
    background: var(--color-black);
    padding: 48px 0;
    color: var(--color-text-muted);
    border-top: 1px solid hsla(0, 0%, 100%, 0.04);
}

.footer h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.footer p {
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-links {
    margin-top: 16px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* ================================================================
   Floating WhatsApp Button
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: hsla(0, 0%, 100%, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(42, 70%, 48%, 0.3);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 4px 20px var(--color-gold-glow);
    transition: all 0.3s ease;
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.08);
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    box-shadow: 0 8px 30px hsla(42, 70%, 48%, 0.4);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px var(--color-gold-glow);
    }

    50% {
        box-shadow: 0 4px 20px hsla(42, 70%, 48%, 0.3), 0 0 0 10px hsla(42, 70%, 48%, 0.06);
    }
}

/* (Old chatbot-widget styles removed — replaced by .whatsapp-widget below) */

/* Header */
.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: hsla(0, 0%, 100%, 0.04);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.06);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.chatbot-header h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

.chatbot-status {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
    padding: 4px;
}

.chatbot-close:hover {
    color: var(--color-white);
}

/* Messages Area */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 250px;
    max-height: 320px;
    scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 4px;
}

/* Message Bubbles */
.chat-msg {
    max-width: 85%;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.5;
    animation: msgSlideIn 0.3s ease forwards;
    font-weight: 300;
}

@keyframes msgSlideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-msg.bot {
    align-self: flex-start;
    background: hsla(0, 0%, 100%, 0.06);
    border: 1px solid hsla(0, 0%, 100%, 0.06);
    color: var(--color-text);
    border-bottom-left-radius: 4px;
}

.chat-msg.user {
    align-self: flex-end;
    background: var(--color-gold);
    color: var(--color-black);
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 18px;
    align-self: flex-start;
    background: hsla(0, 0%, 100%, 0.06);
    border: 1px solid hsla(0, 0%, 100%, 0.06);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-text-muted);
    animation: typingBounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* Input Area */
.chatbot-input-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid hsla(0, 0%, 100%, 0.06);
}

.chatbot-input {
    flex: 1;
    padding: 10px 14px;
    background: hsla(0, 0%, 100%, 0.04);
    border: 1px solid hsla(0, 0%, 100%, 0.08);
    border-radius: 50px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    touch-action: manipulation;
}

.chatbot-input:focus {
    border-color: var(--color-gold);
}

.chatbot-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--color-gold);
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.chatbot-send:hover {
    background: var(--color-gold-hover);
    transform: scale(1.05);
}

/* Quick Reply Buttons */
.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 16px;
    flex-shrink: 0;
    background: #0d0d0d;
    /* Match messages background */
}

.chatbot-quick-replies:empty {
    display: none;
}

.quick-reply-btn {
    padding: 7px 16px;
    border: 1px solid hsla(42, 70%, 48%, 0.3);
    background: hsla(42, 70%, 48%, 0.06);
    color: var(--color-gold);
    border-radius: 50px;
    font-size: 0.78rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.quick-reply-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

/* Summary message */
.chat-msg.summary {
    background: hsla(42, 70%, 48%, 0.08);
    border: 1px solid hsla(42, 70%, 48%, 0.2);
    font-size: 0.82rem;
    white-space: pre-line;
    max-width: 92%;
}

/* (Mobile chatbot overrides moved to after CHATBOT POSITIONING FIX section for CSS cascade correctness) */

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .masonry-grid {
        columns: 2;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .masonry-grid {
        columns: 2;
        column-gap: 10px;
    }

    .masonry-item {
        margin-bottom: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .pricing-card {
        padding: 36px 24px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* ================================================================
   Calculator Modal
   ================================================================ */
.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), #b8860b);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.5);
    background: linear-gradient(135deg, #FFD700, var(--color-gold));
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: #1a1a1a;
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--color-gold);
}

.modal-header {
    padding: 24px;
    background: linear-gradient(to bottom, #222, #1a1a1a);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.modal-header p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.calculator-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.calc-section {
    margin-bottom: 30px;
}

.calc-section h4 {
    color: var(--color-gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
    padding-bottom: 8px;
}

.calc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.calc-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.calc-label {
    flex: 1;
    margin-right: 16px;
}

.service-name {
    display: block;
    color: #eee;
    font-weight: 500;
    margin-bottom: 2px;
}

.service-desc {
    display: block;
    color: #888;
    font-size: 0.8rem;
}

.price-tag {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: right;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    margin-right: 16px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--color-gold);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--color-gold);
}

input:checked+.slider:before {
    transform: translateX(24px);
    background-color: #000;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.calculator-footer {
    padding: 24px;
    background: #151515;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.total-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.total-display span {
    color: #ccc;
    font-size: 1.1rem;
}

.total-amount {
    color: var(--color-gold) !important;
    font-size: 2rem !important;
    font-family: var(--font-heading);
    font-weight: 700;
}

.btn-whatsapp-large {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, hsl(42, 70%, 42%), hsl(42, 70%, 52%));
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.btn-whatsapp-large:hover {
    background: linear-gradient(135deg, hsl(42, 70%, 48%), hsl(42, 70%, 58%));
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

/* ========================
   VENDOR ECOSYSTEM
   ======================== */

/* Hero Specifics for Vendor Page */
.page-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AI Search Section */
.ai-search-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.ai-search-box {
    background: hsla(0, 0%, 10%, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid hsla(42, 70%, 48%, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ai-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8860b 100%);
    color: var(--color-black);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.ai-search-box h2 {
    font-family: var(--font-heading);
    color: var(--color-white);
    margin-bottom: 32px;
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.ai-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--color-gold) 50%),
        linear-gradient(135deg, var(--color-gold) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px,
        5px 5px;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.ai-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.08);
}

.ai-input option {
    background: #1a1a1a;
    color: var(--color-white);
}

.btn-ai-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    min-width: 200px;
}

.btn-ai-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* AI Loader */
.ai-processing-container {
    padding: 60px 0;
    text-align: center;
}

.ai-loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s infinite linear;
}

.ai-status-text {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 500;
    animation: pulse 1.5s infinite ease-in-out;
}

/* Vendor Grid */
.vendors-grid-section .masonry-grid {
    column-count: 3;
    column-gap: 24px;
}

.vendor-card {
    background: hsla(0, 0%, 100%, 0.03);
    border: 1px solid hsla(0, 0%, 100%, 0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    break-inside: avoid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.vendor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    border-color: hsla(42, 70%, 48%, 0.3);
}

.vendor-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.vendor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vendor-card:hover .vendor-img img {
    transform: scale(1.05);
}

.verified-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: var(--color-gold);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.vendor-info {
    padding: 24px;
}

.vendor-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.v-loc i {
    color: var(--color-gold);
    margin-right: 4px;
}

.vendor-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--color-white);
}

.v-rating {
    margin-bottom: 12px;
    color: #ffc107;
    font-size: 0.9rem;
}

.v-rating span {
    color: var(--color-text-muted);
    margin-left: 8px;
    font-size: 0.8rem;
}

.v-desc {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .search-grid {
        grid-template-columns: 1fr;
    }

    .vendors-grid-section .masonry-grid {
        column-count: 2;
    }

    .ai-search-box {
        padding: 24px;
    }
}

/* ========================
   CHATBOT POSITIONING FIX
   ======================== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-toggle {
    width: 60px;
    height: 60px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 2002;
    padding: 0;
}

.whatsapp-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    background: var(--color-gold);
    color: #000;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    max-height: 80vh;
    background: #1a1a1a;
    border-radius: 20px;
    border: 1px solid hsla(42, 70%, 48%, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2001;
}

.whatsapp-widget.open .chatbot-window {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

/* Mobile override — MUST come after desktop chatbot styles to win cascade */
@media (max-width: 576px) {
    .whatsapp-widget {
        right: 10px;
        bottom: 10px;
    }

    .whatsapp-toggle {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .chatbot-window {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 85vh;
        max-height: 85vh;
        border-radius: 16px 16px 0 0;
        transform-origin: bottom center;
    }

    .chatbot-messages {
        padding: 12px;
    }

    .chatbot-input-area {
        padding-bottom: env(safe-area-inset-bottom, 8px);
    }
}

/* Ensure Chatbot Header and Messages look good */
.chatbot-header {
    background: #111;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 16px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chatbot-header h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.chatbot-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #0d0d0d;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    /* Important for flex scrolling */
}

/* ========================
   CUSTOM DROPDOWN STYLES
   ======================== */
.dropdown-wrapper {
    position: relative;
}

.dropdown-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    pointer-events: none;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-wrapper.active .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    border: 1px solid hsla(42, 70%, 48%, 0.3);
    border-radius: 12px;
    margin-top: 8px;
    padding: 0;
    list-style: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    /* Hidden by default */
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-wrapper.active .dropdown-list {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-list li {
    padding: 12px 20px;
    color: #e0e0e0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
    text-align: left;
}

.dropdown-list li:hover {
    background: hsla(42, 70%, 48%, 0.1);
    color: var(--color-gold);
    padding-left: 25px;
}

.dropdown-list li:last-child {
    border-bottom: none;
}

/* Scrollbar for dropdown */
.dropdown-list::-webkit-scrollbar {
    width: 6px;
}


/* Remove default arrow from location input since we use a custom one */
#vendorLocation.ai-input {
    background-image: none;
    padding-right: 40px;
    /* Make room for the arrow */
}