/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #FFF9F7;
    color: #2D2A2A;
    overflow-x: hidden;
}
h1, h2, h3, h4, .brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section-padding {
    padding: 80px 0;
}
.dark-bg {
    background: #FAF5F7;
}
.text-center { text-align: center; }

/* ==================== FLOATING ELEMENTS ==================== */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.floating-elements span {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    color: #D4A04F;
    animation: floatAnim 15s infinite ease-in-out;
}
.float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.float-2 { top: 30%; right: 8%; animation-delay: 3s; font-size: 3rem; }
.float-3 { bottom: 20%; left: 10%; animation-delay: 6s; }
.float-4 { bottom: 40%; right: 5%; animation-delay: 9s; font-size: 3.5rem; }
@keyframes floatAnim {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -40px) rotate(15deg); }
    50% { transform: translate(-10px, 30px) rotate(-10deg); }
    75% { transform: translate(30px, -20px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 249, 247, 0.92);
    backdrop-filter: blur(14px);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(212, 160, 79, 0.15);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 48px;
    width: auto;
    border-radius: 50%;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #C4A56E;
    letter-spacing: 1px;
}
.brand-sub {
    font-size: 0.7rem;
    color: #B38B6D;
}
.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: #2D2A2A;
    font-weight: 500;
    transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: #C4A56E;
}
.btn-book-nav {
    background: linear-gradient(135deg, #D4A04F, #C4A56E);
    padding: 8px 22px;
    border-radius: 40px;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(212,160,79,0.25);
}
.btn-book-nav:hover {
    background: #C4A56E;
    transform: scale(1.02);
}
.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #C4A56E;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(248, 224, 230, 0.3), rgba(245, 214, 224, 0.2)), url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1600&auto=format') center/cover fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(212,160,79,0.08), rgba(255,249,247,0.3));
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}
.hero-title {
    font-size: 3.8rem;
    color: #2D2A2A;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #4A3F3F;
    margin-bottom: 2rem;
}
.btn-primary, .btn-outline, .btn-gold {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    margin: 0.5rem;
    transition: 0.3s;
}
.btn-primary {
    background: linear-gradient(135deg, #D4A04F, #C4A56E);
    color: white;
    box-shadow: 0 5px 15px rgba(212,160,79,0.35);
}
.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(212,160,79,0.5);
}
.btn-outline {
    border: 2px solid #D4A04F;
    color: #D4A04F;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: #D4A04F;
    color: white;
}
.btn-gold {
    background: #D4A04F;
    color: #2D2A2A;
}
.btn-gold:hover {
    background: #C4A56E;
    transform: scale(1.02);
}
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    z-index: 2;
    position: relative;
}
.stat-item {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(212,160,79,0.2);
}
.stat-item i {
    color: #D4A04F;
    margin-right: 0.5rem;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.5rem;
    color: #2D2A2A;
}
.gold-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #D4A04F, #C4A56E);
    margin: 1rem auto;
}

/* ==================== GLASS CARDS ==================== */
.glass-card {
    background: rgba(255, 249, 247, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 1.8rem;
    border: 1px solid rgba(212,160,79,0.2);
    transition: all 0.4s ease;
}
.glass-card:hover {
    transform: translateY(-8px);
    border-color: #D4A04F;
    box-shadow: 0 20px 35px -12px rgba(212,160,79,0.2);
}

/* ==================== FEATURES GRID ==================== */
.features-grid, .services-grid, .categories-grid, .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.feature, .service-card, .category, .package-card {
    text-align: center;
}
.feature i, .service-card i, .category i {
    font-size: 2.5rem;
    color: #D4A04F;
    margin-bottom: 1rem;
}
.service-card h3, .feature h3 { color: #2D2A2A; }

/* ==================== CATEGORIES ==================== */
.categories-grid .category {
    background: rgba(255,249,247,0.6);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(212,160,79,0.1);
}
.cat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F8E0E6, #F5D6E0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* ==================== SPA EXPERIENCE ==================== */
.spa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.spa-text ul {
    list-style: none;
    margin: 1.5rem 0;
}
.spa-text ul li {
    margin-bottom: 0.6rem;
}
.spa-text ul li i {
    color: #D4A04F;
    margin-right: 0.5rem;
}

/* ==================== BEFORE & AFTER ==================== */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.ba-item {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.ba-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2D2A2A;
}
.ba-label {
    background: rgba(255,255,255,0.7);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

/* ==================== 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;
}
.testimonial i.fa-star {
    color: #D4A04F;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #D4A04F;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
}
.prev { left: 0; }
.next { right: 0; }

/* ==================== PACKAGES ==================== */
.package-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4A04F;
    margin: 1rem 0;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: linear-gradient(135deg, #F8E0E6, #F5D6E0);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 40px;
    margin: 2rem;
}
.cta-content h2 {
    font-size: 2.5rem;
    color: #2D2A2A;
}
.cta-content p {
    font-size: 1.1rem;
    margin: 1rem 0;
}

/* ==================== CONTACT & FORM ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.contact-info i {
    color: #D4A04F;
    width: 1.8rem;
}
.contact-info a {
    color: #2D2A2A;
    text-decoration: none;
}
.hours { margin-top: 1.5rem; }
.form-row { margin-bottom: 1.2rem; }
input, select, textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid rgba(212,160,79,0.3);
    background: white;
    font-family: 'Poppins', sans-serif;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #D4A04F;
    box-shadow: 0 0 0 3px rgba(212,160,79,0.1);
}
.btn-block {
    width: 100%;
    text-align: center;
}
.form-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 0.5rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #1A1A1A;
    color: #F5F0EB;
    padding: 3rem 0 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.footer-logo {
    height: 50px;
    width: auto;
    border-radius: 50%;
}
.social-icons a {
    color: #D4A04F;
    margin-right: 1rem;
    font-size: 1.4rem;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #C4A56E;
}
.footer ul {
    list-style: none;
}
.footer ul li a {
    color: #B3A89E;
    text-decoration: none;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 2rem;
}

/* ==================== 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 {
    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.15);
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.whatsapp-float { background: #25D366; }
.call-float { background: #D4A04F; }
.scroll-top { background: #C4A56E; display: none; }
.whatsapp-float:hover, .call-float:hover, .scroll-top:hover { transform: scale(1.08); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .spa-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(255,249,247,0.98);
        position: absolute;
        top: 70px;
        left: 5%;
        width: 90%;
        border-radius: 28px;
        padding: 1.5rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }
    .stat-item { font-size: 0.8rem; padding: 0.5rem 1rem; }
    .section-header h2 { font-size: 2rem; }
    .cta-banner { margin: 1rem; padding: 2rem 1rem; }
    .cta-content h2 { font-size: 1.8rem; }
    .floating-elements { display: none; }
}
@media (max-width: 480px) {
    .ba-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .container { padding: 0 1rem; }
}
