/* =========================================
   HANSUJA MAKEOVERS - DARK LUXURY THEME
   ========================================= */

/* --- Variables & Reset --- */
:root {
    --bg-main: #0a0a0a;        /* Deep Midnight Black */
    --bg-secondary: #141414;   /* Slightly lighter dark */
    --surface: #1e1e1e;        /* Card backgrounds */
    --gold: #D4AF37;           /* Classic Luxury Gold */
    --gold-hover: #b5952f;
    --text-dark: #ffffff;      /* White for dark theme */
    --text-light: #cccccc;     /* Light grey for paragraphs */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.6;
}

/* --- Utility Classes --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bg-light { background-color: var(--bg-secondary); }

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem; 
    text-align: center; 
    margin-bottom: 50px; 
    color: var(--gold); 
    position: relative;
    letter-spacing: 1.5px;
}
.section-title::after { 
    content: ''; 
    display: block; 
    width: 60px; 
    height: 2px; 
    background: var(--text-dark); 
    margin: 15px auto 0; 
}

section { padding: 90px 0; }
.mt-3 { margin-top: 20px; }
.w-100 { width: 100%; }

/* --- Buttons --- */
.btn-primary, .btn-secondary, .btn-whatsapp {
    display: inline-block; 
    padding: 12px 30px; 
    font-size: 1rem; 
    font-weight: 500; 
    text-decoration: none; 
    border-radius: 4px; 
    transition: var(--transition); 
    cursor: pointer; 
    border: none; 
    text-align: center;
    letter-spacing: 1px;
}
.btn-primary { 
    background-color: var(--gold); 
    color: #000; 
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2); 
}
.btn-primary:hover { 
    background-color: var(--gold-hover); 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); 
}
.btn-secondary { 
    background-color: transparent; 
    color: var(--gold); 
    border: 1px solid var(--gold); 
}
.btn-secondary:hover { 
    background-color: var(--gold); 
    color: #000; 
}
.btn-whatsapp { 
    background-color: #25D366; 
    color: #000; 
    font-weight: 600; 
}
.btn-whatsapp:hover { background-color: #1ebe5d; color: #fff;}

/* --- Navbar --- */
#navbar {
    position: fixed; top: 0; width: 100%; 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 20px 50px; background: rgba(10, 10, 10, 0.8); 
    backdrop-filter: blur(10px);
    transition: var(--transition); z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
#navbar.scrolled { padding: 15px 50px; background: rgba(0, 0, 0, 0.95); }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: #fff; }
.logo span { color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { 
    text-decoration: none; color: #fff; font-weight: 400; 
    font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px;
    transition: var(--transition); 
}
.nav-links a:hover { color: var(--gold); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--gold); }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1522337660859-02fbefca4702?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-content h1 { 
    font-family: var(--font-heading); font-size: 5rem; 
    color: #fff; margin-bottom: 15px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.hero-content p { 
    font-size: 1.3rem; color: var(--gold); margin-bottom: 30px; 
    letter-spacing: 3px; text-transform: uppercase;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; 
    background-color: #25d366; color: #FFF; border-radius: 50%; 
    text-align: center; font-size: 32px; box-shadow: 0 5px 20px rgba(37,211,102,0.4); 
    z-index: 999; display: flex; align-items: center; justify-content: center; 
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* --- About Section & Slideshow --- */
.about-content { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.about-text { flex: 1; min-width: 300px; }
.about-text p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 25px; }
.highlights { display: flex; flex-direction: column; gap: 15px; }
.highlight-item { display: flex; align-items: center; gap: 15px; font-size: 1.1rem; color: #fff;}
.highlight-item i { color: var(--gold); font-size: 1.5rem; }

.slideshow-container {
    flex: 1; min-width: 300px; position: relative; width: 100%; height: 450px; 
    border-radius: 8px; overflow: hidden; border: 1px solid rgba(212,175,55,0.2);
}
.slide {
    display: none; width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0;
}
.slide.active { display: block; animation: fadeEffect 1s ease-in; }
@keyframes fadeEffect { from { opacity: 0.6; } to { opacity: 1; } }

/* --- Services Section --- */
.category-title {
    font-family: var(--font-heading); font-size: 1.8rem; color: #fff; 
    margin: 50px 0 25px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.category-title i { color: var(--gold); margin-right: 10px; }

.service-grid { 
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; 
}
.service-card {
    background: var(--surface); padding: 20px; border-radius: 8px; text-align: center; 
    border: 1px solid rgba(255,255,255,0.05); transition: var(--transition); 
    display: flex; flex-direction: column; justify-content: space-between;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.service-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; margin-bottom: 15px; }
.service-card h4 { font-size: 1.2rem; margin-bottom: 5px; color: #fff; }
.service-card .price { color: var(--gold); font-weight: 500; font-size: 1.3rem; margin-bottom: 15px;}

.btn-book {
    display: block; width: 100%; padding: 10px 0; background-color: transparent; 
    color: var(--gold); text-decoration: none; border-radius: 4px; font-weight: 500; 
    border: 1px solid var(--gold); transition: var(--transition);
}
.btn-book i { margin-right: 5px; }
.btn-book:hover { background-color: var(--gold); color: #000; }

/* --- Gallery Section --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 15px; }
.gallery-img { 
    width: 100%; height: 300px; object-fit: cover; border-radius: 4px; 
    cursor: pointer; transition: var(--transition); filter: grayscale(20%);
}
.gallery-img:hover { filter: grayscale(0%); transform: scale(1.02); z-index: 1; position: relative; }

/* --- Lightbox --- */
.lightbox {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.lightbox-content { max-width: 90%; max-height: 90%; border: 2px solid var(--gold); }
.close-lightbox { position: absolute; top: 20px; right: 40px; color: var(--gold); font-size: 40px; cursor: pointer; }

/* --- Pricing Section --- */
.pricing-cards { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.price-card {
    background: var(--surface); padding: 40px; border-radius: 8px; text-align: center; 
    flex: 1; min-width: 300px; max-width: 350px; border: 1px solid rgba(255,255,255,0.05); 
    position: relative; transition: var(--transition);
}
.price-card:hover { transform: translateY(-10px); border-color: var(--gold); }
.price-card.popular { border: 2px solid var(--gold); background: #111; transform: scale(1.03); }
.price-card.popular:hover { transform: scale(1.03) translateY(-10px); }
.badge { 
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%); 
    background: var(--gold); color: #000; padding: 5px 20px; font-weight: bold; 
    border-radius: 2px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px;
}
.price-card h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 15px; color: #fff; }
.price-tag { font-size: 2.5rem; color: var(--gold); font-weight: 400; margin-bottom: 20px; font-family: var(--font-heading);}
.price-card ul { list-style: none; margin-bottom: 30px; color: var(--text-light); text-align: left; }
.price-card ul li { margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px; }

/* --- Testimonials --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { 
    background: var(--surface); padding: 30px; border-radius: 8px; 
    text-align: center; border-top: 3px solid var(--gold);
}
.stars { color: var(--gold); margin-bottom: 15px; font-size: 1.2rem; }
.testimonial-card p { font-style: italic; margin-bottom: 20px; color: var(--text-light); }
.testimonial-card h4 { font-family: var(--font-heading); color: #fff; font-size: 1.2rem; }

/* --- Contact Section --- */
.contact-wrapper { display: flex; flex-wrap: wrap; gap: 40px; }
.contact-form { flex: 1 1 400px; }
.contact-map { flex: 1 1 400px; min-height: 350px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 15px; margin-bottom: 20px; 
    background: var(--bg-main); border: 1px solid rgba(255,255,255,0.1); 
    color: #fff; border-radius: 4px; font-family: var(--font-body); outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-map iframe { width: 100%; height: 100%; border-radius: 4px; }

/* --- Footer --- */
footer { background-color: #050505; color: #fff; padding: 50px 0 20px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-logo { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px; }
.footer-logo span { color: var(--gold); }
.footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.footer-social a { color: var(--gold); font-size: 1.5rem; transition: var(--transition); }
.footer-social a:hover { color: #fff; transform: translateY(-3px); }
.footer-address { margin-bottom: 20px; color: var(--text-light); }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; color: #555; font-size: 0.9rem; }

/* --- Scroll Reveal Animation (FIXED SO NOTHING DISAPPEARS) --- */
.reveal { 
    opacity: 0.8; /* Set to 0.8 so it's always visible even if JS fails */
    transform: translateY(20px); 
    transition: all 0.6s ease-out; 
}
.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 4rem; }
    .price-card.popular { transform: scale(1); }
    .price-card.popular:hover { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    #navbar { padding: 15px 20px; }
    #navbar.scrolled { padding: 15px 20px; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%; 
        background: rgba(10,10,10,0.98); flex-direction: column; text-align: center; 
        padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero-content h1 { font-size: 3rem; }
    .hero-content p { font-size: 1rem; }
    .slideshow-container { height: 350px; }
}

@media (max-width: 480px) {
    .section-title { font-size: 2.2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .price-card { min-width: 100%; }
}