:root {
    --bg-color: #F2F1ED;
    --primary-color: #2D5A5A;
    --accent-color: #C5A059; /* Gold/Bronze */
    --text-color: #1A1A1A;
    --text-muted: #555555;
    --white: #FFFFFF;
    --header-height: 80px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
    background-color: var(--bg-color);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Abhaya Libre', serif;
    font-weight: 700;
}

a {
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* Layout Elements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

section {
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

.bg-white { background-color: var(--white); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-large { font-size: 1.1rem; margin-bottom: 20px; }
.section-title { font-size: 3rem; color: var(--primary-color); margin-bottom: 25px; }

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(242, 241, 237, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 90, 90, 0.08);
}

header .container {
    height: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-style: normal;
    text-decoration: none;
    color: var(--text-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1100;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1050;
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 1.8rem;
        font-weight: 700;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 90, 90, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-accent {
    background-color: var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-visual {
    flex: 1;
    height: 480px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero p { margin: 0 auto 35px; }
    .hero-visual {
        width: 100%;
        height: 320px;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
    }
    .hero-btns .btn {
        width: 100%;
        margin-bottom: 12px;
    }
}

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item { text-align: center; }
.trust-val { display: block; font-size: 1.5rem; font-weight: 700; color: var(--primary-color); }
.trust-stars { color: var(--accent-color); }
.trust-label { display: block; font-size: 0.8rem; color: var(--text-muted); }

/* Common Section Styles */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; color: var(--primary-color); margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

@media (max-width: 768px) {
    .section-header h2 { font-size: 2.2rem; }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(45, 90, 90, 0.05);
}

.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.service-card i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 20px; display: block; }
.service-card h3 { margin-bottom: 10px; font-size: 1.4rem; }

/* About Section */
.about-flex { display: flex; align-items: center; gap: 80px; flex-wrap: wrap; }
.about-image-container { flex: 1; min-width: 280px; position: relative; }
.about-image-wrapper { position: relative; max-width: 500px; margin: 0 auto; }
.about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--accent-color);
    padding: 25px;
    border-radius: var(--border-radius);
    color: var(--white);
    width: 180px;
    box-shadow: var(--shadow);
}
.about-badge h4 { font-size: 1.6rem; }
.about-badge p { font-size: 0.8rem; }
.about-content { flex: 1; min-width: 300px; }

.check-list { margin-bottom: 35px; }
.check-list li { margin-bottom: 10px; }
.check-list i { color: var(--accent-color); margin-right: 10px; }

@media (max-width: 768px) {
    .about-image-wrapper { margin-bottom: 50px; }
    .about-badge { bottom: -15px; right: 0; padding: 15px; width: 140px; }
}

/* Experience Section - HIGH CONTRAST OVERRIDES */
.experience-section { 
    background-color: var(--primary-color) !important; 
    color: var(--white) !important; 
}
.experience-section .section-header h2 { 
    color: var(--white) !important; 
}
.experience-section .section-header p { 
    color: rgba(255, 255, 255, 0.9) !important; 
}
.experience-section h3 {
    color: var(--accent-color) !important;
}
.experience-section p {
    color: #eeeeee !important;
}

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 15px; }
.gallery-item { aspect-ratio: 1; overflow: hidden; border-radius: var(--border-radius); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }

/* Video Grid */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; }
.video-container {
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16;
}
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

@media (max-width: 1100px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { .video-grid { grid-template-columns: 1fr; gap: 30px; } }

/* CTA - HIGH CONTRAST OVERRIDES */
.booking-cta { 
    background-color: var(--primary-color) !important; 
    padding: 100px 0;
}
.cta-title { 
    color: var(--white) !important; 
    font-size: 3.5rem; 
    margin-bottom: 25px; 
}
.cta-text { 
    color: #eeeeee !important; 
    max-width: 600px; 
    margin: 0 auto 40px; 
    font-size: 1.2rem; 
}

@media (max-width: 768px) { 
    .booking-cta { padding: 60px 0 !important; }
    .cta-title { font-size: 2.2rem !important; } 
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 80px; }
.info-title { font-size: 2rem; margin-bottom: 20px; color: var(--primary-color); }
.info-item { margin-bottom: 25px; }
.info-label { font-weight: 600; }
.info-label i { margin-right: 15px; color: var(--accent-color); }

.map-container { border-radius: var(--border-radius); overflow: hidden; height: 350px; width: 100%; }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Footer */
footer { padding: 80px 0 30px; background-color: var(--white); border-top: 1px solid rgba(45, 90, 90, 0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { font-size: 2rem; display: block; margin-bottom: 20px; }
.footer-links h3, .footer-socials h3 { margin-bottom: 20px; color: var(--primary-color); }
.footer-links ul li, .footer-socials ul li { margin-bottom: 10px; }
.footer-links a, .footer-socials a { 
    text-decoration: none; 
    color: var(--text-muted); 
    transition: var(--transition);
}
.footer-links a:hover, .footer-socials a:hover { 
    color: var(--primary-color); 
}
.footer-socials i { margin-right: 10px; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.05); color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; } }

/* Floating Buttons */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1001;
    text-decoration: none;
}
