/* ============================================
   GRANDEUR HALL & EVENT CENTER
   Premium Luxury CSS Design System
   ============================================ */

/* ==========================================
   PREMIUM AURORA CURSOR SYSTEM
   ========================================== */

:root {
    --cursor-x: 50%;
    --cursor-y: 50%;

    --cursor-x-smooth: 50%;
    --cursor-y-smooth: 50%;
}

/* ------------------------------------------
   SECTION TRACKER
------------------------------------------ */

.wedding-themes,
.trusted-vendors,
.services,
.about,
.contact,
.testimonials,
.hero
{
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.wedding-themes::before,
.trusted-vendors::before {
    content: "";
    position: absolute;
    inset: -20%;
    pointer-events: none;
    opacity: 0;
    background:
            radial-gradient(
                    500px circle at
                    var(--cursor-x-smooth)
                    var(--cursor-y-smooth),
                    rgba(204, 9, 155, 0.12),
                    transparent 40%
            ),

            radial-gradient(
                    350px circle at
                    var(--cursor-x-smooth)
                    var(--cursor-y-smooth),
                    rgba(58, 111, 247, 0.10),
                    transparent 50%
            ),

            radial-gradient(
                    180px circle at
                    var(--cursor-x-smooth)
                    var(--cursor-y-smooth),
                    rgba(255,255,255,0.05),
                    transparent 60%
            );

    filter: blur(40px);
    transition:
            opacity .35s ease;
    z-index: 0;
}

.wedding-themes:hover::before,
.trusted-vendors:hover::before {
    opacity: 1;
}

/* ------------------------------------------
   CARD TRACKER
------------------------------------------ */

.theme-card,
.vendor-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.theme-card::after,
.vendor-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background:

            radial-gradient(
                    220px circle at
                    var(--cursor-x)
                    var(--cursor-y),
                    rgba(255,255,255,0.10),
                    transparent 55%
            ),

            radial-gradient(
                    300px circle at
                    var(--cursor-x)
                    var(--cursor-y),
                    rgba(204,9,155,0.16),
                    transparent 65%
            ),

            radial-gradient(
                    250px circle at
                    var(--cursor-x)
                    var(--cursor-y),
                    rgba(58,111,247,0.12),
                    transparent 75%
            );

    transition:
            opacity .3s ease;
    z-index: 1;
}

.theme-card:hover::after,
.vendor-card:hover::after {
    opacity: 1;
}

/* ------------------------------------------
   EDGE HIGHLIGHT
------------------------------------------ */

.theme-card::before,
.vendor-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background:
            linear-gradient(
                    135deg,
                    rgba(255,255,255,.12),
                    transparent 35%,
                    transparent 65%,
                    rgba(255,255,255,.08)
            );

    transition: opacity .3s ease;
    z-index: 2;
}

.theme-card:hover::before,
.vendor-card:hover::before {
    opacity: 1;
}

/* ------------------------------------------
   CONTENT LAYER
------------------------------------------ */

.theme-card > *,
.vendor-card > * {
    position: relative;
    z-index: 3;
}

/* CSS Variables */
:root {
    --accent: #CC099B;
    --accent-light: #E94BC0;
    --accent-dark: #A0077A;
    --warm-blue: #3A6FF7;
    --blue-light: #6C92FF;
    --blue-dark: #204ED4;
    --cyan-white: #F5FDFF;
    --white: #FFFFFF;
    --black: #050505;
    --surface-light: #FFFFFF;
    --surface-dark: #101010;
    --text-primary: #FFFFFF;
    --text-secondary: #C9D0D9;
    --text-dark: #121212;
    --border-subtle: rgba(255,255,255,0.1);

    --gradient-signature: linear-gradient(135deg, #CC099B 0%, #3A6FF7 100%);
    --gradient-hero-glow: radial-gradient(circle, rgba(204,9,155,0.45), transparent 70%);
    --gradient-blue-glow: radial-gradient(circle, rgba(58,111,247,0.35), transparent 70%);
    --gradient-dark-luxury: linear-gradient(180deg, #050505, #111111, #050505);

    --glass-bg: rgba(255,255,255,0.08);
    --glass-border: 1px solid rgba(255,255,255,0.1);
    --glass-blur: blur(20px);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-body), serif;
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Dropdown Parent */
.dropdown {
    position: relative;
}

.dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown .fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

/* Shared Dropdown Styling */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
    z-index: 999;

    padding: 1.5rem;

    /* Blend with Hero Gradient */
    background:
            linear-gradient(
                    135deg,
                    rgba(180, 0, 255, 0.15),
                    rgba(0, 119, 255, 0.12)
            ),
            rgba(10, 10, 20, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    box-shadow:
            0 15px 40px rgba(0,0,0,0.45),
            0 0 30px rgba(191, 0, 255, 0.15);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

/* Vendor Grid 6 x 3 */
.vendors-dropdown {
    width: 900px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, auto);
    gap: 12px 24px;
}

/* Wedding Themes Grid 3 x 2 */
.themes-dropdown {
    width: 650px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 14px 28px;
}

/* Links */
.dropdown-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

/* Hover Effect */
.dropdown-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    transform: translateX(5px);
    box-shadow:
            0 0 15px rgba(185, 0, 255, 0.2);
}

@media (min-width: 768px) {
    .nav-container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 60px;
    }
}

@media (max-width: 1024px) {
    .vendors-dropdown,
    .themes-dropdown {
        width: 100%;
        min-width: 320px;
    }

    .vendors-dropdown {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .themes-dropdown {
        grid-template-columns: 1fr;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading), serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    z-index: 1001;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-signature);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 0 20px rgba(204, 9, 155, 0.3);
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
    box-shadow: 0 0 30px rgba(204, 9, 155, 0.5);
    transform: scale(1.05);
}

.logo-text span {
    background: var(--gradient-signature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav Links */
.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-signature);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

.nav-link.active {
    color: var(--accent);
}

/* Nav CTA */
.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: block;
    }
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

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

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

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

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    color: var(--accent);
}

.mobile-cta {
    margin-top: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body), serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-signature);
    color: var(--white);
    border: none;
    box-shadow: 0 0 25px rgba(204, 9, 155, 0.3), 0 0 60px rgba(204, 9, 155, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(204, 9, 155, 0.5), 0 0 80px rgba(204, 9, 155, 0.25);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(204, 9, 155, 0.2);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 14px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 10px;
}

.btn-full {
    width: 100%;
}

/* Ripple Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

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

.mesh-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(204, 9, 155, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(58, 111, 247, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(204, 9, 155, 0.08) 0%, transparent 50%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-hero-glow);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-blue-glow);
    bottom: 10%;
    right: -5%;
    animation-delay: -2s;
}

.glow-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-hero-glow);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -4s;
    opacity: 0.5;
}

@keyframes float {
    0%, 100% { transform: translateY(-15px); }
    50% { transform: translateY(15px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-heading), serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-signature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-stats {
        flex-direction: row;
        gap: 40px;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading), serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-signature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    display: none;
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

@media (min-width: 640px) {
    .stat-divider {
        display: block;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.7;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading), serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 600px;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    min-width: 1600px;
    padding: 120px 0;
    position: relative;
}

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 60px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    will-change: transform;
    transform: translateZ(0);
}

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

.about-image-1 {
    width: 85%;
    aspect-ratio: 3/4;
}

.about-image-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    aspect-ratio: 4/5;
    border: 4px solid var(--black);
}

.about-accent-card {
    position: absolute;
    bottom: 80px;
    left: -20px;
    background: var(--gradient-signature);
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(204, 9, 155, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.accent-number {
    font-family: var(--font-heading), serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.accent-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.4;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.feature-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-counters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

@media (min-width: 800px) {
    .about-counters {
        grid-template-columns: repeat(4, 1fr);
    }
}

.counter-item {
    text-align: center;
}

.counter-number,
.counter-suffix {
    font-family: var(--font-heading), serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-signature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.glow-orb-services {
    width: 500px;
    height: 500px;
    background: var(--gradient-blue-glow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    opacity: 0.6;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(204, 9, 155, 0.35);
    border-color: rgba(204, 9, 155, 0.3);
}

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(204, 9, 155, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-signature);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 0 25px rgba(204, 9, 155, 0.3);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(204, 9, 155, 0.5);
}

.service-title {
    font-family: var(--font-heading), serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 12px;
    color: var(--accent-light);
}

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

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

/* ============================================
   TRUSTED VENDORS SECTION
   ============================================ */

#vendors {
    position: relative;
    overflow: hidden;
}

#vendors .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

#vendors .section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-signature);
    color: #fff;
    font-family: var(--font-body), serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

#vendors .section-title {
    font-family: var(--font-heading), serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.1;
}

#vendors .section-subtitle {
    font-family: var(--font-body), serif;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   VENDORS GRID
   ============================================ */

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (min-width: 640px) {
    .vendors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vendors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   VENDOR CARD
   ============================================ */

.vendor-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.vendor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.vendor-card:hover::before {
    opacity: 1;
}

.vendor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(204, 9, 155, 0.35),
    0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(204, 9, 155, 0.3);
}

.vendor-card > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   VENDOR ICON
   ============================================ */

.vendor-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-signature);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 8px 24px rgba(204, 9, 155, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vendor-card:hover .vendor-icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 12px 32px rgba(204, 9, 155, 0.4);
}

.vendor-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
    fill: currentColor;
}

/* ============================================
   VENDOR TITLE
   ============================================ */

.vendor-title {
    font-family: var(--font-heading), serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

/* ============================================
   VENDOR DESCRIPTION
   ============================================ */

.vendor-desc {
    font-family: var(--font-body), serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* ============================================
   VENDOR LINK
   ============================================ */

.vendor-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body), serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(204, 9, 155, 0.3);
    background: transparent;
    transition: all 0.4s ease;
    margin-top: 0.5rem;
}

.vendor-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.vendor-link:hover {
    background: var(--gradient-signature);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(204, 9, 155, 0.3);
}

.vendor-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */

.vendor-card.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Staggered delays for visual rhythm */
.vendor-card.reveal:nth-child(1).active { transition-delay: 0.05s; }
.vendor-card.reveal:nth-child(2).active { transition-delay: 0.1s; }
.vendor-card.reveal:nth-child(3).active { transition-delay: 0.15s; }
.vendor-card.reveal:nth-child(4).active { transition-delay: 0.2s; }
.vendor-card.reveal:nth-child(5).active { transition-delay: 0.25s; }
.vendor-card.reveal:nth-child(6).active { transition-delay: 0.3s; }
.vendor-card.reveal:nth-child(7).active { transition-delay: 0.35s; }
.vendor-card.reveal:nth-child(8).active { transition-delay: 0.4s; }
.vendor-card.reveal:nth-child(9).active { transition-delay: 0.45s; }
.vendor-card.reveal:nth-child(10).active { transition-delay: 0.5s; }
.vendor-card.reveal:nth-child(11).active { transition-delay: 0.55s; }
.vendor-card.reveal:nth-child(12).active { transition-delay: 0.6s; }
.vendor-card.reveal:nth-child(13).active { transition-delay: 0.65s; }
.vendor-card.reveal:nth-child(14).active { transition-delay: 0.7s; }
.vendor-card.reveal:nth-child(15).active { transition-delay: 0.75s; }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 639px) {
    .vendor-card {
        padding: 2rem 1.5rem;
    }

    .vendor-icon {
        width: 64px;
        height: 64px;
    }

    .vendor-icon svg {
        width: 28px;
        height: 28px;
    }

    .vendor-title {
        font-size: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vendor-card {
        transition: none;
    }

    .vendor-card.reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   WEDDING THEMES - PREMIUM VERSION
   ============================================ */

.wedding-themes {
    padding: 120px 0;
}

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

.theme-card {
    padding: 2.5rem;
}

.theme-icon {
    margin-bottom: 1.5rem;
}

.theme-title {
    margin-bottom: 1rem;
}

.theme-desc {
    margin-bottom: auto;
}

.theme-card .vendor-link {
    margin-top: 2rem;
}

@media(max-width:1023px){
    .themes-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

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

.theme-card{
    position:relative;
    background:var(--glass-bg);
    backdrop-filter:var(--glass-blur);
    -webkit-backdrop-filter:var(--glass-blur);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:2.5rem;
    overflow:hidden;
    transition:all .5s cubic-bezier(.25,.46,.45,.94);
    display:flex;
    flex-direction:column;
    min-height:390px;
}

.theme-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:24px;
    background:
            linear-gradient(
                    135deg,
                    rgba(255,255,255,.05) 0%,
                    rgba(255,255,255,0) 50%,
                    rgba(255,255,255,.05) 100%
            );
    opacity:0;
    transition:.5s ease;
    z-index:0;
}

.theme-card:hover::before{
    opacity:1;
}

.theme-card:hover{
    transform:translateY(-10px);
    border-color:rgba(204,9,155,.3);
    box-shadow:
            0 0 30px rgba(204,9,155,.35),
            0 20px 40px rgba(0,0,0,.2);
}

.theme-card > *{
    position:relative;
    z-index:2;
}

/* ICON */

.theme-icon{
    width:72px;
    height:72px;
    background:var(--gradient-signature);
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.9rem;
    margin-bottom:1.5rem;
    box-shadow: 0 8px 24px rgba(204,9,155,.25);
    transition:.4s ease;
}

.theme-card:hover .theme-icon{
    transform:scale(1.08) rotate(-3deg);
    box-shadow:
            0 12px 32px rgba(204,9,155,.4);
}

/* TITLE */

.theme-title{
    font-family:var(--font-heading), serif;
    font-size:2rem;
    font-weight:700;
    line-height:1.15;
    color:var(--text-primary);
    margin-bottom:1rem;
}

/* DESCRIPTION */

.theme-desc{
    font-family:var(--font-body), sans-serif;
    color:var(--text-primary);
    opacity:.88;
    font-size:1rem;
    line-height:1.85;
    margin-bottom:auto;
}

/* CTA */

.theme-card .vendor-link{
    margin-top:2rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 120px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 280px);
    }

    .gallery-item.large {
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 280px);
    }

    .gallery-item.large {
        grid-row: span 2;
        grid-column: span 1;
    }

    .gallery-item.wide {
        grid-column: span 2;
        grid-row: span 1;
    }
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-tag {
    display: inline-block;
    background: var(--gradient-signature);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    width: fit-content;
}

.gallery-title {
    font-family: var(--font-heading), serif;
    font-size: 1.2rem;
    font-weight: 600;
}

/* ============================================
   CORPORATE SECTION
   ============================================ */
.corporate {
    padding: 120px 0;
    position: relative;
}

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

@media (min-width: 1024px) {
    .corporate-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.corporate-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 24px 0 32px;
}

.corporate-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .corporate-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

.corp-type {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 16px 20px;
    border-radius: 14px;
    transition: var(--transition-smooth);
}

.corp-type:hover {
    border-color: rgba(204, 9, 155, 0.3);
    transform: translateX(5px);
}

.corp-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-signature);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.corp-type span {
    font-weight: 600;
    font-size: 0.95rem;
}

.corporate-visual {
    position: relative;
}

.corp-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.corp-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.corp-stats-panel {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
    .corp-stats-panel {
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
    }
}

.corp-stat {
    text-align: center;
}

.corp-stat-number {
    font-family: var(--font-heading), serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-signature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corp-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ============================================
   ACCOMMODATION SECTION
   ============================================ */
.accommodation {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.glow-orb-accommodation {
    width: 400px;
    height: 400px;
    background: var(--gradient-hero-glow);
    bottom: -10%;
    right: -10%;
    filter: blur(100px);
    opacity: 0.5;
}

.accommodation .container {
    position: relative;
    z-index: 1;
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.room-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(204, 9, 155, 0.35);
    border-color: rgba(204, 9, 155, 0.3);
}

.room-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-signature);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(204, 9, 155, 0.4);
}

.room-badge.luxury {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.room-info {
    padding: 28px;
}

.room-title {
    font-family: var(--font-heading), serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.room-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.room-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.room-price {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.room-price strong {
    font-family: var(--font-heading), serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-signature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accommodation-cta {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 600px;
    width: 100%;
}

.cta-card h3 {
    font-family: var(--font-heading), serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.cta-card p {
    color: var(--text-secondary);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 120px 0;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonial-card {
    min-width: 100%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .testimonial-card {
        min-width: calc(50% - 12px);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        min-width: calc(33.333% - 16px);
    }
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #FFD700;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-style: italic;
}

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

.author-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

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

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.testimonial-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(204, 9, 155, 0.4);
}

.testimonials-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-subtle);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.testimonial-dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 0;
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 24px 0 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gradient-signature);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 0 20px rgba(204, 9, 155, 0.3);
}

.contact-detail h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 40px;
}

.form-title {
    font-family: var(--font-heading), serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
}

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body), serif;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(204, 9, 155, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C9D0D9' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--white);
}

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

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.glow-orb-cta {
    width: 600px;
    height: 600px;
    background: var(--gradient-hero-glow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    opacity: 0.4;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner-content h2 {
    font-family: var(--font-heading), serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-banner-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-banner-buttons {
        flex-direction: row;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 0;
    position: relative;
    background: var(--gradient-dark-luxury);
}

.footer-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-signature);
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 0 20px rgba(204, 9, 155, 0.4);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading), serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

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

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal:nth-child(1) { transition-delay: 0.15s; }
.reveal:nth-child(2) { transition-delay: 0.25s; }
.reveal:nth-child(3) { transition-delay: 0.35s; }
.reveal:nth-child(4) { transition-delay: 0.45s; }
.reveal:nth-child(5) { transition-delay: 0.55s; }

.reveal-left{
    opacity:0;
    transform:translateX(-80px);
    transition:.9s ease;
}

.reveal-right{
    opacity:0;
    transform:translateX(80px);
    transition:.9s ease;
}

.reveal-up{
    opacity:0;
    transform:translateY(60px);
    transition:.9s ease;
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible{
    opacity:1;
    transform:none;
}

.theme-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
}

.theme-card::before{
    content:'';
    position:absolute;
    inset:0;

    background:
            linear-gradient(
                    180deg,
                    transparent,
                    rgba(5,5,5,.9)
            );
}

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

.theme-card:hover{
    box-shadow:
            0 0 40px rgba(204,9,155,.25),
            0 0 70px rgba(58,111,247,.15);
}

.vendors-section,
.wedding-themes{
    position:relative;
    overflow:hidden;
}

.vendors-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;

    background:
            radial-gradient(
                    circle,
                    rgba(204,9,155,.15),
                    transparent 70%
            );

    left:-150px;
    top:20%;
    filter:blur(80px);
}

.wedding-themes::after{
    content:'';
    position:absolute;

    width:500px;
    height:500px;

    background:
            radial-gradient(
                    circle,
                    rgba(58,111,247,.15),
                    transparent 70%
            );

    right:-200px;
    top:40%;

    filter:blur(90px);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 639px) {
    .about-image-2 {
        display: none;
    }

    .about-image-1 {
        width: 100%;
    }

    .about-accent-card {
        left: 16px;
        bottom: 16px;
    }

    .corp-stats-panel {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 24px;
    }
}

/* Counter Performance Optimization */

.about-counters,
.counter-item,
.counter-number,
.stat-number,
.corp-stat-number {
    will-change: contents;
    transform: translateZ(0);
    backface-visibility: hidden;
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: rgba(204, 9, 155, 0.3);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}
