:root {
    --primary: #064e3b; /* Deep Emerald Green */
    --accent: #d97706;  /* Soft Gold/Amber */
    --accent-hover: #b45309;
    --background: #ffffff;
    --surface: #f9fafb;
    --text-main: #111827;
    --text-muted: #4b5563;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, .font-outfit {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

/* Navigation - Luxury Minimalist */
nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.2s;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.cta-button {
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

/* Split-Hero Layout */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    align-items: center;
    gap: 4rem;
    padding: 4rem 5%;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    background: #f3f4f6;
}

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

/* Sections - Emerald Luxury Boutique */
.section { padding: 8rem 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 3rem; color: var(--primary); }

.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

/* Appointment Widget UI */
.whatsapp-widget {
    background: #f0f2f5;
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    margin: 4rem auto;
    box-shadow: var(--shadow-lg);
    border: 10px solid #ffffff;
}

.chat-bubble {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.chat-bubble.bot { border-bottom-left-radius: 2px; }

/* Reviews */
.reviews-banner {
    background: var(--primary);
    color: white;
    padding: 4rem 5%;
    text-align: center;
    border-radius: 32px;
    margin: 4rem 5%;
}

.star-rating { font-size: 2.5rem; color: #fcd34d; margin-bottom: 1rem; }

/* Footer - Elegant Premium */
footer {
    background: #111827;
    color: #f3f4f6;
    padding: 5rem 5% 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.footer-contact-item img {
    width: 24px;
    height: 24px;
    filter: invert(0.8) sepia(1) saturate(5) hue-rotate(30deg);
}

.footer-whatsapp {
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #9ca3af;
}

/* Floating Agent */
.floating-agent-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
}

.floating-agent-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-agent-btn img { width: 35px; }

.agent-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
}

.agent-header { background: #075e54; color: white; padding: 1.25rem; border-radius: 20px 20px 0 0; display: flex; align-items: center; gap: 1rem; }
.agent-messages { height: 350px; padding: 1.5rem; overflow-y: auto; background: #e5ddd5; }
.agent-input-container { padding: 1rem; display: flex; gap: 0.5rem; background: #f0f0f0; border-radius: 0 0 20px 20px; }
.agent-input-container input { flex: 1; padding: 0.75rem; border: none; border-radius: 20px; }
.agent-send-btn { background: #075e54; color: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; }

/* Contact Hero */
.contact-hero {
    height: 400px;
    background: linear-gradient(rgba(6,78,59,0.7), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1516549655169-df83a0774514?auto=format&fit=crop&q=80&w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-radius: 0 0 40px 40px;
}

/* Animations */
.animate-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

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