:root {
    --primary-red: #7A0A0A; 
    --secondary-red: #8B1515;
    --gold: #D4AF37;
    --bg-cream: #FAF7F2; 
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--bg-cream); color: var(--text-dark); line-height: 1.5; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--primary-red); }

/* Typography */
.subtitle { color: var(--primary-red); font-weight: 600; letter-spacing: 1px; font-size: 0.8rem; text-transform: uppercase; display: block; margin-bottom: 0.8rem; }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 2.5rem auto; }
.section-header h2 { font-size: 2rem; margin-bottom: 0.8rem; } 
.section-header p { color: var(--text-light); font-size: 0.95rem; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline { display: inline-block; padding: 0.6rem 1.5rem; border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-primary { background-color: var(--primary-red); color: var(--white); }
.btn-primary:hover { background-color: var(--secondary-red); transform: translateY(-2px); }
.btn-secondary { background-color: var(--gold); color: var(--primary-red); }
.btn-secondary:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-outline { background-color: transparent; border: 1px solid var(--white); color: var(--white); }
.btn-outline:hover { background-color: rgba(255,255,255,0.1); }
.card-link { color: var(--primary-red); text-decoration: none; font-weight: 600; font-size: 0.9rem; display: inline-block; margin-top: 0.8rem; }

/* Header / Nav (FIXED: removed sticky, added relative positioning) */
.navbar { background-color: var(--bg-cream); padding: 0.8rem 4%; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); flex-wrap: wrap; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo strong { font-family: var(--font-heading); color: var(--primary-red); font-size: 1.5rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-text span { font-family: var(--font-heading); color: var(--primary-red); font-weight: 700; font-size: 1rem; }
.logo-text small { font-size: 0.7rem; color: var(--text-light); }

.nav-links { display: flex; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); margin: 0 0.8rem; font-weight: 500; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-red); }

/* Mobile Menu Icon */
.menu-icon { display: none; font-size: 1.5rem; color: var(--primary-red); cursor: pointer; }

/* Hero Section */
.hero { background-color: var(--primary-red); color: var(--white); padding: 4rem 4%; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.rating-badge { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 1rem; font-weight: 600; }
.hero h1 { color: var(--white); font-size: 2.8rem; line-height: 1.2; margin-bottom: 1rem; } 
.hero p { font-size: 0.95rem; margin-bottom: 2rem; opacity: 0.9; } 
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.trust-features { display: flex; gap: 1rem; font-size: 0.85rem; opacity: 0.8; flex-wrap: wrap; }
.image-placeholder { width: 100%; height: 350px; background-color: rgba(255,255,255,0.1); border-radius: var(--border-radius-lg); border: 1px solid rgba(255,255,255,0.2); }

/* Services Section */
.services { padding: 4rem 4%; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.service-card { background: var(--white); padding: 1.8rem; border-radius: var(--border-radius-md); box-shadow: var(--box-shadow); transition: transform 0.3s; } 
.service-card:hover { transform: translateY(-4px); }
.icon-box { background-color: var(--primary-red); color: var(--white); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 10px; font-size: 1.2rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; } 
.service-card p { color: var(--text-light); font-size: 0.9rem; }

/* About Section */
.about { padding: 4rem 4%; background-color: var(--bg-cream); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto; align-items: center; }
.image-placeholder-portrait { width: 100%; height: 500px; background-color: #E8E2D9; border-radius: var(--border-radius-lg); }
.about-content h2 { font-size: 2rem; margin-bottom: 1rem; } 
.about-content p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.95rem; }
.about-content strong { color: var(--text-dark); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.feature-card { background: var(--white); padding: 1rem; border-radius: var(--border-radius-md); display: flex; gap: 0.8rem; box-shadow: var(--box-shadow); } 
.feature-card i { color: var(--gold); font-size: 1.2rem; margin-top: 3px; }
.feature-card h4 { font-size: 0.95rem; margin-bottom: 0.2rem; font-family: var(--font-body); }
.feature-card p { font-size: 0.8rem; margin-bottom: 0; }

/* Guidelines Section */
.guidelines { padding: 4rem 4%; background-color: var(--white); }
.guidelines-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.2rem; }
.guideline-item { background: var(--bg-cream); padding: 1.5rem 2rem; border-radius: var(--border-radius-md); display: flex; gap: 1.5rem; box-shadow: var(--box-shadow); border-left: 4px solid var(--primary-red); transition: transform 0.3s ease; }
.guideline-item:hover { transform: translateX(5px); }
.g-number { color: var(--gold); font-family: var(--font-heading); font-size: 2rem; font-weight: 700; line-height: 1; min-width: 45px; }
.guideline-item p { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0; line-height: 1.6; }

/* Reviews Section */
.reviews { background-color: var(--primary-red); padding: 4rem 4%; text-align: center; }
.reviews .section-header .subtitle, .reviews .section-header h2, .reviews .section-header p { color: var(--white); }
.reviews .section-header h2 { color: var(--gold); }
.rating-stars { color: var(--gold); font-size: 1rem; }

.review-slider { position: relative; max-width: 750px; margin: 0 auto; }
.review-slide { display: none; background: var(--bg-cream); padding: 2rem; border-radius: var(--border-radius-md); box-shadow: var(--box-shadow); } 
.review-slide.active { display: block; animation: fadeIn 0.4s ease-in-out; }

.quote-icon { font-size: 2rem; color: var(--gold); margin-bottom: 0.8rem; opacity: 0.5; }
.stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; }
.review-text { font-family: var(--font-heading); font-size: 1.25rem; font-style: italic; color: var(--text-dark); margin-bottom: 1.5rem; } 
.reviewer strong { display: block; font-size: 1rem; }
.reviewer span { color: var(--text-light); font-size: 0.85rem; }

.slider-controls { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 1.5rem; }
.slider-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); width: 35px; height: 35px; border-radius: 50%; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--gold); color: var(--primary-red); }
.slider-dots { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.dot { width: 10px; height: 10px; background: rgba(212, 175, 55, 0.3); border-radius: 50%; cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--gold); transform: scale(1.2); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Global Reach Section */
.global-reach { padding: 4rem 4%; text-align: center; background-color: var(--white); }
.globe-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 0.8rem; }
.global-reach h2 { font-size: 1.8rem; margin-bottom: 0.8rem; }
.global-reach p { max-width: 600px; margin: 0 auto 1.5rem auto; color: var(--text-light); font-size: 0.95rem; }
.location-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.8rem; }
.location-tags span { background-color: var(--bg-cream); padding: 0.5rem 1.2rem; border-radius: 25px; font-weight: 500; border: 1px solid #EAEAEA; color: var(--primary-red); font-size: 0.85rem; }

/* Contact Section */
.contact { padding: 4rem 4%; background-color: var(--bg-cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 1100px; margin: 0 auto; }
.contact-card, .action-card { background: var(--white); padding: 1.5rem; border-radius: var(--border-radius-md); box-shadow: var(--box-shadow); margin-bottom: 1.2rem; } 
.contact-card.location { display: flex; gap: 1rem; }
.contact-card.location i { font-size: 1.5rem; color: var(--primary-red); }
.contact-card.location h3 { font-family: var(--font-body); font-size: 1.1rem; margin-bottom: 0.3rem; }
.contact-card.location p { font-size: 0.9rem; }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.action-card { text-align: center; text-decoration: none; color: var(--text-dark); transition: transform 0.3s; }
.action-card:hover { transform: translateY(-4px); }
.action-card i { font-size: 1.5rem; margin-bottom: 0.8rem; }
.action-card h3 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 0.3rem; }
.action-card.whatsapp { background-color: var(--primary-red); color: var(--white); }
.action-card.whatsapp i, .action-card.whatsapp h3 { color: var(--white); }
.action-card.phone { background-color: var(--white); border: 1px solid #EAEAEA; }
.warning-banner { background-color: rgba(212, 175, 55, 0.1); border: 1px solid var(--gold); padding: 1rem; border-radius: var(--border-radius-md); color: var(--primary-red); font-size: 0.85rem; }
.contact-map { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--box-shadow); }

/* Footer */
footer { background-color: var(--primary-red); color: var(--white); padding: 3rem 4% 1.5rem 4%; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto 2.5rem auto; }
.logo.light strong, .logo.light .logo-text span { color: var(--white); }
.logo.light .logo-text small { color: rgba(255,255,255,0.7); }
.footer-brand p { margin-top: 1rem; opacity: 0.8; font-size: 0.85rem; max-width: 350px; }
.footer-links h3, .footer-contact h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.footer-links a { display: block; color: var(--white); text-decoration: none; margin-bottom: 0.6rem; opacity: 0.8; font-size: 0.9rem; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-contact p { margin-bottom: 0.8rem; opacity: 0.8; display: flex; gap: 10px; font-size: 0.9rem; }
.security-note { max-width: 1100px; margin: 0 auto 1.5rem auto; background-color: rgba(0,0,0,0.2); padding: 1rem; border-radius: var(--border-radius-md); font-size: 0.8rem; opacity: 0.9; border: 1px solid rgba(255,255,255,0.1); }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; font-size: 0.8rem; opacity: 0.7; }

/* Custom Image Styling */
.nav-logo { height: 50px; width: auto; border-radius: 50%; }
.footer-logo { height: 50px; width: auto; border-radius: 50%; border: 2px solid var(--white); }
.custom-hero-img { width: 100%; height: 350px; object-fit: cover; border-radius: var(--border-radius-lg); box-shadow: var(--box-shadow); }
.custom-about-img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--border-radius-lg); box-shadow: var(--box-shadow); background-color: var(--primary-red); }

/* Pop-up Modal */
.modal { position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); display: none; align-items: center; justify-content: center; }
.modal-content { background-color: var(--white); padding: 1.8rem; border-radius: var(--border-radius-md); width: 90%; max-width: 360px; position: relative; box-shadow: 0 15px 50px rgba(0,0,0,0.3); }
.close-btn { position: absolute; top: 10px; right: 15px; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }
.modal-content h2 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.modal-content p { color: var(--text-light); margin-bottom: 1.2rem; font-size: 0.85rem; }
.signup-form input { width: 100%; padding: 0.6rem; margin-bottom: 0.8rem; border: 1px solid #ddd; border-radius: 6px; font-family: var(--font-body); font-size: 0.9rem; }
.signup-form label { display: block; font-size: 0.8rem; margin-bottom: 0.2rem; color: var(--text-dark); font-weight: 500; }
.signup-form .btn-primary { width: 100%; text-align: center; padding: 0.7rem; margin-top: 0.5rem; }

/* --- Mobile Responsiveness (Fixes everything on smaller screens) --- */
@media (max-width: 900px) {
    /* Mobile Menu Logic */
    .menu-icon { display: block; }
    .header-btn { display: none; } /* Hide the book button in the header on mobile to save space */
    .nav-links { display: none; width: 100%; flex-direction: column; text-align: center; background-color: var(--white); padding: 1rem 0; margin-top: 1rem; border-radius: var(--border-radius-md); box-shadow: var(--box-shadow); }
    .nav-links.active { display: flex; }
    .nav-links a { margin: 0.8rem 0; padding: 0.5rem; width: 100%; }

    /* Adjust Layouts for Mobile */
    .hero { grid-template-columns: 1fr; text-align: center; padding: 3rem 4%; }
    .hero-buttons { justify-content: center; }
    .trust-features { justify-content: center; }
    
    .about-container { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    
    .contact-grid { grid-template-columns: 1fr; }
    .contact-actions { grid-template-columns: 1fr; }
    .contact-map { height: 350px; }
    
    .footer-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand p { margin: 1rem auto; }
    .footer-contact p { justify-content: center; }
    
    .guideline-item { flex-direction: column; gap: 0.5rem; padding: 1.5rem; }
}