/* ============================
   ANANDESHWAR EVENTS - STYLE.CSS
   Advanced CSS - No Framework
   ============================ */

/* ===== CSS VARIABLES ===== */
:root {
    --gold: #EAB308;
    --gold-dark: #D97706;
    --gold-light: #FEF3C7;
    --gold-gradient: linear-gradient(135deg, #EAB308, #D97706);
    --gold-gradient-soft: linear-gradient(135deg, #FEF9C3, #FEF3C7);
    --dark: #0F172A;
    --dark-2: #1E293B;
    --dark-3: #334155;
    --text: #1E293B;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --bg: #FFFFFF;
    --bg-soft: #F8FAFC;
    --bg-warm: #FEFCE8;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-gold: 0 4px 20px rgba(234, 179, 8, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --nav-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITIES ===== */
.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
}

img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

ul {
    list-style: none;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(234, 179, 8, 0.3);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.highlight {
    color: var(--gold-dark);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 15px 45px rgba(234, 179, 8, 0.6), 0 0 20px rgba(234, 179, 8, 0.3);
    filter: brightness(1.15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
    filter: brightness(1.1);
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-white:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.5);
    background: #ffffff;
    filter: brightness(1.05);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--gold-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.btn-submit:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 45px rgba(234, 179, 8, 0.6), 0 0 20px rgba(234, 179, 8, 0.3);
    filter: brightness(1.1);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-md);
}

.navbar .nav-link,
.navbar .nav-title {
    color: #fff;
    /* Default white for hero */
}

.navbar.scrolled .nav-link,
.navbar.scrolled .nav-title {
    color: var(--dark);
    /* Dark for scrolled state */
}

.navbar.scrolled .btn-book-now,
.navbar.menu-open .btn-book-now {
    box-shadow: var(--shadow-md);
}

.navbar.menu-open .nav-title,
.navbar.menu-open .nav-logo {
    color: var(--dark) !important;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* ===== LOGO IMAGE - NAVBAR ===== */
.nav-logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-slow);
    flex-shrink: 0;
}

.navbar:not(.scrolled):not(.menu-open) .nav-logo-img {
    filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.5));
}

.navbar.scrolled .nav-logo-img {
    filter: none;
}

.nav-brand:hover .nav-logo-img {
    transform: scale(1.07);
    filter: drop-shadow(0 4px 14px rgba(234, 179, 8, 0.65));
}

/* ===== LOGO IMAGE - FOOTER ===== */
.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    /* Dark bg footer — invert the white bg logo to look golden */
    filter: brightness(0) invert(1);
    opacity: 0.88;
}

.footer-logo-wrap:hover .footer-logo-img {
    filter: none;
    opacity: 1;
    transform: scale(1.06);
}


.nav-title-wrap {
    display: flex;
    flex-direction: column;
}

.nav-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold-dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.nav-tagline {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.mobile-only-btn {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-book-now {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-book-now:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.5);
    filter: brightness(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 1001;
    position: relative;
    background: transparent;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 4px;
    transition: var(--transition-slow);
}

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.open span {
    background: var(--dark) !important;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-20px) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    margin-top: var(--nav-height);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(234, 179, 8, 0.15);
    color: var(--gold);
    border: 1px solid rgba(234, 179, 8, 0.4);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    animation: fade-down 0.8s ease both;
}

.hero-title {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 850;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    animation: fade-up 0.9s 0.15s ease both;
}

.hero-highlight {
    color: var(--gold);
    display: block;
    margin: 0;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fade-up 0.9s 0.25s ease both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    animation: fade-up 0.9s 0.35s ease both;
}

.hero-stats {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    background: transparent;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    z-index: 10;
    animation: fade-up 0.9s 0.45s ease both;
}

.stat-item {
    text-align: center;
    padding: 0 10px;
}

.stat-number {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    font-size: 18px;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {

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

    60% {
        transform: translateY(8px);
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes fade-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
    padding: 0 0 100px 0;
    background: #FDFCF0;
    /* Reference cream background */
}

.about-top-banner {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.about-banner-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.about-banner-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
    color: var(--dark);
}

.about-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-box {
    background: #FEFCE8;
    padding: 30px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--gold);
    margin: 35px 0;
    box-shadow: var(--shadow-sm);
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mission-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-dark);
    margin: 0;
}

.mission-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

.why-choose-title {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--dark);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.feature-icon {
    width: 26px;
    height: 26px;
    background: var(--gold-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-images-collage {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collage-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.collage-item:hover img {
    transform: scale(1.05);
}

.collage-item.large {
    height: 420px;
}

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

.collage-item.small {
    height: 240px;
}

.why-us-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 15px rgba(234, 179, 8, 0.2);
    border-color: rgba(234, 179, 8, 0.4);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-gradient);
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-gold);
}

.why-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 96px 0;
    background: var(--bg);
}

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

.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(234, 179, 8, 0.25);
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-icon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.service-body {
    padding: 24px;
}

.service-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-body p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14.5px;
    transition: var(--transition);
    border-bottom: 1.5px solid transparent;
    padding-bottom: 2px;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 15px rgba(234, 179, 8, 0.1);
}

.service-link:hover {
    gap: 12px;
    border-bottom-color: var(--gold-dark);
    transform: scale(1.05);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 96px 0;
    background: var(--bg-soft);
}

.gallery-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg);
    border: 1.5px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.filter-btn.active {
    background: var(--gold-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.gallery-item.hidden {
    display: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 96px 0;
    background: var(--bg);
}

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

.testimonial-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 10px rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 3px;
}

.quote-icon {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.25;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.client-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
}

.client-event {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.client-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gold-dark);
    background: var(--gold-light);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: #fff;
}

.cta-card {
    background: var(--gold-gradient);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(217, 119, 6, 0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.cta-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
}

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

.cta-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.cta-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-cta-white {
    background: #fff;
    color: var(--gold-dark);
    /* Rest of the btn styles match */
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 96px 0;
    background: var(--bg-warm);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.contact-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.map-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 28px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg-soft);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

.form-error {
    font-size: 12.5px;
    color: #ef4444;
    font-weight: 500;
    display: none;
}

.form-error.show {
    display: block;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    color: #166534;
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
}

.form-success.show {
    display: flex;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-logo-svg {
    color: var(--gold);
    transition: var(--transition);
}

.footer-logo-svg path,
.footer-logo-svg rect {
    stroke: currentColor;
}

.footer-logo-wrap:hover .footer-logo-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--gold));
}

.footer-brand-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gold);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before {
    content: '•';
    color: var(--gold);
    font-size: 16px;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-social h5 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    margin-top: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(234, 179, 8, 0.5);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.08);
    }
}

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

/* Tablet */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

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

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

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        background: var(--gold-gradient);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-bottom: none;
        height: 70px;
    }

    .navbar.scrolled {
        background: #ffffff;
    }

    .navbar.menu-open {
        background: #ffffff;
    }

    .navbar .nav-title {
        color: #fff !important;
    }

    .navbar.scrolled .nav-title,
    .navbar.menu-open .nav-title {
        color: var(--dark) !important;
    }

    .navbar .nav-logo {
        background: #fff;
        color: var(--gold-dark);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .navbar.scrolled .nav-logo,
    .navbar.menu-open .nav-logo {
        background: var(--gold-gradient);
        color: #fff;
    }

    .navbar .hamburger span {
        background: #fff;
    }

    .navbar .nav-tagline {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .navbar.scrolled .nav-tagline,
    .navbar.menu-open .nav-tagline {
        color: var(--text-muted) !important;
    }

    :root {
        --nav-height: 70px;
    }

    .nav-logo-img {
        height: 46px;
    }

    .nav-links {
        position: fixed;
        top: calc(var(--nav-height) + 15px);
        left: 20px;
        right: 20px;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 24px;
        gap: 0;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }

    .nav-links.open {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 16px;
        font-weight: 600;
        color: var(--dark) !important;
        text-align: left;
        transition: all 0.2s ease;
        letter-spacing: 0;
    }

    .nav-link:last-of-type {
        border-bottom: none;
    }

    .nav-link:hover {
        padding-left: 8px;
        color: var(--gold) !important;
    }

    .nav-link.active::after {
        display: none;
    }

    .mobile-only-btn {
        display: block;
        width: 100%;
        margin-top: 25px;
    }

    .nav-links .btn-book-now {
        display: flex;
        width: 100%;
        max-width: none;
        justify-content: center;
        margin: 0;
        background: var(--gold-gradient);
        color: #fff;
        padding: 15px 20px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 16px;
        box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
        gap: 8px;
    }

    .nav-links .btn-book-now:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
        filter: brightness(1.1);
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1100;
        /* Higher to stay on top of menu overlay */
    }



    .hero-subtitle {
        font-size: 16px;
        padding: 0 10px;
        margin-bottom: 32px;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 11px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 0.95;
        margin-bottom: 24px;
        padding: 0 15px;
        font-weight: 800;
    }

    .hero-stats {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        padding: 10px;
        width: 100%;
        display: flex;
        justify-content: space-around;
        background: transparent;
        backdrop-filter: none;
        margin-top: 0;
        gap: 0;
        z-index: 10;
    }

    .stat-item {
        padding: 5px;
        border: none !important;
        flex: 1;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 10px;
        color: #fff;
    }

    .stat-divider {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 48px;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        padding: 14px 24px;
    }

    .about {
        padding: 64px 0;
    }

    .about-images {
        height: 300px;
        max-width: 100%;
    }

    .about-grid {
        margin-bottom: 40px;
    }

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

    .services {
        padding: 64px 0;
    }

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

    .gallery {
        padding: 64px 0;
    }

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

    .testimonials {
        padding: 64px 0;
    }

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

    .cta-card {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .cta-content {
        gap: 30px;
    }

    .cta-stats-row {
        gap: 20px;
        padding-top: 30px;
    }

    .cta-stat-num {
        font-size: 24px;
    }

    .cta-stat-label {
        font-size: 12px;
    }

    .contact {
        padding: 64px 0;
    }

    .contact-form-wrap {
        padding: 24px 20px;
    }

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

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

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 8px 16px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 0;
    }

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

    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .about-experience-badge {
        right: 0;
        padding: 14px 16px;
    }

    .exp-num {
        font-size: 24px;
    }
}