/* =========================================
   CSS Variables & Global Resets
========================================= */
:root {
    --bg-dark: #12100E;
    --text-main: #FFFFFF;
    --text-muted: #A3A3A3;
    
    --gold-light: #FBE6B6;
    --gold-main: #D4AF37;
    --gold-dark: #8C6A18;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 10px rgba(212, 175, 55, 0.1);
    --glow-gold-strong: 0 0 30px rgba(212, 175, 55, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.2);
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(253, 224, 153, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
}

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

ul {
    list-style: none;
}

/* =========================================
   Preloader
========================================= */
.preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 120px;
    height: auto;
    animation: preloader-pulse 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

@keyframes preloader-pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8)); }
    100% { transform: scale(0.95); opacity: 0.7; }
}

/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-outline-glow {
    background: var(--glass-bg);
    border: var(--glass-border);
    color: var(--text-main);
    box-shadow: var(--glow-gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline-glow:hover {
    box-shadow: var(--glow-gold-strong);
    background: rgba(255, 255, 255, 0.08);
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    font-weight: 600;
}

.btn-primary-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* =========================================
   Header / Navbar
========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, rgba(18, 16, 14, 0.9) 0%, rgba(18, 16, 14, 0) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(to right, #FFFFFF, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    white-space: nowrap;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-main);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-main);
    box-shadow: 0 0 5px var(--gold-main);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}

/* Hamburger → X animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   Hero Section
========================================= */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px; /* offset for header */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 16, 14, 0.6); /* Dark tint to ensure text is perfectly readable */
    z-index: -2;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(18, 16, 14, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    width: 100%;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Floating Glass Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Let clicks pass through to background */
}

.glass-card {
    position: absolute;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--glow-gold);
    animation: float 6s ease-in-out infinite;
    pointer-events: auto; /* Allow hover effects if needed */
}

.glass-card h3 {
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
}

.glass-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Specific Card Positioning (similar to the template) */
.card-1 {
    top: 10%;
    left: 0%;
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: 5%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 15%;
    right: 0%;
    animation-delay: 4.5s;
}

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

/* =========================================
   Magical Marquee Ribbon
========================================= */
.magical-ribbon {
    position: absolute;
    bottom: 8%;
    left: -5%;
    width: 110%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.08), rgba(212, 175, 55, 0.05));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding: 15px 0;
    transform: rotate(-3deg);
    z-index: 5;
    overflow: hidden;
    display: flex;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.magical-ribbon-content {
    display: flex;
    white-space: nowrap;
    animation: ribbon-scroll 25s linear infinite;
}

.magical-ribbon-content span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 3px;
    padding: 0 40px;
    color: transparent;
    background: linear-gradient(90deg, var(--gold-light), #ffffff, var(--gold-main));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: ribbon-shine 3s linear infinite;
    display: inline-block;
}

@keyframes ribbon-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes ribbon-shine {
    to { background-position: 200% center; }
}

/* =========================================
   Global Utility Classes
========================================= */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    margin-top: 15px;
}

/* =========================================
   Services Section (Light Theme)
========================================= */
.services {
    background-color: #FCFBF9; /* Luxurious cream/white background */
    color: var(--bg-dark); 
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.services .section-title {
    color: var(--bg-dark);
}

.services .section-subtitle {
    color: #666;
}

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

.service-card {
    background: linear-gradient(145deg, #ffffff, #fdfbf7);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 16px;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15), inset 0 0 0 1px rgba(212, 175, 55, 0.4);
}

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

.service-img-placeholder {
    width: calc(100% - 20px);
    height: 220px;
    margin: 10px 10px 0 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fdfbf7 0%, #f0e6d2 100%);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.service-img {
    width: calc(100% - 20px);
    height: 220px;
    margin: 10px 10px 0 10px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Elegant shine animation for the placeholder */
.service-img-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.service-img-placeholder::after {
    content: 'Image Placeholder';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(140, 106, 24, 0.7);
    font-family: var(--font-serif); /* Changed to serif for elegance */
    font-size: 1rem;
    font-style: italic;
    letter-spacing: 1px;
}

.service-content {
    padding: 35px 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--bg-dark);
    font-weight: 500;
}

.service-content p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Ultra-premium Service Card Button */
.service-card .btn-outline-glow {
    color: var(--gold-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: center;
    box-shadow: none;
}

.service-card .btn-outline-glow:hover {
    background: var(--gold-main);
    color: #fff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-main);
}

/* =========================================
   Reviews Section
========================================= */
.reviews {
    background-color: #FCFBF9; /* Luxurious cream/white background matching Services */
    color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.reviews .section-title {
    color: var(--bg-dark);
}

.reviews .section-subtitle {
    color: #666;
}

.reviews-marquee {
    display: flex;
    gap: 30px;
    overflow: hidden;
    padding: 30px 0 60px 0;
}

.reviews-group {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
    animation: review-scroll 40s linear infinite;
}

.reviews-marquee:hover .reviews-group {
    animation-play-state: paused;
}

.review-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(253, 251, 247, 0.4));
    border-radius: 16px;
    padding: 35px 30px;
    width: 380px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    white-space: normal;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 16px;
}

.review-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15), inset 0 0 0 1px rgba(212, 175, 55, 0.4);
}

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

.review-card .stars {
    color: var(--gold-main);
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.review-card .review-text {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

.review-card .reviewer-name {
    font-size: 1.15rem;
    color: var(--bg-dark);
    font-family: var(--font-serif);
    margin-top: auto;
    font-weight: 600;
}

@keyframes review-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 30px)); }
}

/* =========================================
   Decorative Elements
========================================= */
.decorative-rose {
    position: absolute;
    width: 450px;
    opacity: 0.12;
    mix-blend-mode: multiply;
    z-index: 0;
    pointer-events: none;
    transition: all 0.8s ease;
}

.rose-top-left {
    top: -80px;
    left: -80px;
    transform: rotate(15deg);
}

.rose-bottom-right {
    bottom: -80px;
    right: -80px;
    transform: rotate(195deg);
}

.rose-top-right {
    top: -80px;
    right: -80px;
    transform: rotate(-15deg) scaleX(-1);
}

.rose-bottom-left {
    bottom: -80px;
    left: -80px;
    transform: rotate(165deg) scaleX(-1);
}

/* =========================================
   Gallery Section
========================================= */
.gallery {
    background-color: #FCFBF9; /* Luxurious cream/white background matching Services */
    color: var(--bg-dark);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.gallery .section-title {
    color: var(--bg-dark);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--glow-gold);
}

.item-tall {
    grid-row: span 2;
}

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

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdfbf7 0%, #f0e6d2 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(140, 106, 24, 0.7);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    position: relative;
}

.gallery-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
    pointer-events: none;
}

.gallery-cta {
    text-align: center;
    margin-top: 20px;
}

.gallery-fancy-text {
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--gold-dark);
    padding: 2rem;
    line-height: 1.4;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.05);
}

/* =========================================
   3D Gallery Modal & Carousel
========================================= */
.gallery-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.1); /* Very transparent */
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px); /* Strong liquid glass blur */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.gallery-modal.active {
    display: flex;
}
.modal-close {
    position: absolute;
    top: 20px; right: 40px;
    color: var(--gold-main);
    font-size: 4rem;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
}
.modal-close:hover {
    color: var(--gold-dark);
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    overflow: hidden;
}
.carousel-track {
    position: relative;
    width: 350px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}
.carousel-card {
    position: absolute;
    width: 350px;
    height: 450px;
    background: linear-gradient(135deg, #1c1c1c 0%, #0a0a0a 100%);
    border: 2px solid var(--gold-main);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, z-index 0.6s ease;
    opacity: 0;
}
.carousel-card .gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdfbf7 0%, #f0e6d2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold-dark);
    position: relative;
    overflow: hidden;
}
.carousel-card .gallery-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

.carousel-card.center {
    transform: translateX(0) translateZ(0) rotateY(0);
    opacity: 1;
    z-index: 5;
}
.carousel-card.left-1 {
    transform: translateX(-40%) translateZ(-150px) rotateY(25deg);
    opacity: 0.8;
    z-index: 4;
}
.carousel-card.right-1 {
    transform: translateX(40%) translateZ(-150px) rotateY(-25deg);
    opacity: 0.8;
    z-index: 4;
}
.carousel-card.left-2 {
    transform: translateX(-80%) translateZ(-300px) rotateY(45deg);
    opacity: 0.5;
    z-index: 3;
}
.carousel-card.right-2 {
    transform: translateX(80%) translateZ(-300px) rotateY(-45deg);
    opacity: 0.5;
    z-index: 3;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-main);
    color: var(--gold-main);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.carousel-btn:hover {
    background: var(--gold-main);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}
.prev-btn { left: 5%; }
.next-btn { right: 5%; }

/* =========================================
   Packages Section
========================================= */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.package-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(15px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
}
.package-img {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.package-image-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.package-card:hover .package-image-el {
    transform: scale(1.05);
}
.package-img .gallery-placeholder {
    height: 100%;
}
.package-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.package-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
    text-align: center;
}
.package-price-wrap {
    text-align: center;
    margin-bottom: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.price-label {
    display: block;
    font-size: 0.95rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.price-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-main);
    font-weight: 600;
}
.package-list {
    margin-bottom: 25px;
    flex-grow: 1;
}
.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
    color: #555;
    font-size: 1.05rem;
}
.list-item:last-child {
    border-bottom: none;
}
.list-item span:first-child {
    font-weight: 500;
}
.list-item span:last-child {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold-dark);
    font-weight: 600;
}
.list-item small {
    font-size: 0.8rem;
    color: #999;
    font-family: var(--font-sans);
    font-weight: normal;
}
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

/* =========================================
   Budget Marquee
========================================= */
.budget-marquee-container {
    position: relative;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-main));
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.budget-marquee {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.budget-marquee-content {
    display: inline-block;
    animation: ribbon-scroll 25s linear infinite;
}

.budget-marquee-content span {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    padding: 0 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-budget {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    margin-left: 15px;
    background: #111;
    color: var(--gold-main);
    border: 1px solid var(--gold-main);
    box-shadow: none;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.btn-budget:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* =========================================
   Footer Section
========================================= */
.site-footer {
    background-color: var(--bg-dark);
    position: relative;
    padding: 80px 0 20px;
    overflow: hidden;
    color: var(--text-muted);
}
.footer-rose {
    position: absolute;
    width: 300px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    /* Invert the white background to black, turn the rose gold, and use screen to hide the black */
    filter: invert(1) sepia(1) saturate(5) hue-rotate(350deg) brightness(1.2);
    mix-blend-mode: screen;
}
.footer-rose.rose-left {
    bottom: -50px;
    left: -50px;
    transform: rotate(45deg);
}
.footer-rose.rose-right {
    top: -50px;
    right: -50px;
    transform: rotate(-135deg);
}
.site-footer .container {
    position: relative;
    z-index: 10;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 40px;
}
.footer-logo {
    font-family: var(--font-serif);
    color: var(--gold-light);
    font-size: 2rem;
    margin-bottom: 15px;
}
.footer-desc {
    line-height: 1.6;
    max-width: 400px;
}
.footer-heading {
    color: var(--gold-main);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--gold-light);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-main);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold-main);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

/* Footer CTA Buttons */
.footer-cta-btns {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}
.footer-cta-call {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--gold-main);
}
.footer-cta-call:hover {
    background: var(--gold-main);
    color: #000;
    box-shadow: 0 0 18px rgba(212,175,55,0.35);
    transform: translateY(-2px);
}
.footer-cta-wa {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25d366;
}
.footer-cta-wa:hover {
    background: #25d366;
    color: #fff;
    box-shadow: 0 0 18px rgba(37,211,102,0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}


/* =========================================
   Service Details Modal
========================================= */
.service-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18, 16, 14, 0.4);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--gold-dark);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2010;
}

.service-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--gold-main);
}

.service-modal-container {
    width: 90%;
    max-width: 1200px;
    height: 80svh;
    background: rgba(255, 255, 255, 0.85); /* Whitish liquid glass */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.modal-rose {
    position: absolute;
    width: 450px;
    opacity: 0.2; /* Without overlay blending */
    z-index: 0;
    pointer-events: none;
}

.modal-rose-top-right {
    top: -80px;
    right: -80px;
    transform: rotate(15deg) scaleX(-1);
}

.modal-rose-bottom-left {
    bottom: -80px;
    left: -80px;
    transform: rotate(165deg) scaleX(-1);
}

.service-modal-left {
    flex: 1;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.vertical-scroll-track {
    display: flex;
    flex-direction: column;
    animation: vertical-scroll 20s linear infinite;
}

.vertical-scroll-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.scroll-card {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: perspective(1000px) rotateY(-12deg) rotateX(8deg) scale(0.95);
    transition: transform 0.4s ease;
}

.scroll-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.scroll-card .gallery-placeholder {
    font-size: 1.5rem;
}

.modal-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes vertical-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.service-modal-right {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    z-index: 1;
}

.service-modal-title {
    font-size: 3.5rem;
    color: var(--bg-dark);
    margin-bottom: 20px;
    font-family: var(--font-serif);
    line-height: 1.1;
}

.service-modal-desc {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 40px;
}

.service-modal-cta {
    margin-top: 20px;
}

/* =========================================
   Service Details Modal (mobile override — already in code at 900px)
   Keep the existing 900px rule above, now add deeper overrides
========================================= */

/* =========================================
   Responsive Design — Complete Overhaul
========================================= */

/* ---- TABLET (max-width: 992px) ---- */
@media (max-width: 992px) {
    .container { padding: 0 1.5rem; }
    .section-padding { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 2.4rem; }
    .section-subtitle { font-size: 1rem; }

    /* Hero */
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 2rem; }

    /* Glass cards */
    .glass-card { padding: 1rem; }
    .glass-card h3 { font-size: 1.2rem; }
    .glass-card p { font-size: 0.65rem; }
    .card-1 { top: 5%; left: -2%; }
    .card-2 { top: 5%; right: -2%; }
    .card-3 { bottom: 10%; left: -2%; }
    .card-4 { bottom: 10%; right: -2%; }

    /* Services */
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
    .service-content { padding: 25px 20px; }
    .service-content h3 { font-size: 1.35rem; }
    .service-content p { font-size: 0.88rem; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-auto-rows: 200px;
        gap: 15px;
    }
    .gallery-fancy-text { font-size: 1.5rem; grid-column: span 2; }

    /* Packages */
    .packages-grid { gap: 20px; }
    .package-title { font-size: 1.5rem; }
    .price-value { font-size: 2rem; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-logo { font-size: 1.6rem; }

    /* Gallery modal */
    .carousel-container { height: 500px; }
    .carousel-track, .carousel-card { width: 280px; height: 360px; }
    .carousel-btn { width: 45px; height: 45px; font-size: 1.4rem; }
}

/* ---- MOBILE (max-width: 768px) ---- */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .section-padding { padding: 50px 0; }
    .section-header { margin-bottom: 30px; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 0.9rem; }

    /* ---- Navbar ---- */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(18, 16, 14, 0.97);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    .nav-menu.active { display: block; }
    .nav-menu ul { flex-direction: column; align-items: center; gap: 1rem; }
    .nav-menu a { font-size: 1.1rem; padding: 12px 20px; display: inline-block; }
    .header .btn-outline-glow { display: none; }
    .mobile-only-btn { display: block; margin-top: 10px; }
    .mobile-toggle { display: flex; }
    .header { padding: 1rem 0; }
    .logo img { height: 35px; }
    .logo-text { font-size: 0.95rem; }

    /* ---- Hero ---- */
    .hero { min-height: 100svh; padding-top: 70px; }
    .hero-title { font-size: 2.5rem; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 1.8rem; }
    .hero-cta { flex-direction: column; gap: 0.8rem; padding: 0 1.5rem; }
    .hero-cta .btn { width: 100%; padding: 0.9rem; }
    .hero-bg-glow { width: 90vw; height: 90vw; }

    /* Floating cards → grid on mobile */
    .floating-cards {
        position: relative;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    .glass-card {
        position: relative;
        top: auto !important; left: auto !important;
        right: auto !important; bottom: auto !important;
        animation: none;
        padding: 0.8rem;
    }
    .glass-card h3 { font-size: 1rem; }
    .glass-card p { font-size: 0.6rem; }

    /* Magical Marquee Ribbon */
    .magical-ribbon { bottom: 4%; padding: 10px 0; }
    .magical-ribbon-content span { font-size: 0.85rem; letter-spacing: 2px; padding: 0 20px; }

    /* ---- Services ---- */
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-img { height: 180px; }
    .service-content { padding: 20px 16px; }
    .service-content h3 { font-size: 1.25rem; margin-bottom: 8px; }
    .service-content p { font-size: 0.85rem; margin-bottom: 15px; }

    /* ---- Reviews ---- */
    .reviews-marquee { padding: 20px 0 40px 0; }
    .review-card { width: 300px; padding: 25px 20px; }
    .review-card .stars { font-size: 1.2rem; }
    .review-card .review-text { font-size: 0.88rem; }
    .review-card .reviewer-name { font-size: 1rem; }

    /* ---- Gallery ---- */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: 10px;
    }
    .gallery-item.item-tall,
    .gallery-item.item-wide,
    .gallery-fancy-text { grid-column: span 1; grid-row: span 1; }
    .gallery-fancy-text { font-size: 1rem; padding: 1rem; }

    /* ---- Gallery Modal ---- */
    .carousel-container { height: 400px; perspective: 900px; }
    .carousel-track, .carousel-card { width: 240px; height: 320px; }
    .carousel-btn { width: 38px; height: 38px; font-size: 1.2rem; }
    .prev-btn { left: 2%; }
    .next-btn { right: 2%; }
    .modal-close { top: 12px; right: 16px; font-size: 2.5rem; }

    /* ---- Packages ---- */
    .packages-grid { grid-template-columns: 1fr; gap: 16px; }
    .package-card { padding: 16px; }
    .package-img { height: 180px; margin-bottom: 16px; }
    .package-title { font-size: 1.3rem; margin-bottom: 10px; }
    .price-value { font-size: 1.8rem; }
    .price-label { font-size: 0.82rem; }
    .list-item { font-size: 0.92rem; padding: 8px 0; }
    .list-item span:last-child { font-size: 1.05rem; }

    /* Budget marquee */
    .budget-marquee-container {
        flex-direction: column;
        border-radius: 15px;
        padding: 12px;
        margin-top: 24px;
    }
    .budget-marquee { margin-bottom: 12px; width: 100%;
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }
    .budget-marquee-content span { font-size: 0.9rem; }
    .btn-budget { margin-left: 0; width: 100%; text-align: center; }

    /* ---- Service Detail Modal ---- */
    .service-modal-container {
        flex-direction: column;
        height: 92svh;
        width: 95%;
        border-radius: 16px;
    }
    .service-modal-left {
        height: 35%;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    .vertical-scroll-track {
        flex-direction: row;
        height: 100%;
        animation: horizontal-scroll 20s linear infinite;
        width: max-content;
    }
    .vertical-scroll-group {
        flex-direction: row;
        height: 100%;
        padding: 15px;
        gap: 15px;
    }
    .scroll-card { 
        height: 100%; 
        width: 240px; 
        transform: perspective(1000px) rotateX(12deg) rotateY(-8deg) scale(0.95); 
    }
    .scroll-card:hover {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
    }
    .service-modal-right {
        height: 65%;
        padding: 24px 20px;
        overflow-y: auto;
    }
    .service-modal-title { font-size: 1.8rem; margin-bottom: 12px; }
    .service-modal-desc { font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }
    .service-modal-close { top: 12px; right: 16px; font-size: 2rem; }
    .modal-rose { width: 250px; }
    
    @keyframes horizontal-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* ---- Footer ---- */
    .site-footer { padding: 50px 0 16px; }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
        margin-bottom: 30px;
        padding-bottom: 28px;
    }
    .footer-desc { margin: 0 auto; max-width: 100%; font-size: 0.9rem; }
    .footer-logo { font-size: 1.5rem; }
    .footer-heading { font-size: 1.1rem; margin-bottom: 14px; }
    .social-icons { justify-content: center; }
    .footer-cta-btns { justify-content: center; }
    .footer-mini-map iframe { height: 120px; }
    .footer-contact li { font-size: 0.88rem; line-height: 1.5; }
    .footer-rose { width: 180px; }

    /* Decorative roses smaller */
    .decorative-rose { width: 250px; }
}

/* ---- SMALL MOBILE (max-width: 480px) ---- */
@media (max-width: 480px) {
    .container { padding: 0 0.8rem; }
    .section-padding { padding: 40px 0; }
    .section-title { font-size: 1.65rem; }
    .section-subtitle { font-size: 0.82rem; }

    /* Hero */
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.88rem; }
    .hero-cta .btn { font-size: 0.85rem; padding: 0.75rem; }

    /* Glass cards — single column */
    .floating-cards { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .glass-card { padding: 0.6rem; }
    .glass-card h3 { font-size: 0.85rem; }

    /* Services */
    .service-img { height: 160px; margin: 6px 6px 0 6px; width: calc(100% - 12px); }
    .service-content { padding: 16px 12px; }
    .service-content h3 { font-size: 1.1rem; }
    .service-content p { font-size: 0.8rem; margin-bottom: 12px; }

    /* Reviews */
    .review-card { width: 260px; padding: 18px 15px; }
    .review-card .review-text { font-size: 0.82rem; }
    .review-card .reviewer-name { font-size: 0.92rem; }

    /* Gallery */
    .gallery-grid { grid-auto-rows: 140px; gap: 8px; }
    .gallery-fancy-text { font-size: 0.85rem; padding: 0.8rem; }

    /* Gallery Modal */
    .carousel-container { height: 340px; }
    .carousel-track, .carousel-card { width: 200px; height: 270px; }
    .carousel-card.left-1 { transform: translateX(-35%) translateZ(-100px) rotateY(20deg); }
    .carousel-card.right-1 { transform: translateX(35%) translateZ(-100px) rotateY(-20deg); }
    .carousel-card.left-2, .carousel-card.right-2 { opacity: 0; }
    .carousel-btn { width: 32px; height: 32px; font-size: 1rem; }

    /* Packages */
    .package-card { padding: 12px; }
    .package-img { height: 150px; margin-bottom: 12px; }
    .package-title { font-size: 1.15rem; }
    .price-value { font-size: 1.5rem; }
    .list-item { font-size: 0.82rem; }

    /* Budget marquee */
    .budget-marquee-content span { font-size: 0.78rem; padding: 0 15px; }

    /* Service modal */
    .service-modal-container { width: 98%; height: 95svh; border-radius: 12px; }
    .service-modal-left { height: 30%; }
    .service-modal-right { height: 70%; padding: 18px 14px; }
    .service-modal-title { font-size: 1.5rem; }
    .service-modal-desc { font-size: 0.85rem; line-height: 1.55; margin-bottom: 16px; }
    .scroll-card { width: 180px; }

    /* Footer */
    .site-footer { padding: 35px 0 12px; }
    .footer-grid { gap: 22px; margin-bottom: 22px; padding-bottom: 22px; }
    .footer-logo { font-size: 1.3rem; }
    .footer-heading { font-size: 1rem; }
    .footer-contact li { font-size: 0.82rem; }
    .footer-cta-btn { padding: 8px 14px; font-size: 0.76rem; }
    .footer-mini-map iframe { height: 100px; }
    .map-direction-link { font-size: 0.72rem; }
    .footer-rose { width: 120px; }
    .decorative-rose { width: 160px; }

    /* Ribbon */
    .magical-ribbon { bottom: 2%; }
    .magical-ribbon-content span { font-size: 0.72rem; letter-spacing: 1.5px; padding: 0 15px; }
}

/* ==========================================
   Booking Modal — Liquid Glass Compact
   ========================================== */
.booking-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.booking-modal-overlay.active { display: flex; }

.booking-modal-box {
    position: relative;
    /* Liquid glass core */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    padding: 22px 24px 20px;
    width: 100%;
    max-width: 460px;
    max-height: 90svh;
    overflow-y: auto;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.18) inset,
        0 8px 40px rgba(0,0,0,0.55),
        0 0 60px rgba(212,175,55,0.08);
    animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.46, 0.64, 1) forwards;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,0.3) transparent;
}
.booking-modal-box::-webkit-scrollbar { width: 4px; }
.booking-modal-box::-webkit-scrollbar-track { background: transparent; }
.booking-modal-box::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 4px; }

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-modal-close {
    position: absolute; top: 12px; right: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 1.1rem; cursor: pointer;
    transition: all 0.2s; z-index: 2; line-height: 1;
}
.booking-modal-close:hover {
    background: rgba(212,175,55,0.2);
    border-color: var(--gold-main);
    color: var(--gold-main);
}

/* Hide rose decorations — too heavy for compact glass */
.booking-rose { display: none; }

.booking-modal-header { text-align: center; margin-bottom: 16px; }
.booking-icon { font-size: 1.8rem; margin-bottom: 4px; filter: drop-shadow(0 0 8px rgba(212,175,55,0.5)); }
.booking-modal-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
    line-height: 1.2;
}
.booking-modal-subtitle { color: rgba(255,255,255,0.45); font-size: 0.78rem; }

.booking-form { display: flex; flex-direction: column; gap: 11px; }

.booking-field { display: flex; flex-direction: column; gap: 4px; }
.booking-field label {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.07em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.booking-field .req { color: var(--gold-main); }

.booking-field input,
.booking-field textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 9px 13px;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.booking-field input:focus,
.booking-field textarea:focus {
    border-color: rgba(212,175,55,0.6);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.12);
}
.booking-field input::placeholder,
.booking-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.booking-field input[type='date'] { color-scheme: dark; }
.booking-field textarea { resize: none; min-height: 52px; }

.booking-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Package radio cards — compact horizontal rows */
.booking-packages { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.pkg-option { cursor: pointer; }
.pkg-option input[type='radio'] { display: none; }
.pkg-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    transition: all 0.22s ease;
    cursor: pointer;
}
.pkg-option input[type='radio']:checked + .pkg-label {
    border-color: rgba(212,175,55,0.7);
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 12px rgba(212,175,55,0.18);
}
.pkg-option:hover .pkg-label {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.07);
}
.pkg-icon { font-size: 1.1rem; flex-shrink: 0; }
.pkg-name { font-size: 0.72rem; font-weight: 600; color: #ddd; line-height: 1.25; }
.pkg-price { font-size: 0.65rem; color: var(--gold-main); font-weight: 500; margin-top: 1px; display: block; }

.booking-error { color: #ff7b7b; font-size: 0.78rem; min-height: 14px; margin: 0; }

.booking-submit {
    margin-top: 2px;
    font-size: 0.9rem;
    padding: 12px;
    letter-spacing: 0.04em;
}

@media (max-width: 480px) {
    .booking-modal-box { padding: 18px 16px; max-width: 100%; }
    .booking-packages { grid-template-columns: 1fr; }
    .booking-field-row { grid-template-columns: 1fr; }
    .booking-modal-title { font-size: 1.15rem; }
}

/* Mini Map in Footer */
.footer-mini-map {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.map-direction-link {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-main);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.25s;
}
.map-direction-link:hover {
    color: var(--gold-light);
}

/* =========================================
   Portfolio Page
========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.portfolio-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(212, 175, 55, 0.2);
    border: 1px solid var(--glass-border);
}

.portfolio-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.portfolio-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.portfolio-image-wrapper:hover .portfolio-image {
    transform: scale(1.03);
}

.portfolio-content-wrapper {
    padding: 20px 0;
}

.portfolio-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 25px;
    line-height: 1.2;
}

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

.portfolio-stats {
    display: flex;
    gap: 30px;
    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: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-main);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .portfolio-heading { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .portfolio-stats { flex-wrap: wrap; gap: 20px; }
    .stat-number { font-size: 2rem; }
}

/* =========================================
   Partnership Section
========================================= */
.partnership-section {
    background: #FCFBF9;
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.2), transparent);
    transform: skewX(-25deg);
    animation: partner-shine 6s infinite;
}

@keyframes partner-shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.partnership-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.partner-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: italic;
    opacity: 1;
    font-weight: 600;
}

.partner-logo-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    animation: partner-pulse 3s infinite alternate;
}

@keyframes partner-pulse {
    0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 0 0 rgba(212, 175, 55, 0.2); transform: scale(1); }
    100% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 0 15px rgba(212, 175, 55, 0); transform: scale(1.05); }
}

.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #FCFBF9;
}

@media (max-width: 768px) {
    .partnership-container {
        flex-direction: column;
        gap: 15px;
    }
    .partner-logo-wrapper {
        width: 120px;
        height: 120px;
    }
    .partner-text {
        font-size: 1rem;
    }
}

/* =========================================
   Global Lightbox Modal
========================================= */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(18, 16, 14, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: var(--gold-light);
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 100000;
}

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

.partnership-container.partnership-vertical {
    flex-direction: column;
    gap: 15px;
    text-align: center;
}
