/* CSS Custom Properties for Design System */
:root {
    --bg-primary: #fcfbf9;
    --bg-secondary: #f6f1ec;
    --color-primary: #8c6239; /* Warm Terracotta/Brown */
    --color-primary-dark: #6e4c2a;
    --color-primary-light: #f5ede6;
    --color-secondary: #4e5d4c; /* Sage Green */
    --text-main: #2d2824; /* Soft dark charcoal */
    --text-muted: #6e655f;
    --whatsapp-green: #25d366;
    --whatsapp-green-dark: #128c7e;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(45, 40, 36, 0.05);
    --shadow-md: 0 8px 30px rgba(45, 40, 36, 0.08);
    --shadow-lg: 0 20px 40px rgba(45, 40, 36, 0.12);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
}

p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Navbar */
.navbar {
    background-color: rgba(252, 251, 249, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(140, 98, 57, 0.08);
    padding: 1.2rem 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

.logo span {
    color: var(--color-primary);
    font-style: italic;
    margin-right: 0.1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(140, 98, 57, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 98, 57, 0.35);
}

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

.btn-secondary:hover {
    background-color: #ebdcd0;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #fff;
    font-size: 1.1rem;
    padding: 1.1rem 2.2rem;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.btn i, .btn-whatsapp i {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    padding: 9rem 0 6rem 0;
    background: radial-gradient(circle at 80% 20%, #f6f1ec 0%, var(--bg-primary) 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.badge {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
}

.hero p {
    font-size: 1.2rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    width: 100%;
    max-width: 480px;
    border-radius: 200px 200px 30px 30px; /* Serene dome arch shape */
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid #fff;
    aspect-ratio: 4/5;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    text-align: center;
}

.main-quote {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    line-height: 1.4;
}

.main-quote::before, .main-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.3;
    position: absolute;
}

.main-quote::before {
    top: -2rem;
    left: -1rem;
}

.main-quote::after {
    bottom: -3.5rem;
    right: -1rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(140, 98, 57, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(140, 98, 57, 0.15);
}

.icon-box {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.4rem;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #ebe2d8 100%);
    text-align: center;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-content h2 {
    font-size: 2.8rem;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(140, 98, 57, 0.08);
    background-color: var(--bg-primary);
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .image-wrapper {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .hero {
        padding: 11rem 0 4rem 0;
    }

    .main-quote {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}
