:root {
    --primary: #1A2521;       /* Deep Forest Green/Slate */
    --accent: #D4AF37;        /* Gold Accent */
    --text-dark: #222;
    --text-light: #f4f4f4;
    --bg-light: #FBFBF9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.8;
}

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

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0; width: 100%; padding: 25px 0;
    z-index: 1000; transition: 0.4s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex; justify-content: space-between;
    align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}

.logo { font-family: var(--font-heading); font-size: 1.6rem; color: white; font-weight: 700; text-decoration: none; }
.navbar.scrolled .logo { color: var(--primary); }
.logo .accent { color: var(--accent); }

.nav-btn {
    background: var(--accent); color: white; text-decoration: none;
    padding: 10px 20px; border-radius: 5px; font-weight: 600;
}

/* --- Hero Section --- */
.hero {
    position: relative; height: 90vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
    background: url('images/forest.jpg') center/cover no-repeat fixed;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    backdrop-filter: blur(1px); z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 850px; padding: 0 20px; }
.hero-subtitle { text-transform: uppercase; letter-spacing: 4px; color: var(--accent); font-weight: 600; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin: 20px 0; font-family: var(--font-heading); line-height: 1.2; }
.hero p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; }

.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.call-btn { padding: 18px 35px; border-radius: 50px; font-weight: 600; transition: 0.3s; text-decoration: none; }
.primary-btn { background: var(--accent); color: #000; }
.secondary-btn { border: 2px solid white; color: white; }
.call-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* --- Content Sections --- */
.section-pad { padding: 120px 0; }
.bg-light { background-color: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 70px; }
.pre-title { color: var(--accent); font-weight: 700; letter-spacing: 2px; font-size: 0.8rem; text-transform: uppercase; }
.section-header h2 { font-size: 2.8rem; color: var(--primary); font-family: var(--font-heading); }
.divider { width: 60px; height: 3px; background: var(--accent); margin: 20px auto; }
.lead-text { max-width: 750px; margin: 0 auto; text-align: center; font-size: 1.2rem; color: #666; }

/* --- Service Cards --- */
.service-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.card {
    background: white; border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow); transition: 0.4s ease;
}
.card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.12); }

.card-image { height: 260px; position: relative; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.card:hover .card-image img { transform: scale(1.1); }

.card-content { padding: 40px; }
.card-content h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 10px; }
.sub-label { color: var(--accent); text-transform: uppercase; font-size: 0.8rem; font-weight: 700; margin-bottom: 15px; letter-spacing: 1px; }
.text-link { display: inline-block; margin-top: 25px; color: var(--primary); font-weight: 700; border-bottom: 2px solid var(--accent); text-decoration: none; }

/* --- Contact Box --- */
.contact-box {
    background: var(--primary); color: white; padding: 100px 40px;
    border-radius: 24px; text-align: center;
}
.contact-box h2 { font-family: var(--font-heading); font-size: 2.5rem; }
.big-phone { display: block; font-size: 3.5rem; color: var(--accent); margin: 40px 0; font-family: var(--font-heading); text-decoration: none; }

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(40px); transition: 1s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

footer { padding: 60px 0; text-align: center; background: #fafafa; color: #999; border-top: 1px solid #eee; }

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