* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

:root {
    --gold: #D4AF37;
    --dark: #000000;
    --darker: #0a0a0a;
    --light-gray: #e0e0e0;
    --text-gray: #b0b0b0;
    --border-gold: #6b5f2f;
    --rose-gold: #b76e79;
    --cream: #f5f1e8;
    
    /* Responsive Spacing & Typography */
    --container-max: 1200px;
    --section-padding: 80px;
    --h1-size: clamp(36px, 8vw, 72px);
    --h2-size: clamp(28px, 5vw, 48px);
    --body-size: 16px;
}

@media (min-width: 1600px) {
    :root {
        --container-max: 1500px;
        --section-padding: 120px;
    }
}

@media (min-width: 2500px) { /* TV View */
    :root {
        --container-max: 2200px;
        --section-padding: 180px;
        --h1-size: clamp(60px, 6vw, 120px);
        --h2-size: clamp(40px, 4vw, 80px);
        --body-size: 20px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 90px;
    font-size: var(--body-size);
}

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

/* Header */
header.header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 5px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    border-bottom: none;
    backdrop-filter: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    height: 85px;
    overflow: visible;
}

.header .container {
    width: auto;
    padding: 8px 20px;
}

.header .container-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    height: 100%;
}

.header .container-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.logo-img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    margin: 0;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.logo i {
    color: var(--gold);
    animation: spin 20s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 9999;
}

.badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 65px;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(212, 175, 55, 0.15);
}

.since-badge {
    height: 50px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.since-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.since-text {
    font-size: 8px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
}

.since-year {
    font-size: 16px;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.since-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    position: relative;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
    z-index: 9999;
}

/* Outer decorative circle */
.since-badge::before {
    content: '';
    position: absolute;
    width: 58px;
    height: 58px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    flex-shrink: 0;
}

/* Inner decorative circle */
.since-badge::after {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
    flex-shrink: 0;
}

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

.since-text {
    font-size: 6px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1;
    text-transform: uppercase;
}

.since-year {
    font-size: 16px;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

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

.nav a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    height: 100%;
}

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

.nav-book-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #e8c547 100%);
    color: var(--dark);
    padding: 10px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    height: fit-content;
    white-space: nowrap;
}

.nav-book-btn:hover {
    background: linear-gradient(135deg, #e8c547 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.admin-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.admin-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Hero Section */
.hero {
    margin-top: -85px;
    padding-top: 85px;
    min-height: calc(100vh + 85px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(20, 20, 20, 0.7) 100%);
}

.hero-bg-carousel {
    position: absolute;
    top: -85px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: calc(100% + 85px);
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg-slide:first-child {
    opacity: 1 !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.70) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: var(--h1-size);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: 'Bodoni Moda', serif;
    color: var(--white);
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3);
    word-spacing: 0.1em;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .gold {
    color: var(--gold);
    background: none;
    -webkit-text-fill-color: var(--gold);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #e8c547 100%);
    color: var(--dark);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e8c547 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

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

/* Hero Trust Section Styles */
.hero-trust-section {
    margin-top: 40px;
    text-align: center;
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
}

.stat-icon {
    font-size: 20px;
}

.stat-text {
    color: var(--white);
}

.stat-divider {
    color: var(--gold);
    font-size: 18px;
    opacity: 0.5;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--gold);
}

.exp-icon {
    font-size: 18px;
}

.exp-text {
    color: var(--white);
}

/* Section Styles */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header h2 {
    font-size: var(--h2-size);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: 'Bodoni Moda', serif;
    letter-spacing: 1px;
}

.section-header h2 .gold {
    color: var(--gold);
    font-style: italic;
}

.section-header p {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Services Section */
.services {
    background-color: var(--darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.service-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #6b5f2f 0%, #3a3420 100%);
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 48px;
    background-size: cover !important;
    background-position: center !important;
}

.service-image-2 {
    background: linear-gradient(135deg, #4a5f8f 0%, #2a3f5f 100%);
}

.service-image-3 {
    background: linear-gradient(135deg, #8f4a4a 0%, #5f2a2a 100%);
}

.service-image-4 {
    background: linear-gradient(135deg, #8f4a8f 0%, #5f2a5f 100%);
}

.service-image-5 {
    background: linear-gradient(135deg, #4a8f8f 0%, #2a5f5f 100%);
}

.service-image-6 {
    background: linear-gradient(135deg, #c17a7a 0%, #a05050 100%);
}

.service-image-7 {
    background: linear-gradient(135deg, #7a8fc1 0%, #505fa0 100%);
}

.service-image-8 {
    background: linear-gradient(135deg, #2a2a2a 0%, #555 100%);
}

.service-image-9 {
    background: linear-gradient(135deg, #6ba06b 0%, #4a7a4a 100%);
}

.service-trust-line {
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.why-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
}

.why-card h3 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

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

.why-cta {
    text-align: center;
    padding: 40px 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.why-cta p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    background-color: var(--dark);
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    color: var(--light-gray);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--darker);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

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

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.overlay-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.overlay-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Hide gallery items when filtered */
.gallery-item.hidden {
    display: none;
}

/* ===== WEDDING GALLERY SECTION ===== */

.wedding-gallery {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.wedding-gallery .section-header {
    margin-bottom: 50px;
}

.wedding-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.wedding-gallery .gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--darker);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

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

.wedding-gallery .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.wedding-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.wedding-gallery .overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.wedding-gallery .gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.wedding-gallery .overlay-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* Empty Gallery State */
.empty-gallery-state {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 15px;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    margin: 50px 0;
}

.empty-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.empty-content i {
    font-size: 80px;
    color: rgba(212, 175, 55, 0.4);
}

.empty-content h3 {
    font-size: 32px;
    color: var(--gold);
    margin: 0;
    letter-spacing: 1px;
}

.empty-content p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 400px;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .wedding-gallery {
        padding: 60px 0;
    }

    .wedding-gallery .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .empty-gallery-state {
        padding: 60px 20px;
    }

    .empty-content i {
        font-size: 60px;
    }

    .empty-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .wedding-gallery .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .gallery-item.large {
        grid-column: span 1;
        height: 250px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 25px;
    }

    .why-icon {
        font-size: 40px;
    }

    .why-card h3 {
        font-size: 16px;
    }

    .why-cta p {
        font-size: 16px;
    }
}

/* ===== SIGNATURE MOMENTS SECTION ===== */

.signature-moments {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    overflow: visible;
    width: 100%;
}

.signature-moments .section-header {
    margin-bottom: 50px;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
    width: 100%;
}

.moment-card {
    position: relative;
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.moment-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.moment-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.birthday-cover-stack {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.birthday-cover-main {
    width: 100%;
    height: 100%;
}

.birthday-cover-inset {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 46%;
    height: 46%;
    border-radius: 14px;
    border: 2px solid rgba(212, 175, 55, 0.9);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.birthday-collage {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2px;
    overflow: hidden;
}

.birthday-collage-item {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 0;
}

.birthday-card:hover .birthday-collage {
    transform: scale(1.03);
}

.moment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.moment-card:hover .moment-overlay {
    opacity: 1;
}

.moment-content {
    text-align: center;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.moment-card:hover .moment-content {
    transform: translateY(0);
}

.moment-content h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.moment-content p {
    font-size: 14px;
    color: var(--light-gray);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.moment-content .btn {
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: none;
}

.moment-content .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .moments-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .moment-card {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .signature-moments {
        padding: 60px 0;
    }

    .moments-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }

    .moment-card {
        height: 280px;
    }

    .moment-content h3 {
        font-size: 18px;
    }

    .moment-content p {
        font-size: 12px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .moments-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .moment-card {
        height: 250px;
    }

    .moment-content h3 {
        font-size: 16px;
    }
}

/* Packages Section */
.packages {
    background-color: var(--dark);
    display: block !important;
    visibility: visible !important;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.about {
    background-color: var(--darker);
    display: block !important;
    visibility: visible !important;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.testimonials {
    background-color: var(--dark);
    display: block !important;
    visibility: visible !important;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.contact {
    background-color: var(--darker);
    display: block !important;
    visibility: visible !important;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    clear: both;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    margin: 40px 0;
    max-width: none;
    align-items: stretch;
}

#packagesGrid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* ===== Enhanced Package Cards ===== */
.packages-grid .package-card {
    background: linear-gradient(165deg, rgba(30, 30, 30, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 32px 24px 28px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Shimmer sweep on hover */
.packages-grid .package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(212, 175, 55, 0.06) 50%, transparent 70%);
    transition: left 0.7s ease;
    z-index: 0;
}

.packages-grid .package-card:hover::before {
    left: 100%;
}

/* Gold top-line accent */
.packages-grid .package-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.packages-grid .package-card:hover::after {
    opacity: 1;
}

.packages-grid .package-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Featured (Gold) Card */
.packages-grid .package-card.featured {
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: linear-gradient(165deg, rgba(30, 25, 10, 0.95) 0%, rgba(12, 10, 5, 0.98) 100%);
    box-shadow:
        0 8px 40px rgba(212, 175, 55, 0.15),
        0 0 60px rgba(212, 175, 55, 0.05),
        inset 0 1px 0 rgba(212, 175, 55, 0.15);
    transform: scale(1.03);
    z-index: 2;
}

.packages-grid .package-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow:
        0 25px 70px rgba(212, 175, 55, 0.25),
        0 0 80px rgba(212, 175, 55, 0.08),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

/* "Most Popular" Ribbon */
.package-popular-ribbon {
    position: absolute;
    top: 14px;
    right: -32px;
    background: linear-gradient(135deg, #D4AF37 0%, #f0d060 100%);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
    z-index: 5;
    font-family: 'Poppins', sans-serif;
}

/* Tier Icons */
.package-tier-icon {
    font-size: 42px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-tier-icon i {
    background: linear-gradient(135deg, #D4AF37 0%, #f0d060 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
}

.package-card:hover .package-tier-icon {
    transform: scale(1.15) translateY(-3px);
}

/* Package Header */
.packages-grid .package-header h3,
#packagesGrid .package-header h3 {
    background: linear-gradient(135deg, #D4AF37 0%, #f0d060 50%, #D4AF37 100%);
    color: #000000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
}


/* Badge */
.packages-grid .package-badge {
    color: #ffd700;
    font-size: 13px;
    font-style: italic;
    margin: 6px 0;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 700;
    background: none;
    padding: 0;
    border-radius: 0;
    display: inline;
    border: none;
    text-shadow: none;
    position: relative;
    z-index: 1;
}

.package-badge {
    color: #ffd700;
    font-size: 16px;
    font-style: normal;
    margin: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 900;
    background: #000000;
    padding: 12px 16px;
    border-radius: 25px;
    display: inline-block;
    border: 3px solid #ffd700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Price Pill */
.packages-grid .package-price {
    color: rgba(212, 175, 55, 0.9);
    font-size: 16px;
    font-weight: 700;
    margin-top: 6px;
    font-family: 'Bodoni Moda', serif;
    letter-spacing: 0.2px;
    background: rgba(212, 175, 55, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 1;
}

.package-price {
    color: #ffd700;
    font-size: 14px;
    font-weight: 700;
    margin-top: 6px;
    font-family: 'Bodoni Moda', serif;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Features List */
.packages-grid .package-features {
    list-style: none;
    margin: 16px 0;
    flex-grow: 1;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 1;
}

.package-features {
    list-style: none;
    margin-bottom: 12px;
    flex-grow: 1;
}

.packages-grid .package-features li,
#packagesGrid .package-features li {
    color: #d4d4d4;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: color 0.3s ease;
}

.packages-grid .package-features li:last-child {
    border-bottom: none;
}

.packages-grid .package-card:hover .package-features li {
    color: #e8e8e8;
}

.packages-grid .package-features i,
#packagesGrid .package-features i {
    color: var(--gold);
    font-size: 10px;
    min-width: 14px;
    text-align: center;
}

.package-features i {
    color: var(--gold);
    font-size: 10px;
    min-width: 10px;
}

/* Select Button Enhancement */
.packages-grid .package-card .btn-outline {
    margin-top: auto;
    padding: 12px 32px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    width: 80%;
}

.packages-grid .package-card .btn-outline:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #f0d060 100%);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

/* Questionnaire modal cards */
.package-card {
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 16px 14px;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

#packagesGrid .package-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    padding: 20px 16px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 200px;
    height: 120px;
    flex: none;
    text-align: center;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

#packagesGrid .package-card.featured {
    border: 3px solid var(--gold);
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.0);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.package-card.featured:hover {
    transform: scale(1.0) translateY(-5px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.35);
}

@media (max-width: 1440px) {
    #packagesGrid {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
}

@media (max-width: 1024px) {
    #packagesGrid {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    #packagesGrid {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card {
        padding: 25px 15px;
    }
}

/* About Section */
.about {
    background: linear-gradient(145deg, #080808 0%, #111111 55%, #090909 100%);
}

.about-content {
    display: block;
}

.about-text {
    min-height: auto;
}

.about-text::after {
    content: '';
    display: table;
    clear: both;
}

.about-text h2 {
    font-size: 50px;
    margin-bottom: 22px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text h2 .gold {
    color: var(--gold);
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 2px;
    font-style: italic;
}

.about-text p {
    color: rgba(224, 224, 224, 0.86);
    margin-bottom: 14px;
    line-height: 1.75;
    font-size: 16px;
    max-width: none;
}

.about-intro {
    margin: 0 auto 18px;
    padding-bottom: 18px;
    border-bottom: none;
    text-align: center;
    max-width: 860px;
}

.about-intro::before,
.about-focus::before,
.about-journey::before {
    content: none;
}

.about-intro p:first-child {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 700;
    text-wrap: pretty;
    text-shadow: 0 2px 14px rgba(212, 175, 55, 0.18);
}

.about-intro p {
    text-align: center;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.about-focus,
.about-journey {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0 0 0 18px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    max-width: none;
    margin-left: 0;
    margin-right: auto;
    border-left: 1px solid rgba(212, 175, 55, 0.28);
}

.about-focus {
    margin-top: 22px;
}

.about-focus h3,
.about-journey h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
    padding-bottom: 10px;
    border-bottom: none;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.about-point {
    position: relative;
    padding: 2px 0 10px 18px;
    border-bottom: none;
    border-radius: 0;
    background: transparent;
}

.about-point:last-child {
    border-bottom: none;
}

.about-point::before {
    content: '';
    position: absolute;
    top: 17px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.about-point p {
    margin-bottom: 4px;
}

.about-point p strong {
    color: #f0cd5c;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.about-point p:last-child,
.about-journey p {
    color: rgba(224, 224, 224, 0.78);
    font-size: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
    max-width: 980px;
    margin-left: 0;
    margin-right: auto;
}

.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 10px;
    min-width: 0;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: linear-gradient(165deg, rgba(18, 18, 18, 0.95) 0%, rgba(8, 8, 8, 0.98) 100%);
}

.stat i {
    font-size: 24px;
    color: var(--gold);
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    color: rgba(224, 224, 224, 0.82);
    font-size: 10px;
    margin-top: 2px;
}

.about-image {
    float: right;
    width: min(46%, 520px);
    margin: 10px 0 18px 30px;
    aspect-ratio: 1 / 1.05;
    height: auto;
    background: linear-gradient(135deg, #8f6f3f 0%, #5a4a2a 100%);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), 0 0 24px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.6);
    top: 0;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .about-content {
        display: block;
    }

    .about-text h2 {
        font-size: 38px;
        text-align: center;
    }

    .about-intro {
        text-align: center;
        max-width: 100%;
    }

    .about-intro p:first-child {
        font-size: 32px;
    }

    .about-focus h3,
    .about-journey h3 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-image {
        float: none;
        width: 100%;
        max-width: 500px;
        margin: 14px auto 0;
    }

    .about-point {
        padding-left: 16px;
    }

    .about-point p strong {
        font-size: 18px;
    }
}

@media (max-width: 520px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-intro p:first-child {
        font-size: 28px;
    }

    .about-focus h3,
    .about-journey h3 {
        font-size: 22px;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.stars i {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: white;
    font-size: 15px;
}

.testimonial-author span {
    color: var(--gold);
    font-size: 13px;
}

/* Contact Section */
.contact {
    background-color: var(--darker);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--gold);
    letter-spacing: 1px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.6) 0%, rgba(15, 15, 15, 0.7) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 12px 15px;
    color: white;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(212, 175, 55, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background-color: var(--darker);
    color: white;
}

.contact-form button {
    margin-top: 10px;
    padding: 15px;
    font-size: 16px;
}

/* Consultation Modal Styles (Different from Booking Modal) */
.consultation-modal {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.consultation-content {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.98) 0%, rgba(40, 40, 40, 0.98) 100%);
    border: 2px solid rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2), 0 0 30px rgba(212, 175, 55, 0.1);
}

.consultation-form {
    margin: 0;
    padding: 0;
}

.consultation-form h2 {
    color: var(--gold);
    margin-bottom: 8px;
    text-align: center;
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.form-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 20px;
    font-style: italic;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(50, 50, 50, 0.6);
    color: var(--light-gray);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: rgba(200, 200, 200, 0.6);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(50, 50, 50, 0.9);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-consultation {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    background: linear-gradient(135deg, #d4a537 0%, #c9962e 100%);
    color: var(--dark);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-consultation:hover {
    background: linear-gradient(135deg, #e8c547 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}


/* Modal Styles */
.modal {
    display: none !important;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in;
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(5px);
    }
}

.modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.75) 0%, rgba(10, 10, 10, 0.85) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    width: 85%;
    max-width: 400px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
    animation: slideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    color: var(--gold);
    float: right;
    font-size: 32px;
    font-weight: bold;
    padding: 8px 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-close:hover,
.modal-close:focus {
    color: white;
    text-shadow: 0 0 15px var(--gold);
    transform: rotate(90deg) scale(1.1);
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}


.modal-form-wrapper {
    padding: 12px;
}

.modal-form-wrapper h2 {
    color: var(--gold);
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 85%;
        max-width: 350px;
    }

    .modal-form-wrapper {
        padding: 12px;
    }

    .modal-form-wrapper h2 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .modal-close {
        font-size: 22px;
        padding: 3px 10px;
    }

    #modalContactForm input,
    #modalContactForm select,
    #modalContactForm textarea {
        padding: 7px 8px !important;
        font-size: 11px !important;
    }

    #modalContactForm button {
        padding: 8px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 90%;
        max-width: 320px;
        border-radius: 8px;
        max-height: 85vh;
        overflow-y: auto;
    }

    .modal-form-wrapper {
        padding: 10px;
    }

    .modal-form-wrapper h2 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .modal-close {
        font-size: 20px;
        padding: 2px 8px;
    }

    #modalContactForm {
        gap: 6px !important;
    }

    #modalContactForm input,
    #modalContactForm select,
    #modalContactForm textarea {
        padding: 6px 8px !important;
        font-size: 10px !important;
    }

    #modalContactForm button {
        margin-top: 3px !important;
        padding: 8px !important;
        font-size: 11px !important;
    }
}

/* Modal Form Specific Styling */
#modalContactForm {
    gap: 8px !important;
}

#modalContactForm input,
#modalContactForm select,
#modalContactForm textarea {
    padding: 8px 10px !important;
    font-size: 12px !important;
}

#modalContactForm button {
    margin-top: 5px !important;
    padding: 10px !important;
    font-size: 13px !important;
}

/* Consultation Form Responsive Styles */
#consultationForm {
    gap: 10px !important;
}

#consultationForm input,
#consultationForm select,
#consultationForm textarea {
    padding: 10px 12px !important;
    font-size: 13px !important;
    margin-bottom: 12px !important;
}

.btn-consultation {
    padding: 12px !important;
    font-size: 13px !important;
    margin-top: 8px !important;
}

@media (max-width: 480px) {

    #consultationForm input,
    #consultationForm select,
    #consultationForm textarea {
        padding: 8px 10px !important;
        font-size: 12px !important;
    }

    .btn-consultation {
        padding: 10px !important;
        font-size: 12px !important;
    }
}

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

.info-item {
    display: flex;
    gap: 20px;
}

.info-item i {
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.info-item h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 16px;
}

.info-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.info-item a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    text-decoration: underline;
}

.social-links h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--dark);
}

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

/* Footer */
.footer {
    background-color: #0f0f0f;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-gray);
}

/* Cute WhatsApp Robot Button */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.cute-robot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Robot Message */
.robot-message {
    animation: message-float 2s ease-in-out infinite;
}

.message-box {
    background: white;
    color: #25d366;
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
}

.message-box::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 18px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.message-text {
    margin: 0;
    line-height: 1.3;
}

.robot-wrapper {
    position: relative;
    width: 90px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Robot Head */
.robot-head {
    width: 100px;
    height: 110px;
    background: linear-gradient(135deg, #e0e0e0 0%, #b0b0b0 100%);
    border-radius: 50% 50% 55% 55% / 50% 50% 45% 45%;
    position: relative;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.32), inset -4px -4px 14px rgba(0, 0, 0, 0.18);
    margin-bottom: -12px;
}

.head-top {
    width: 100px;
    height: 40px;
    background: linear-gradient(180deg, #f5f5f5 0%, #d0d0d0 100%);
    border-radius: 50% 50% 0 0;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: inset 0 3px 10px rgba(255, 255, 255, 0.4);
}

/* Screen Display */
.head-screen {
    width: 90px;
    height: 82px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 25px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 4px 14px rgba(0, 0, 0, 0.95), 0 8px 18px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

/* Eyes - Big happy curved eyes */
.eye {
    width: 28px;
    height: 26px;
    background: #00d4ff;
    border-radius: 50% 50% 35% 35%;
    position: absolute;
    box-shadow: 0 0 18px #00d4ff;
    animation: cute-blink 3s ease-in-out infinite;
}

.left-eye {
    left: 10px;
    top: 8px;
}

.right-eye {
    right: 10px;
    top: 8px;
}

/* Big Happy Smile */
.smile {
    width: 48px;
    height: 26px;
    background: #00d4ff;
    border-radius: 0 0 48px 48px;
    position: absolute;
    bottom: 8px;
    box-shadow: 0 0 16px #00d4ff;
    animation: smile-pulse 2s ease-in-out infinite;
}

/* Ears - Side pieces like headphones */
.ear {
    width: 32px;
    height: 42px;
    background: linear-gradient(90deg, #d8d8d8 0%, #a8a8b8 100%);
    border-radius: 50%;
    position: absolute;
    top: 45px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset -4px 0 8px rgba(0, 0, 0, 0.18);
}

.left-ear {
    left: -12px;
    animation: ear-float 2.5s ease-in-out infinite;
}

.right-ear {
    right: -12px;
    animation: ear-float 2.5s ease-in-out infinite 0.2s;
}

/* Robot Body */
.robot-body {
    width: 100px;
    height: 98px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 45% 45%;
    position: relative;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), inset -4px -4px 12px rgba(0, 0, 0, 0.12);
    margin-top: -14px;
    animation: body-float 3s ease-in-out infinite;
}

.body-inner {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 35% 35%, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 50% 50% 50% 50% / 60% 60% 45% 45%;
}

/* Arms */
.arm {
    width: 32px;
    height: 46px;
    background: linear-gradient(90deg, #f0f0f0 0%, #d8d8d8 100%);
    border-radius: 16px;
    position: absolute;
    top: 60px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24), inset -3px 0 6px rgba(0, 0, 0, 0.14);
}

.left-arm {
    left: -18px;
    animation: wave-left 1.8s ease-in-out infinite;
    transform-origin: center 10px;
}

.right-arm {
    right: -18px;
    animation: wave-right 1.8s ease-in-out infinite 0.3s;
    transform-origin: center 10px;
}

/* Hands */
.hand {
    width: 38px;
    height: 42px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    border-radius: 50% 50% 65% 50%;
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.32), inset -3px -3px 6px rgba(0, 0, 0, 0.14);
}

.hand::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 6px;
    background: linear-gradient(90deg, #f5f5f5 0%, #ebebeb 50%, #f5f5f5 100%);
    border-radius: 50%;
    opacity: 0.75;
}

.hand::after {
    content: '';
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 5px;
    background: linear-gradient(90deg, #f0f0f0 0%, #e8e8e8 50%, #f0f0f0 100%);
    border-radius: 50%;
    opacity: 0.75;
}

.left-hand {
    animation: hand-wave-left 1.8s ease-in-out infinite;
}

.right-hand {
    animation: hand-wave-right 1.8s ease-in-out infinite 0.3s;
}

/* WhatsApp Badge */
.whatsapp-badge-cute {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
    animation: bounce-badge 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    position: relative;
    z-index: 10;
}

.whatsapp-badge-cute i {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Animations */
@keyframes message-float {

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

    50% {
        opacity: 0.8;
        transform: translateY(-6px);
    }
}

@keyframes cute-appear {
    0% {
        opacity: 0;
        transform: scale(0.5) rotateZ(-30deg);
    }

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

@keyframes cute-blink {

    0%,
    80%,
    100% {
        height: 16px;
        background: #00d4ff;
    }

    40% {
        height: 3px;
        background: #00d4ff;
    }
}

@keyframes smile-pulse {

    0%,
    100% {
        height: 16px;
        opacity: 1;
    }

    50% {
        height: 18px;
        opacity: 0.8;
    }
}

@keyframes ear-float {

    0%,
    100% {
        transform: translateY(0px) rotateZ(0deg);
    }

    25% {
        transform: translateY(-4px) rotateZ(-5deg);
    }

    75% {
        transform: translateY(2px) rotateZ(5deg);
    }
}

@keyframes body-float {

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

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

@keyframes wave-left {

    0%,
    100% {
        transform: rotateZ(-20deg);
    }

    25% {
        transform: rotateZ(-50deg);
    }

    50% {
        transform: rotateZ(10deg);
    }

    75% {
        transform: rotateZ(-45deg);
    }
}

@keyframes wave-right {

    0%,
    100% {
        transform: rotateZ(20deg);
    }

    25% {
        transform: rotateZ(50deg);
    }

    50% {
        transform: rotateZ(-10deg);
    }

    75% {
        transform: rotateZ(45deg);
    }
}

@keyframes hand-wave-left {

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

    25% {
        transform: translateX(-50%) rotateZ(-20deg);
    }

    50% {
        transform: translateX(-50%) rotateZ(15deg);
    }

    75% {
        transform: translateX(-50%) rotateZ(-15deg);
    }
}

@keyframes hand-wave-right {

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

    25% {
        transform: translateX(-50%) rotateZ(20deg);
    }

    50% {
        transform: translateX(-50%) rotateZ(-15deg);
    }

    75% {
        transform: translateX(-50%) rotateZ(15deg);
    }
}

@keyframes bounce-badge {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
    }

    50% {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.7);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
        font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    header.header {
        height: 75px;
        overflow: visible;
    }

    .logo-img {
        max-height: 90px;
        margin: 0;
    }

    body {
        padding-top: 82px;
    }

    .hero {
        margin-top: -75px;
        padding-top: 75px;
        min-height: calc(100vh + 75px);
    }

    .hero-bg-carousel {
        top: -75px;
        height: calc(100% + 75px);
    }

    .hamburger {
        display: none;
    }

    .btn {
        padding: 14px 32px;
        font-size: 14px;
    }

    .nav {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        background-color: transparent;
        flex-direction: row;
        gap: 15px;
        padding: 0;
        max-height: none;
        overflow: visible;
        transition: none;
        z-index: auto;
        visibility: visible;
        opacity: 1;
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
    }

    .nav.active {
        max-height: none;
        padding: 0;
        visibility: visible;
        opacity: 1;
    }

    .nav a {
        padding: 0;
        border-bottom: none;
        font-size: 12px;
        display: inline-block;
        white-space: nowrap;
    }

    .nav a:hover {
        background-color: transparent;
    }

    .nav-book-btn {
        padding: 8px 16px;
        font-size: 12px;
        margin: 0;
        border-radius: 50px;
    }

    .logo {
        font-size: 16px;
    }

    .badge-wrapper {
        padding: 6px;
    }

    .since-badge {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .since-badge .since-text {
        font-size: 5px;
    }

    .since-badge .since-year {
        font-size: 14px;
    }

    .hero-title {
        font-size: 36px;
        font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: 18px;
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    section {
        padding: 50px 0;
    }

    .robot-head {
        width: 88px;
        height: 100px;
    }

    .head-screen {
        width: 80px;
        height: 74px;
    }

    .robot-body {
        width: 88px;
        height: 88px;
    }

    .arm {
        width: 28px;
        height: 41px;
    }

    .hand {
        width: 34px;
        height: 38px;
    }

    .message-box {
        padding: 10px 14px;
        font-size: 11px;
    }

    .whatsapp-badge-cute {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .header .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav {
        width: 100%;
        gap: 10px;
        font-size: 11px;
    }

    .badge-wrapper {
        padding: 4px;
    }

    .since-badge {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .since-badge .since-text {
        font-size: 4px;
    }

    .since-badge .since-year {
        font-size: 11px;
    }

    .hero {
        margin-top: -75px;
        padding-top: 75px;
        min-height: calc(100vh + 75px);
    }

    .hero-title {
        font-size: 22px;
        font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 800;
    }

    .hero-buttons {
        width: 100%;
        max-width: 110px;
        margin: 0 auto;
        gap: 0;
        display: flex;
        justify-content: center;
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px;
        width: 100%;
        gap: 4px;
    }

    .btn i {
        font-size: 10px;
    }

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

    .hero {
        margin-top: -75px;
        padding-top: 75px;
        min-height: calc(100vh + 75px);
    }

    .section-header h2 {
        font-size: 24px;
    }

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

    .whatsapp-btn {
        bottom: 18px;
        right: 18px;
    }

    .robot-head {
        width: 76px;
        height: 86px;
    }

    .head-screen {
        width: 68px;
        height: 64px;
    }

    .robot-body {
        width: 76px;
        height: 76px;
    }

    .eye {
        width: 20px;
        height: 18px;
    }

    .smile {
        width: 36px;
        height: 20px;
    }

    .ear {
        width: 24px;
        height: 32px;
    }

    .arm {
        width: 24px;
        height: 38px;
    }

    .hand {
        width: 30px;
        height: 35px;
    }

    .message-box {
        padding: 8px 12px;
        font-size: 10px;
    }

    .whatsapp-badge-cute {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
}

/* Photos Modal Styles */
.photos-modal {
    display: none;
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.photos-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    max-width: 1200px;
    width: 95%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
    font-weight: bold;
    color: #d4af37;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    background: none;
    border: none;
    padding: 0;
}

.modal-close:hover {
    color: #e8c547;
    transform: scale(1.1);
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.modal-gallery-item {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.modal-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        max-height: 95vh;
    }

    .modal-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }

    .modal-gallery-item {
        height: 120px;
    }

    .modal-close {
        font-size: 30px;
        right: 10px;
        top: 10px;
    }
}

/* Success Modal Styles */
.success-modal {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.success-content {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(25, 25, 25, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 20px;
    width: 85%;
    max-width: 450px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.2);
    animation: successSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.success-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4caf50, #81c784, transparent);
    animation: successGlow 2s ease-in-out infinite;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

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

@keyframes successGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(76, 175, 80, 0.5);
    }
}

.success-icon {
    font-size: 70px;
    color: var(--gold);
    margin-bottom: 25px;
    animation: successCheckmark 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

@keyframes successCheckmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.15) rotate(10deg);
    }

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

.success-content h2 {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
}

.success-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.success-content .btn {
    min-width: 150px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.success-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* ===== QUESTIONNAIRE MODAL STYLING ===== */

.questionnaire-modal {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.99) 100%);
    backdrop-filter: blur(10px);
}

.questionnaire-content {
    background: linear-gradient(165deg, rgba(15, 15, 15, 0.75) 0%, rgba(5, 5, 5, 0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 32px;
    width: 90%;
    max-width: 600px;
    padding: 55px 45px;
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.95),
        0 0 80px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: slideInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.questionnaire-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    z-index: 1;
}

.questionnaire-content h2 {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 8px;
    letter-spacing: 1.2px;
    font-weight: 800;
    text-align: center;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 2;
}

.questionnaire-content .form-subtitle {
    color: rgba(224, 224, 224, 0.75);
    font-size: 15px;
    margin-bottom: 35px;
    letter-spacing: 0.6px;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.questionnaire-step {
    display: none;
    animation: fadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.questionnaire-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Guest Options */
.questionnaire-section {
    margin-bottom: 35px;
}

.questionnaire-section label {
    display: block;
    color: rgba(224, 224, 224, 0.9);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 18px;
    letter-spacing: 0.6px;
    position: relative;
    z-index: 2;
}

.guest-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.guest-btn {
    padding: 22px 16px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0.01) 100%);
    color: rgba(224, 224, 224, 0.85);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.guest-btn:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.2);
}

.guest-btn.active {
    background: linear-gradient(135deg, #D4AF37 0%, #f0d060 100%);
    border-color: #D4AF37;
    color: #000000;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35);
    font-weight: 800;
}

.guest-icon {
    font-size: 24px;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.select-all-label {
    grid-column: 1 / -1 !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.4) !important;
    font-weight: 700 !important;
    color: var(--gold) !important;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(212, 175, 55, 0.01) 100%);
    font-weight: 600;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    letter-spacing: 0.4px;
    text-align: left;
    line-height: 1.5;
    color: rgba(224, 224, 224, 0.85);
    position: relative;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.checkbox-group label:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.04) 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.1);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group input[type="checkbox"]:checked+label {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

/* Budget Range Slider */
.budget-range-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.budget-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.5));
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 4px;
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #f0d060 100%);
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.budget-slider::-webkit-slider-thumb:hover {
    width: 30px;
    height: 30px;
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.7);
}

.budget-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #f0d060 100%);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.budget-slider::-moz-range-thumb:hover {
    width: 30px;
    height: 30px;
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.7);
}

.budget-display {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.budget-label {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.08) 100%);
    color: var(--gold);
    padding: 14px 28px;
    border-radius: 24px;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Bodoni Moda', serif;
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    letter-spacing: 0.8px;
}

.budget-scale {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 12px;
    padding: 0 5px;
    margin-bottom: 15px;
    margin-top: -10px;
}

/* Budget Options */
.budget-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.budget-btn {
    padding: 25px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
    color: var(--light-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.budget-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.budget-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.budget-icon {
    font-size: 32px;
    margin-bottom: 5px;
}

.budget-btn h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.budget-btn p {
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0 0 0;
    opacity: 0.9;
}

.budget-btn small {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
}

.budget-btn.active h4,
.budget-btn.active p,
.budget-btn.active small {
    color: var(--dark);
}


/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
    padding: 0;
    align-items: stretch;
    width: 100%;
}

.package-card {
    background: linear-gradient(165deg, rgba(25, 22, 10, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 550px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.package-card:hover {
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
}

.package-card.selected {
    background: linear-gradient(165deg, rgba(40, 35, 15, 0.7) 0%, rgba(15, 12, 5, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.9);
    box-shadow: 
        0 30px 80px rgba(212, 175, 55, 0.3),
        0 0 50px rgba(212, 175, 55, 0.15),
        inset 0 1px 2px rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    opacity: 0.8;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.package-card.selected::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
}

/* Package Badge Card removed */

.package-card h3 {
    font-size: 26px;
    color: var(--gold);
    margin: 10px 0 8px;
    letter-spacing: 0.8px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 6px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
}

.package-card p {
    color: rgba(224, 224, 224, 0.7);
    font-size: 13px;
    margin: 10px 0 14px 0;
    line-height: 1.5;
    letter-spacing: 0.3px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    font-size: 13px;
    flex-grow: 1;
    width: 100%;
    padding: 0 10px;
}


.package-price-card {
    font-size: 16px;
    color: var(--gold);
    font-weight: 800;
    margin: 12px 0;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    letter-spacing: 0.6px;
    font-family: 'Bodoni Moda', serif;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.12);
}

.select-package-btn {
    width: 100%;
    margin-top: 12px;
    padding: 10px 14px;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.4px;
    position: relative;
    z-index: 2;
}

.package-card.selected .select-package-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #f0d060 100%);
    color: #000000;
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.select-package-btn:hover {
    border-color: rgba(212, 175, 55, 0.7);
    background: rgba(212, 175, 55, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.2);
}

/* Scoped Questionnaire Card Width Fix */
#packagesGrid .package-card {
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 35px;
    padding-bottom: 25px;
    height: auto;
    min-height: auto;
}

#packagesGrid .package-features li {
    margin-bottom: 5px;
    padding: 2px 0;
}
.recommended-package {
    background: linear-gradient(165deg, rgba(30, 25, 10, 0.8) 0%, rgba(15, 12, 5, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 22px;
    padding: 38px 32px;
    margin: 35px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(212, 175, 55, 0.2),
        0 0 40px rgba(212, 175, 55, 0.08),
        inset 0 1px 0 rgba(212, 175, 55, 0.25);
}

.recommended-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
    z-index: 1;
}

.recommended-package::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    z-index: 1;
}

.package-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #f0d060 100%);
    color: #000000;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.3px;
    margin-bottom: 24px;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.45),
        0 0 15px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
}

.recommended-package h3 {
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
}

.recommended-package p {
    color: rgba(224, 224, 224, 0.8);
    font-size: 16px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

#packageFeatures {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#packageFeatures li {
    padding: 12px 0;
    color: rgba(224, 224, 224, 0.75);
    font-size: 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

#packageFeatures li:last-child {
    border-bottom: none;
}

.package-price {
    font-size: 20px;
    color: var(--gold);
    font-weight: 800;
    margin: 24px 0;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    letter-spacing: 0.8px;
    font-family: 'Bodoni Moda', serif;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.15);
}

/* Buttons Container */
.questionnaire-content .whatsapp-connect {
    background: linear-gradient(135deg, #25d366 0%, #20ba58 100%);
    border: 2px solid rgba(37, 211, 102, 0.3);
    color: white;
    font-weight: 800;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
    font-size: 15px;
}

.questionnaire-content .whatsapp-connect:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(37, 211, 102, 0.4);
    border-color: rgba(37, 211, 102, 0.6);
}

.questionnaire-content .btn {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.questionnaire-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .questionnaire-content {
        width: 95%;
        padding: 40px 25px;
    }

    .questionnaire-content h2 {
        font-size: 22px;
    }

    .guest-options {
        grid-template-columns: 1fr 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .recommended-package {
        padding: 20px 15px;
    }

    .recommended-package h3 {
        font-size: 24px;
    }
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none !important;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in;
    overflow-y: auto;
    pointer-events: none !important;
    visibility: hidden !important;
}

.gallery-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: auto !important;
    visibility: visible !important;
}

.gallery-modal-content {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(25, 25, 25, 0.98) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    width: 95%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.2);
    animation: slideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    padding: 50px 40px 40px 40px;
}

.gallery-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gallery-modal-content .modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10001;
    font-size: 32px;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-modal-content .modal-close:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: rotate(90deg) scale(1.1);
}

.gallery-tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
    position: relative;
    z-index: 1;
}

.gallery-tab-content.active {
    display: block;
}

.gallery-tab-content .gallery-grid {
    width: 100%;
    position: relative;
}

.gallery-tab-content .section-header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

.gallery-tab-content .section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.gallery-tab-content .section-header p {
    font-size: 16px;
    color: var(--text-gray);
}

.gallery-modal .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 30px;
}

.gallery-modal .gallery-item {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background-size: cover;
    background-position: center;
    position: relative;
}

.gallery-modal .gallery-item:hover {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

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

.empty-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    text-align: center;
}

.empty-content i {
    font-size: 80px;
    color: rgba(212, 175, 55, 0.4);
    margin-bottom: 30px;
}

.empty-content h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 15px;
}

.empty-content p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 500px;
}

.gallery-modal-content>div:last-child {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 10;
}

.gallery-modal-content .btn-secondary {
    background: rgba(212, 175, 55, 0.2) !important;
    border: 2px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.gallery-modal-content .btn-secondary:hover {
    background: var(--gold) !important;
    color: var(--dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3) !important;
}

@media (max-width: 768px) {
    .gallery-modal.show {
        padding: 15px;
        align-items: flex-start;
    }

    .gallery-modal-content {
        width: 95%;
        padding: 35px 20px 25px 20px;
        max-height: 90vh;
        overflow-y: auto;
        margin-top: 20px;
    }

    .gallery-modal-content .modal-close {
        top: 15px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 28px !important;
    }

    .gallery-modal .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        margin-bottom: 30px;
    }

    .gallery-modal .gallery-item {
        height: 150px;
    }

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

    .gallery-tab-content .section-header h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .gallery-tab-content .section-header p {
        font-size: 13px;
    }

    .empty-content {
        padding: 50px 15px;
    }

    .empty-content i {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .empty-content h3 {
        font-size: 20px;
    }

    .empty-content p {
        font-size: 14px;
    }
}

/* Packages Grid Responsiveness */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===== DYNAMIC GALLERY & LIGHTBOX STYLES ===== */

.gallery-modal-content {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 95%;
    max-width: 1400px;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.gallery-item-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

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

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-modal img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: white;
    font-size: 50px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-info {
    margin-top: 30px;
    text-align: center;
    color: white;
    max-width: 600px;
}

#lightboxCaption {
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
}

#lightboxCounter {
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-modal-content {
        padding: 40px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .lightbox-prev, .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid transparent;
    background: transparent;
    color: #a0a0a0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.filter-btn:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.filter-btn.active {
    background: #d4af37;
    color: #0a0a0a;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .gallery-filters {
        gap: 8px;
        padding: 5px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}
/* Enhanced About Section */
.about {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start;
}

.about-text-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.about-description p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.about-visual-content {
    position: relative;
}

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

.about-image-wrapper::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 80%;
    border: 2px solid var(--gold);
    border-radius: 20px;
    z-index: 1;
}

.main-about-img {
    height: 550px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.experience-floating-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: linear-gradient(135deg, #D4AF37 0%, #f0d060 100%);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    color: #000;
}

.experience-floating-badge i {
    font-size: 32px;
}

.experience-floating-badge span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.experience-floating-badge p {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text-content .section-title {
        text-align: center;
    }
    
    .about-tagline {
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .about-image-wrapper {
        padding: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-image-wrapper::before {
        display: none;
    }
}

/* About Highlights */
.about-highlights {
    margin-top: 40px;
}

.about-highlights h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 25px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Journey Box */
.about-journey-box {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 20px;
    border-left: 4px solid var(--gold);
}

.about-journey-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-journey-box p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.journey-goal {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.journey-goal p {
    margin: 0;
    font-weight: 600;
    color: var(--gold);
}

/* Impact Grid */
.about-impact {
    margin-top: 40px;
}

.about-impact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.impact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.impact-icon {
    font-size: 24px;
}

.impact-info {
    display: flex;
    flex-direction: column;
}

.impact-number {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.impact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== ENHANCED RESPONSIVE POLISH (MOBILE, TAB, DESKTOP, TV) ===== */

/* Tablet & Small Desktop (769px to 1199px) */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .hero-title { font-size: clamp(40px, 7vw, 60px); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual-content { order: -1; }
    .moments-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile Refinements (up to 768px) */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .header { height: 75px; background: rgba(10, 10, 10, 0.98) !important; }
    .logo-img { max-height: 60px; }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 9998;
        gap: 0;
        padding: 80px 0;
    }
    
    .nav.active { left: 0; }
    
    .nav a {
        font-size: 24px;
        font-family: 'Playfair Display', serif;
        color: white;
        width: 100%;
        height: auto;
        padding: 20px 0;
        display: flex;
        justify-content: center !important;
        align-items: center;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .nav.active a {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Staggered animation for nav links */
    .nav.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav.active a:nth-child(2) { transition-delay: 0.2s; }
    .nav.active a:nth-child(3) { transition-delay: 0.3s; }
    .nav.active a:nth-child(4) { transition-delay: 0.4s; }
    .nav.active a:nth-child(5) { transition-delay: 0.5s; }
    .nav.active a:nth-child(6) { transition-delay: 0.6s; }
    .nav.active .nav-book-btn { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }

    .nav-book-btn {
        margin-top: 40px;
        width: 220px;
        padding: 15px 30px;
        font-size: 16px;
        justify-content: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .hamburger { 
        display: flex; 
        z-index: 9999;
        position: relative;
    }
    
    .hero { min-height: 90vh; padding-top: 120px; }
    .hero-title { font-size: 32px; line-height: 1.2; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 15px; padding: 0 10px; }
    .hero-buttons { flex-direction: column; gap: 15px; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn { width: 100%; justify-content: center; }
    
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .moments-grid { grid-template-columns: 1fr; gap: 20px; }
    .packages-grid { grid-template-columns: 1fr; gap: 25px; }
    .why-choose-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .impact-grid { grid-template-columns: 1fr; gap: 15px; }
    
    .section-header h2 { font-size: 32px; }
    .section-header p { font-size: 14px; }
}

/* Large Desktop (1600px+) */
@media (min-width: 1600px) {
    .container { max-width: 1500px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .moments-grid { grid-template-columns: repeat(4, 1fr); }
}

/* TV View Optimization (2000px+) */
@media (min-width: 2000px) {
    .container { max-width: 2000px; }
    .hero-title { font-size: 100px; }
    .hero-subtitle { font-size: 32px; max-width: 1200px; }
    .btn { padding: 24px 60px; font-size: 20px; }
    .service-card { padding: 60px; }
    .service-card h3 { font-size: 32px; }
    .service-card p { font-size: 18px; }
    .section-header h2 { font-size: 80px; }
    .section-header p { font-size: 24px; }
    .footer-section h3 { font-size: 28px; }
    .footer-section p, .footer-section li { font-size: 18px; }
}


#packagesGrid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    #packagesGrid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .logo-section { position: relative; z-index: 10000; }
}

@media (max-width: 768px) {
    .nav a:last-of-type { border-bottom: none; }
    .nav a:hover { color: var(--gold); background: rgba(212, 175, 55, 0.05); }
}

@media (max-width: 768px) {
    .experience-floating-badge {
        bottom: -15px !important;
        right: 0 !important;
        padding: 15px 20px;
    }
}
