/* --- CSS Variables & Resets --- */
:root {
    --primary: #2A4333; /* Deep Forest Green */
    --secondary: #D4AF37; /* Warm Gold */
    --bg-light: #F4F7F4; /* Very subtle green tint */
    --text-main: #333333;
    --text-light: #5A6B5D;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: var(--text-main); line-height: 1.6; background-color: var(--white); }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }

/* Buttons */
.btn { display: inline-block; padding: 0.8rem 2rem; border-radius: 5px; font-weight: 500; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--secondary); color: var(--primary); box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; padding: 1rem; font-size: 1.1rem; }

/* Nav */
.navbar { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1.2rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--primary); }
.logo span { color: var(--secondary); }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-weight: 500; color: var(--primary); transition: var(--transition); }
.nav-links a:hover { color: var(--secondary); }
.mobile-menu-btn { display: none; font-size: 1.5rem; color: var(--primary); }

/* Hero */
.hero { position: relative; height: 90vh; min-height: 600px; display: flex; align-items: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(42, 67, 51, 0.95) 0%, rgba(42, 67, 51, 0.7) 50%, rgba(0,0,0,0.3) 100%); }
.hero-content { position: relative; z-index: 3; color: var(--white); max-width: 650px; }
.legacy-badge { display: inline-block; background: var(--secondary); color: var(--primary); padding: 0.5rem 1.5rem; border-radius: 50px; font-weight: 600; margin-bottom: 1.5rem; }
.rating-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,0.15); backdrop-filter: blur(5px); padding: 0.5rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,0.2); }
.rating-badge i { color: var(--secondary); margin: 0 2px; }
.rating-badge .fa-google { color: #4285F4; background: white; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; margin-right: 10px; }
.hero h1 { font-size: 3.5rem; color: var(--white); margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }

/* General Sections */
section { padding: 6rem 0; }
.section-subtitle { display: block; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; font-size: 0.9rem;}
section h2 { font-size: 2.8rem; margin-bottom: 1.5rem; }
.minimal-text { color: var(--text-light); font-size: 1.1rem; margin-bottom: 3rem; }

/* About Section */
.about-container { display: flex; align-items: center; gap: 5rem; }
.about-image { flex: 1; position: relative; }
.about-image img { width: 100%; border-radius: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.experience-card { position: absolute; bottom: -30px; right: -30px; background: var(--white); padding: 2rem; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-left: 5px solid var(--secondary); text-align: center; }
.experience-card .number { display: block; font-size: 2.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.experience-card .text { color: var(--text-light); font-size: 0.9rem; font-weight: 500; }
.about-content { flex: 1; }
.about-content p { margin-bottom: 1rem; color: var(--text-main); }
.about-content .lead { font-size: 1.2rem; font-weight: 500; color: var(--primary); }
.contact-quick { font-size: 1.3rem; font-weight: 600; color: var(--primary); margin-top: 1.5rem; display: flex; align-items: center; gap: 10px; }
.contact-quick i { color: var(--secondary); }

/* Before/After Gallery */
.gallery { background: var(--white); }
.ba-slider-container { max-width: 800px; margin: 0 auto; border-radius: 15px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.ba-slider { position: relative; width: 100%; height: 400px; background: #eee; }
.ba-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.ba-image.before { width: 50%; z-index: 2; border-right: 3px solid var(--white); }
.ba-image.after { z-index: 1; }
.ba-label { position: absolute; bottom: 20px; padding: 5px 15px; background: rgba(0,0,0,0.6); color: var(--white); border-radius: 20px; font-size: 0.9rem; font-weight: 600; }
.ba-label-before { left: 20px; }
.ba-label-after { right: 20px; }
.ba-handle { position: absolute; top: 0; left: 50%; width: 40px; height: 100%; margin-left: -20px; z-index: 3; cursor: ew-resize; display: flex; align-items: center; justify-content: center; }
.ba-arrows { width: 40px; height: 40px; background: var(--white); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 10px rgba(0,0,0,0.3); }

/* Services */
.services { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem;}
.service-card { background: var(--white); padding: 2.5rem 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); border-top: 4px solid transparent;}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-top-color: var(--secondary);}
.service-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.service-card p { color: var(--text-light); }

/* Reviews */
.reviews { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem;}
.review-card { padding: 2rem; border-radius: 10px; background: var(--bg-light); border-left: 4px solid var(--secondary); }
.review-card .stars { color: var(--secondary); margin-bottom: 1rem; font-size: 0.9rem;}
.review-card p { font-style: italic; color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.95rem;}
.reviewer { color: var(--primary); font-weight: 500; }

/* Booking */
.booking { background: var(--bg-light); }
.booking-container { display: flex; background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.booking-info { flex: 1; background: var(--primary); color: var(--white); padding: 4rem; }
.booking-info h2 { color: var(--secondary); }
.booking-info p { margin-bottom: 2rem; color: rgba(255,255,255,0.8); }
.timing-details { background: rgba(255,255,255,0.1); padding: 1.5rem; border-radius: 8px; }
.timing-details i { color: var(--secondary); margin-right: 10px; }
.timing-details p { margin-bottom: 0.5rem; }
.booking-form-box { flex: 1.5; padding: 4rem; }
.form-row { display: flex; gap: 1rem; }
.form-group { margin-bottom: 1.5rem; width: 100%; }
.form-group.half { width: 50%; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--primary); }
.form-group input, .form-group select { width: 100%; padding: 1rem; border: 1px solid #CBD5E0; border-radius: 5px; font-family: inherit; font-size: 1rem; background: var(--white); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2); }
.form-message { margin-top: 1.5rem; padding: 1rem; border-radius: 5px; display: none; font-weight: 500; }
.form-message.success { display: block; background: #C6F6D5; color: #22543D; border-left: 4px solid #38A169; }

/* Footer */
footer { background: #1a291f; color: var(--white); padding: 5rem 0 2rem; }
.footer-container { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-info { flex: 1; min-width: 300px; }
.footer-info h3 { color: var(--white); font-size: 2rem; margin-bottom: 1rem; }
.footer-info p { color: #A0AEC0; margin-bottom: 1rem; }
.contact-details p { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1rem; color: #E2E8F0; }
.contact-details i { color: var(--secondary); margin-top: 5px; }
.footer-map { flex: 1; min-width: 300px; }
.footer-bottom { text-align: center; padding-top: 3rem; margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.1); color: #718096; font-size: 0.9rem; }

/* Animations */
.reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s ease; }
.active.reveal-up, .active.reveal-left, .active.reveal-right { opacity: 1; transform: translate(0,0); }

@media (max-width: 992px) {
    .about-container, .booking-container { flex-direction: column; }
    .experience-card { right: 0; bottom: -20px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .booking-info, .booking-form-box { padding: 2rem; }
    .form-row { flex-direction: column; }
    .form-group.half { width: 100%; }
    .ba-slider { height: 250px; }
}
