/* Source: base.css */
:root {
    --ivory: #faf8f6;
    --soft-ivory: #f9f7f4;
    --champagne: #f7f4f0;
    --gold-taupe: #b8a088;
    --soft-gold: #d4c4b0;
    --charcoal: #2c2c2c;
    --soft-gray: #6b6b6b;
    --white: #ffffff;
}

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

body {
    font-family: 'Crimson Text', serif;
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--ivory);
    font-size: 16px;
    letter-spacing: 0.3px;
    opacity: 0;
    transition: opacity 0.8s ease;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.script {
    font-family: 'Allura', cursive;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.preloader-content {
    text-align: center;
    position: relative;
}

.preloader-logo {
    font-family: 'Allura', cursive;
    font-size: 3rem;
    color: var(--gold-taupe);
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Circular Progress Loader */
.progress-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.progress-ring-circle {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.progress-ring-bg {
    fill: none;
    stroke: var(--champagne);
    stroke-width: 3;
}

.progress-ring-progress {
    fill: none;
    stroke: var(--gold-taupe);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 314.159;
    stroke-dashoffset: 314.159;
    transition: stroke-dashoffset 0.3s ease;
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold-taupe);
    font-weight: 300;
}

.progress-label {
    margin-top: 1rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--soft-gray);
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-taupe), var(--soft-gold));
    z-index: 9998;
    transition: width 0.1s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-taupe);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(184, 160, 136, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(184, 160, 136, 0.6);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
    padding: 1.5rem 3rem;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 3rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand img {
    width: 250px;
    height: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    width: 200px;
}

.navbar-nav .nav-link {
    color: var(--charcoal) !important;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    padding: 0.5rem 1.5rem !important;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    position: relative;
}

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

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

.navbar-nav .nav-link:hover {
    color: var(--gold-taupe) !important;
}

.navbar-nav .nav-link.active {
    color: var(--gold-taupe) !important;
}

/* Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 100%;
    height: 1px;
    background-color: var(--charcoal);
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--charcoal);
    display: block;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

/* Hero Carousel */
#heroCarousel {
    position: relative;
}

/* Hero Carousel - Full Screen */
#heroCarousel {
    position: relative;
    overflow: hidden;
}

#heroCarousel .carousel-inner {
    position: relative;
    height: 100vh;
}

#heroCarousel .carousel-item {
    height: 100vh;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.85s ease;
    pointer-events: none;
    display: block;
}

#heroCarousel .carousel-item.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

#heroCarousel .carousel-item img {
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.95);
    transition: transform 0.5s ease;
}

/* Individual photo positioning based on subject location */
#heroCarousel .carousel-item.photo-1 img {
    object-position: center 90%; /* Arch and couple - focus middle-lower */
}

#heroCarousel .carousel-item.photo-2 img {
    object-position: bottom 110%; /* Table decorations - focus middle */
}

#heroCarousel .carousel-item.photo-3 img {
    object-position: center 75%; /* Decor details - focus lower middle */
}

#heroCarousel .carousel-item.photo-4 img {
    object-position: center 55%; /* Ceremony with people - focus upper middle */
}

/* Minimal Round Navigation Buttons */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#heroCarousel .carousel-control-prev {
    left: 30px;
}

#heroCarousel .carousel-control-next {
    right: 30px;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
}

#heroCarousel .carousel-indicators {
    bottom: 20px;
}

#heroCarousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators .active {
    width: 30px;
    border-radius: 4px;
    background-color: var(--white);
}

/* Hero Intro Section */
.hero-intro {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--soft-ivory) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 160, 136, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: movePattern 60s linear infinite;
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-intro h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.hero-intro .script {
    font-size: 2.8rem;
    color: var(--gold-taupe);
    margin-top: -10px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-intro p {
    font-size: 1.1rem;
    color: var(--soft-gray);
    max-width: 600px;
    margin: 2rem auto;
    line-height: 1.8;
}

.divider {
    width: 80px;
    height: 1px;
    background: var(--gold-taupe);
    margin: 3rem auto;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-taupe);
    top: 50%;
    transform: translateY(-50%);
}

.divider::before {
    left: -10px;
}

.divider::after {
    right: -10px;
}


/* Source: sections.css */
/* Section Styling */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gold-taupe);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

/* About Section */
.about-section {
    background: var(--white);
    padding: 4rem 0;
}

.about-content h3 {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.about-content .script {
    font-size: 2rem;
    color: var(--gold-taupe);
    margin: 0.5rem 0 1.5rem;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
}

.about-image {
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--champagne);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(184, 160, 136, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

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

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

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, var(--soft-ivory) 0%, var(--ivory) 100%);
    padding: 4rem 0;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonial Carousel Items - Separate from Hero */
#testimonialCarousel .carousel-item {
    height: auto;
    min-height: auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 3rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid var(--champagne);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: var(--gold-taupe);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.9;
    color: var(--soft-gray);
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--gold-taupe);
    text-transform: uppercase;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--champagne);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    width: 30px;
    border-radius: 4px;
    background: var(--gold-taupe);
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: var(--white);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 2.8rem;
    color: var(--charcoal);
    font-weight: 300;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gold-taupe);
    letter-spacing: 2px;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

/* Counter Animation */
.stat-number.counting {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Luxury Footer / Get in Touch Section */
.luxury-footer {
    background: linear-gradient(135deg, #faf8f6 0%, #f5efe8 50%, #f0e9df 100%);
    padding: 3rem 0 2rem;
    position: relative;
    border-top: 1px solid var(--soft-gold);
}

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

.footer-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-subtitle {
    font-size: 2rem;
    color: var(--gold-taupe);
    font-family: 'Allura', cursive;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 1.05rem;
    color: var(--soft-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--gold-taupe);
    transform: translateY(-3px);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--gold-taupe);
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
}

.contact-item span {
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
}

.form-control {
    padding: 1.1rem 1rem;
    border: 1px solid var(--champagne);
    background: rgba(255, 255, 255, 0.8);
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.form-control:focus {
    border-color: var(--gold-taupe);
    box-shadow: 0 0 0 3px rgba(184, 160, 136, 0.08);
    background: var(--white);
    transform: translateY(-1px);
    outline: none;
}

.form-control::placeholder {
    color: #a8a8a8;
    font-style: italic;
}

.form-control.error {
    border-color: #d9534f;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23b8a088' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) 50%;
    background-size: 12px;
}

select.form-control option {
    color: var(--charcoal);
}

.error-message {
    color: #d9534f;
    font-size: 0.85rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
    display: none;
}

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

.btn-luxury {
    padding: 1rem 3.5rem;
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--gold-taupe);
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.4s ease;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 196, 176, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-luxury:hover {
    background: var(--gold-taupe);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 160, 136, 0.2);
}

.btn-luxury:hover::before {
    left: 100%;
}

.btn-luxury:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Luxury Enhancements */
::selection {
    background: var(--gold-taupe);
    color: var(--white);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 3rem 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold-taupe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-taupe);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold-taupe);
    color: var(--white);
    transform: translateY(-3px) rotate(360deg);
}

.social-links i {
    font-size: 1.1rem;
}

/* Copyright */
.copyright {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(184, 160, 136, 0.2);
    margin-top: 3rem;
}

.copyright p {
    color: var(--soft-gray);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0;
}

/* Services List */
.services-list {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem 0;
}

.services-list h4 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 400;
}

.services-list p {
    color: var(--soft-gray);
    font-size: 0.95rem;
    line-height: 2;
}

/* Responsive */


/* Source: packages.css */
/* Packages Section */
.packages-section {
    background: linear-gradient(180deg, var(--soft-ivory) 0%, var(--ivory) 100%);
    padding: 4rem 0;
}

.package-card {
    background: var(--white);
    border: 1px solid var(--champagne);
    padding: 3rem 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold-taupe), var(--soft-gold), var(--gold-taupe));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--gold-taupe);
}

.package-icon {
    font-size: 2rem;
    color: var(--gold-taupe);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.2) rotate(5deg);
}

.package-tier {
    font-size: 0.85rem;
    color: var(--gold-taupe);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.package-name {
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
}

.package-price {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
}

.package-description {
    font-size: 0.95rem;
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-style: italic;
    letter-spacing: 0.3px;
}

.package-content {
    font-size: 0.95rem;
    color: var(--soft-gray);
    line-height: 2;
    text-align: left;
    letter-spacing: 0.2px;
}

.package-card.featured {
    border-color: var(--gold-taupe);
    position: relative;
}

.package-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-taupe);
    color: var(--white);
    padding: 0.3rem 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
}


/* Source: gallery.css */
/* Gallery Section */
.gallery-section {
    background: var(--white);
    padding: 4rem 0;
}

.gallery-item {
    height: 350px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(212, 196, 176, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

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

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

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border: 3px solid rgba(212, 196, 176, 0.3);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}


/* Source: vip.css */
/* VIP Bespoke Services Section */
.vip-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,196,176,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.vip-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(184, 160, 136, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.vip-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 196, 176, 0.2);
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 1;
}

.vip-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold-taupe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(184, 160, 136, 0.1);
    animation: rotate 20s linear infinite;
}

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

.vip-badge i {
    font-size: 1.5rem;
    color: var(--gold-taupe);
    animation: rotate 20s linear infinite reverse;
}

.vip-label {
    font-size: 0.75rem;
    color: var(--gold-taupe);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.vip-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.vip-subtitle {
    font-size: 2rem;
    color: var(--gold-taupe);
    margin-bottom: 2rem;
}

.vip-divider {
    width: 60px;
    height: 1px;
    background: var(--gold-taupe);
    margin: 2rem auto;
}

.vip-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 2.1;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.2px;
}

.vip-features {
    margin: 3rem 0;
}

.vip-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.vip-feature-item:hover {
    transform: translateX(10px);
}

.vip-feature-item i {
    color: var(--gold-taupe);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.vip-investment {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 2.5rem 0 2rem;
    letter-spacing: 1px;
}

.vip-price {
    font-size: 2rem;
    color: var(--gold-taupe);
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    margin-left: 0.5rem;
}

.btn-vip {
    padding: 1.1rem 3.5rem;
    background: var(--gold-taupe);
    color: var(--white);
    border: 1px solid var(--gold-taupe);
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.4s ease;
    font-family: 'Cormorant Garamond', serif;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--white);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-vip:hover::before {
    width: 100%;
}

.btn-vip:hover {
    color: var(--gold-taupe);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 160, 136, 0.3);
}

.vip-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
    font-style: italic;
    letter-spacing: 1px;
}


/* Source: responsive.css */
@media (max-width: 991px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        margin-top: 1.5rem;
        padding: 1.5rem 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-intro h1 {
        font-size: 2.5rem;
    }

    .hero-intro .script {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .footer-title {
        font-size: 2.2rem;
    }

    .footer-subtitle {
        font-size: 1.6rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-image {
        height: 350px;
    }

    #heroCarousel .carousel-item,
    #heroCarousel .carousel-item img {
        height: 100vh;
    }

    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .package-card.featured {
        margin-top: 0;
    }

    .vip-container {
        padding: 3rem 2rem;
    }

    .vip-title {
        font-size: 2rem;
    }

    .vip-subtitle {
        font-size: 1.5rem;
    }

    .vip-feature-item {
        font-size: 0.9rem;
    }

    .btn-vip {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .preloader-logo {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .progress-ring {
        width: 100px;
        height: 100px;
    }

    .progress-percentage {
        font-size: 1.3rem;
    }
}


/* Source: bootstrap-overrides.css */
:root {
    --ivory: #faf8f6;
    --champagne: #f7f4f0;
    --gold-taupe: #b8a088;
    --white: #ffffff;
    --charcoal: #2c2c2c;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

/* Layout & Grid */
.container,
.container-fluid {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 100%;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col-sm-6,
.col-md-4,
.col-md-6,
.col-lg-5,
.col-lg-6 {
    position: relative;
    width: 100%;
    min-height: 1px;
}

@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.666%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

.g-3 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

@media (min-width: 992px) {
    .ps-lg-4 {
        padding-left: 1.5rem !important;
    }
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}

.d-block {
    display: block !important;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 0.375rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: 'Cormorant Garamond', serif;
}

.btn-dark {
    color: var(--white);
    background-color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-dark:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn:focus,
.btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(44, 44, 44, 0.25);
}

/* Collapse */
.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar > .container,
.navbar > .container-fluid {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-right: 1rem;
    text-decoration: none;
}

.navbar-brand img {
    width: 250px;
    height: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    width: 200px;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 30px;
    height: 2px;
    background-color: var(--charcoal);
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--charcoal);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    width: 100%;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    display: block;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--gold-taupe);
}

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

.navbar-nav .nav-link.active {
    color: var(--gold-taupe);
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        margin-top: 1.5rem;
        padding: 1.5rem 0;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: center;
        background: transparent;
        margin-top: 0;
        padding: 0;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        width: auto;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

/* Carousel */
.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-start),
.carousel-item-prev:not(.carousel-item-end) {
    position: absolute;
    top: 0;
}

.carousel-item-next.carousel-item-start,
.active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-prev.carousel-item-end,
.active.carousel-item-start {
    transform: translateX(-100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16' stroke='%23ffffff'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M11 1 L5 8 L11 15'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16' stroke='%23ffffff'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M5 1 L11 8 L5 15'/%3e%3c/svg%3e");
}

.carousel-indicators {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.carousel-indicators [data-bs-target] {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 0;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease, width 0.3s ease;
}

.carousel-indicators .active {
    width: 2rem;
    border-radius: 4px;
    background-color: var(--white);
}

#heroCarousel {
    position: relative;
}

#heroCarousel .carousel-item {
    height: 100vh;
}

#heroCarousel .carousel-item img {
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.95);
    transition: transform 0.5s ease;
}

#heroCarousel .carousel-item.photo-1 img { object-position: center 90%; }
#heroCarousel .carousel-item.photo-2 img { object-position: bottom 110%; }
#heroCarousel .carousel-item.photo-3 img { object-position: center 75%; }
#heroCarousel .carousel-item.photo-4 img { object-position: center 55%; }

#testimonialCarousel .carousel-item {
    height: auto;
    min-height: auto;
}

@media (max-width: 768px) {
    #heroCarousel .carousel-item,
    #heroCarousel .carousel-item img {
        height: 100vh;
    }

    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }
}

/* Form Controls */
.form-control {
    display: block;
    width: 100%;
    padding: 1.1rem 1rem;
    border: 1px solid var(--champagne);
    background: rgba(255, 255, 255, 0.8);
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    border-radius: 0.375rem;
    line-height: 1.5;
}

.form-control:focus {
    border-color: var(--gold-taupe);
    box-shadow: 0 0 0 3px rgba(184, 160, 136, 0.08);
    background: var(--white);
    outline: none;
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #a8a8a8;
    font-style: italic;
}

.form-control.error {
    border-color: #d9534f;
}


