/* Chillax Hotel and Spa - Ultra Premium Main Styles */

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

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo {
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-champagne));
    border-radius: 2px;
    animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}
:root {
    --primary-color: #1a1614;
    --secondary-color: #C9A84C;
    --accent-color: #E8DDD3;
    --warm-cream: #FAF6F1;
    --warm-ivory: #F5EDE4;
    --warm-beige: #D4C5B5;
    --warm-taupe: #8B7D6B;
    --lavender: #9B8A7A;
    --lavender-light: #E8DDD3;
    --lavender-dark: #7A6E5D;
    --gold-light: #E8C968;
    --gold-dark: #A88B2E;
    --gold-champagne: #F4E8C8;
    --light-color: #FDFBF8;
    --dark-color: #12100E;
    --text-color: #2C2520;
    --text-light: #FAF6F1;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 20px 60px rgba(201, 168, 76, 0.18);
    --shadow-lavender: 0 20px 60px rgba(155, 138, 122, 0.15);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
    background: var(--light-color);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(155, 138, 122, 0.04) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

h1 {
    font-weight: 700;
}

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

/* Header & Navigation */
.navbar {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
}

.nav-brand h1 {
    font-size: 1.9rem;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    border-radius: 50%;
    transition: var(--transition);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-light));
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

.btn-admin {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-dark) 100%);
    color: var(--dark-color) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

.btn-admin:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    width: 25px;
    height: 20px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: absolute;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

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

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

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

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(5, 5, 5, 0.85) 0%, rgba(10, 10, 10, 0.75) 50%, rgba(181, 126, 220, 0.15) 100%),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(247, 231, 206, 0.15) 100%);
    position: relative;
}

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

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

.section-subtitle {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--secondary-color);
    transform: translateY(-50%);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 18px;
    opacity: 0.85;
}

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

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-map iframe {
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(181, 126, 220, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 30px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 25%, var(--secondary-color) 50%, var(--gold-light) 75%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% auto;
    letter-spacing: -1px;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 20px 55px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-dark) 100%);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    margin: 0 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

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

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--secondary-color) 100%);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-color: rgba(181, 126, 220, 0.5);
    color: var(--lavender-light);
    box-shadow: 0 8px 30px rgba(181, 126, 220, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-dark) 100%);
    border-color: var(--lavender);
    color: var(--white);
    box-shadow: 0 15px 45px rgba(181, 126, 220, 0.4);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(230, 230, 250, 0.3) 100%);
    position: relative;
}

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

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% auto;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--lavender-dark);
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--lavender), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

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

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(181, 126, 220, 0.08) 100%);
    margin-bottom: 25px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(181, 126, 220, 0.15) 100%);
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 25px;
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: var(--dark-color);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(181, 126, 220, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gallery .section-title h2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% auto;
}

.gallery .section-title p {
    color: rgba(230, 230, 250, 0.8);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 320px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.9) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 25px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    transform: translateY(30px);
    z-index: 2;
}

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

.gallery-overlay p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(230, 230, 250, 0.3) 0%, var(--white) 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 45px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(181, 126, 220, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
}

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

.pricing-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(212, 175, 55, 0.08) 100%);
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-card h3 {
    margin-bottom: 25px;
    font-size: 1.7rem;
    color: var(--primary-color);
    font-weight: 600;
}

.price {
    font-size: 3.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price span {
    font-size: 1rem;
    color: var(--lavender-dark);
    font-weight: 400;
    -webkit-text-fill-color: var(--lavender-dark);
}

.features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.features li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    color: var(--text-color);
    font-size: 0.95rem;
}

.features li:before {
    content: "✓";
    color: var(--secondary-color);
    margin-right: 14px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(230, 230, 250, 0.2) 50%, var(--white) 100%);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(181, 126, 220, 0.15);
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 5rem;
    color: var(--lavender);
    opacity: 0.15;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lavender);
    border-color: rgba(181, 126, 220, 0.3);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-author h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.rating {
    color: var(--secondary-color);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--dark-color);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(181, 126, 220, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-title h2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% auto;
}

.contact .section-title p {
    color: rgba(230, 230, 250, 0.8);
}

.contact-form {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 55px;
    border-radius: 28px;
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-champagne, #D4AF37));
    transition: width 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.form-group:focus-within::after {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.required-star {
    color: var(--secondary-color);
    font-weight: 700;
    margin-left: 3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(250, 250, 250, 0.8);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
    background: var(--white);
}

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

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(155, 138, 122, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-text p {
    color: rgba(250, 246, 241, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.newsletter-input-group input::placeholder {
    color: rgba(250, 246, 241, 0.4);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input-group .btn {
    margin: 0;
    white-space: nowrap;
}

.newsletter-note {
    color: rgba(250, 246, 241, 0.4);
    font-size: 0.8rem;
    margin-left: 24px;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--warm-cream) 0%, var(--white) 100%);
    position: relative;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: left;
    transition: var(--transition);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
    font-size: 1rem;
}

/* Booking Section */
.booking {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 50%, var(--lavender-dark) 100%);
    color: var(--white);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(181, 126, 220, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.booking .section-title h2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-champagne) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% auto;
}

.booking .section-title p {
    color: rgba(230, 230, 250, 0.9);
}

.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 55px;
    border-radius: 28px;
    color: var(--text-color);
    box-shadow: var(--shadow-gold);
    max-width: 750px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.booking-form h3 {
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.9rem;
    font-weight: 600;
}

.booking-form .form-group label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 90px 0 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), var(--lavender), var(--secondary-color), transparent);
}

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

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section p {
    margin-bottom: 18px;
    color: rgba(230, 230, 250, 0.85);
    line-height: 1.9;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section a {
    color: rgba(230, 230, 250, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(230, 230, 250, 0.85);
    font-size: 0.95rem;
    line-height: 1.9;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 400;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    color: rgba(230, 230, 250, 0.7);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 35px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: rgba(230, 230, 250, 0.7);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    }
    50% {
        box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.float {
    animation: float 4s ease-in-out infinite;
}

.glow {
    animation: glow 3s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Sticky Book Now CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-dark) 100%);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition);
}

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

.sticky-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.55);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--secondary-color) 100%);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition);
}

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

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

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

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content img {
    animation: lightboxZoom 0.4s ease-out;
}

@keyframes lightboxZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: 16px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--secondary-color);
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

/* Page Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-champagne, #D4AF37));
    width: 0%;
    z-index: 10001;
    transition: width 0.15s ease;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

/* Stagger Animations */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-item.in-view {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--stagger-delay, 0s) forwards;
}

@media (prefers-reduced-motion: reduce) {
    .stagger-item {
        opacity: 1;
        transform: none;
    }
    .stagger-item.in-view {
        animation: none;
    }
}

/* Loading Skeleton */
.skeleton-card {
    background: linear-gradient(90deg, #f5f0e8 0%, #faf7f2 50%, #f5f0e8 100%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: 12px;
}

.skeleton-card--gallery { height: 280px; }
.skeleton-card--testimonial { height: 250px; }
.skeleton-card--pricing { height: 300px; }

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .skeleton-card {
        animation: none;
    }
}
