/* Global Styles */
:root {
    --primary: #1B4D3E; /* Royal Green */
    --primary-dark: #123329;
    --accent: #D4AF37; /* Gold */
    --accent-hover: #B8962E;
    --bg-light: #FAF9F6; /* Off-White */
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --gray-light: #F0F0F0;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.serif {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--accent);
    color: var(--white);
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

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

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

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px; /* Increased for visibility */
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 80px;
    margin-bottom: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f6f8f7 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary);
}

.headline .highlight {
    color: var(--accent);
    font-style: italic;
}

.subtext {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Gallery / Before-After Slider */
.gallery {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.ba-slider-outer {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    user-select: none;
    overflow: hidden;
}

.ba-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    border-right: 2px solid var(--white);
}

.after-container img {
    width: 800px; /* Must match the outer container max-width */
    height: 100%;
    max-width: none;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 3px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: ew-resize;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.slider-handle::before, .slider-handle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.slider-handle::before {
    border-right: 8px solid var(--primary);
    left: 6px;
}

.slider-handle::after {
    border-left: 8px solid var(--primary);
    right: 6px;
}

/* About */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 20px 20px 0px var(--primary);
}

.about-content h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 30px;
}

.bio {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.highlights {
    list-style: none;
}

.highlights li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-weight: 600;
    color: var(--primary);
}

.highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Locations */
.locations {
    padding: 100px 0;
    background-color: var(--primary-dark);
    color: var(--white);
}

.locations .section-header h2 {
    color: var(--white);
}

.locations .section-header p {
    color: rgba(255,255,255,0.7);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.location-card {
    padding: 40px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.location-card:hover {
    background-color: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.location-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent);
}

.location-card p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.location-card .btn {
    margin-top: 20px;
    color: var(--white);
    border-color: var(--accent);
}

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

/* Footer */
.footer {
    padding: 60px 0;
    background-color: #0d0d0d;
    color: #888;
    text-align: center;
}

.footer .logo {
    color: var(--white);
    margin-bottom: 20px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .hero-grid, .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .headline {
        font-size: 40px;
    }
    
    .subtext {
        margin: 0 auto 30px;
    }
    
    .services-grid, .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        box-shadow: none;
        margin-bottom: 40px;
    }
}
