* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Nunito', sans-serif;
    background-color: #FAF6F1;
    color: #1A1A2E;
    overflow-x: hidden;
}
h1, h2, h3, h4, .brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26,26,46,0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: 0.3s;
    border-bottom: 1px solid rgba(201,169,110,0.3);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #C9A96E;
    letter-spacing: 1px;
}
.brand-sub {
    font-size: 0.7rem;
    color: #F2C4CE;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: #FAF6F1;
    font-weight: 500;
    transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: #C9A96E;
    text-shadow: 0 0 4px rgba(201,169,110,0.5);
}
.btn-book-nav {
    background: #C9A96E;
    padding: 8px 20px;
    border-radius: 40px;
    color: #1A1A2E !important;
    font-weight: bold;
}
.btn-book-nav:hover {
    background: #C2748A;
    color: white !important;
    box-shadow: 0 0 12px #C2748A;
}
.hamburger {
    display: none;
    font-size: 1.6rem;
    color: #C9A96E;
    cursor: pointer;
}
/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1600&auto=format') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(194,116,138,0.2), rgba(26,26,46,0.7));
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.hero-title {
    font-size: 4rem;
    color: #FAF6F1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.gold-shimmer {
    background: linear-gradient(135deg, #C9A96E, #F4C542, #C9A96E);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.btn-primary, .btn-gold {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    margin: 0.5rem;
}
.btn-primary {
    background: #C2748A;
    color: white;
    border: 1px solid #C9A96E;
}
.btn-primary:hover {
    background: #C9A96E;
    transform: scale(1.03);
    box-shadow: 0 0 15px #C9A96E;
}
.btn-gold {
    background: #C9A96E;
    color: #1A1A2E;
}
.btn-gold:hover {
    background: #C2748A;
    color: white;
    box-shadow: 0 0 15px #C2748A;
}
/* Glass card effect */
.glass-card {
    background: rgba(255,255,245,0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201,169,110,0.4);
    border-radius: 28px;
    padding: 1.8rem;
    transition: all 0.4s;
}
.glass-card:hover {
    transform: translateY(-8px);
    border-color: #C9A96E;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.2);
}
/* Sections */
.section-padding {
    padding: 80px 0;
}
.dark-bg {
    background: #1A1A2E;
    color: #FAF6F1;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.gold-line {
    width: 80px;
    height: 2px;
    background: #C9A96E;
    margin: 1rem auto;
}
/* Services grid */
.services-grid, .feature-row, .values-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.service-card {
    text-align: center;
    background: rgba(255,248,235,0.8);
}
.service-card i {
    font-size: 2.5rem;
    color: #C2748A;
    margin-bottom: 1rem;
}
/* Testimonials carousel */
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    background: #C9A96E;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.prev { left: 0; }
.next { right: 0; }
/* Gallery masonry */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
}
.gallery-img {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    color: white;
    font-weight: bold;
    text-shadow: 0 1px 3px black;
}
/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 20px;
}
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
/* Floating buttons */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.whatsapp-float, .call-float, .scroll-top {
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.call-float { background: #C2748A; }
.scroll-top { background: #C9A96E; display: none; }
.whatsapp-float:hover, .call-float:hover, .scroll-top:hover { transform: scale(1.1); }
/* Footer */
.footer {
    background: #1A1A2E;
    color: #FAF6F1;
    padding: 3rem 0 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.social-icons a {
    color: #C9A96E;
    margin-right: 1rem;
    font-size: 1.4rem;
}
/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #1A1A2E;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 1rem;
        text-align: center;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero-title { font-size: 2.2rem; }
    .container { padding: 0 1rem; }
}
/* Form styles */
.form-row { margin-bottom: 1rem; }
input, select, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid #C9A96E;
    background: rgba(255,255,245,0.9);
}
.btn-block { width: 100%; text-align: center; }
