* {
    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;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header.header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 0px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 20px;
    padding: 5px 0;
}

.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: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.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: 0;
    padding-top: 45px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

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

.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: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0px;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-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;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.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: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.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: 80px 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: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: 'Playfair Display', 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(15, 15, 15, 0.8);\n    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.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(15, 15, 15, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.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);
    group: moment-cards;
}

.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);
}

.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 0;
    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: 20px;
}

.package-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

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

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

.package-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 10, 0.9) 100%);
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

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

.package-header h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.package-badge {
    color: var(--gold);
    font-size: 14px;
    font-style: italic;
}

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

.package-features li {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .package-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .package-card.featured {
        transform: scale(1);
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

/* About Section */
.about {
    background-color: var(--darker);
}

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

.about-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text h2 .gold {
    color: var(--gold);
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

.stat-label {
    color: var(--text-gray);
    font-size: 14px;
}

.about-image {
    height: 500px;
    background: linear-gradient(135deg, #8f6f3f 0%, #5a4a2a 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border: 3px solid var(--gold);
}

.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 {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
}

/* 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;
}

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

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    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: 'Montserrat', 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(15, 15, 15, 0.95) 0%, rgba(25, 25, 25, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    width: 85%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.15);
    animation: slideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    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: 28px;
    font-weight: bold;
    padding: 5px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: white;
    text-shadow: 0 0 15px var(--gold);
    transform: rotate(90deg);
}
}

.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) {
    .hamburger {
        display: flex;
    }
    
    .btn {
        padding: 14px 32px;
        font-size: 14px;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
    }
    
    .nav.active {
        max-height: 500px;
        padding: 20px 0;
        visibility: visible;
        opacity: 1;
    }
    
    .nav a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        font-size: 14px;
        display: block;
    }
    
    .nav a:hover {
        background-color: rgba(212, 175, 55, 0.1);
    }

    .nav-book-btn {
        padding: 12px 20px;
        font-size: 14px;
        margin: 10px 20px;
        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 {
        flex-direction: column;
    }
    
    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: 0;
        padding-top: 40px;
        min-height: 100vh;
    }
    
    .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: 0;
        padding-top: 45px;
        min-height: 100vh;
    }
    
    .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: 60px;
    color: #4caf50;
    margin-bottom: 20px;
    animation: successCheckmark 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

@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.95) 0%, rgba(0, 0, 0, 0.98) 100%);
}

.questionnaire-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.4);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    padding: 50px 40px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(212, 175, 55, 0.15);
    animation: slideInUp 0.4s ease-out;
    max-height: 85vh;
    overflow-y: auto;
}

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

.questionnaire-content .form-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.questionnaire-step {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.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(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.questionnaire-section label {
    display: block;
    color: var(--light-gray);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

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

.guest-btn {
    padding: 20px 15px;
    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;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.guest-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

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

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

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

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.03);
    font-weight: 500;
    margin-bottom: 0;
}

.checkbox-group label:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

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

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

/* 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);
}

/* Recommended Package */
.recommended-package {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 15px;
    padding: 30px 25px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.package-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.recommended-package h3 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 700;
}

.recommended-package p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

#packageFeatures li {
    padding: 10px 0;
    color: var(--light-gray);
    font-size: 13px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

#packageFeatures li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
}

.package-price {
    font-size: 18px;
    color: var(--gold);
    font-weight: 700;
    margin: 20px 0;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    letter-spacing: 1px;
}

/* Buttons Container */
.questionnaire-content .whatsapp-connect {
    background: linear-gradient(135deg, #25d366 0%, #20ba58 100%);
    border: none;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.questionnaire-content .whatsapp-connect:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.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;
    }
}
