/* THEME: High Desert Modern */
:root {
    --primary-green: #2e4a33; /* Ponderosa */
    --secondary-green: #1a2e20; /* Deep Forest */
    --accent-gold: #d4a017;   /* Sawdust/Action */
    --text-dark: #2c3e50;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Roboto Slab', serif;
    color: var(--primary-green);
    margin-top: 0;
}

/* --- PREMIUM STICKY NAV --- */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    margin-left: 25px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover { color: var(--accent-gold); }

/* --- HERO SECTION (Dual Path) --- */
.hero {
    background: linear-gradient(rgba(46, 74, 51, 0.85), rgba(46, 74, 51, 0.7)), url('https://images.unsplash.com/photo-1581858726768-fdff29952861?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
}

.hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.3rem; max-width: 700px; margin: 0 auto 40px auto; opacity: 0.9; }

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* BUTTONS: Distinct visual hierarchy */
.btn-primary {
    background-color: var(--white);
    color: var(--primary-green);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    font-size: 1.1rem;
    border: 1px solid #b58912;
    transition: transform 0.2s;
}

.btn-primary:hover, .btn-gold:hover { transform: translateY(-3px); }

/* --- SECTIONS --- */
.section-wrapper { max-width: 1000px; margin: 80px auto; padding: 0 20px; }
.text-center { text-align: center; }

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--accent-gold);
    transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-5px); }

/* PROCESS STEPS */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.step { flex: 1; text-align: center; min-width: 200px; }
.step-num {
    background: var(--primary-green); color: white;
    width: 40px; height: 40px; line-height: 40px;
    border-radius: 50%; font-weight: bold; margin: 0 auto 15px auto;
}

/* FACEBOOK FEED STYLE */
.fb-section {
    background-color: #f0f2f5; /* FB Grey */
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin: 60px auto;
    max-width: 1000px;
}
.fb-btn {
    background-color: #1877F2;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* CONTACT FORM AREA */
.contact-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
    border-top: 5px solid var(--primary-green);
}

input, select, textarea {
    width: 100%; box-sizing: border-box;
    padding: 12px; margin-bottom: 15px;
    border: 1px solid #ddd; border-radius: 4px;
    font-family: inherit; font-size: 1rem;
}

/* FOOTER */
footer {
    background-color: var(--secondary-green);
    color: #ccc;
    text-align: center;
    padding: 50px 20px;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .nav-container { flex-direction: column; height: auto; padding: 15px; }
    nav { margin-top: 15px; display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
    nav a { margin: 0; }
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
}

/* --- SUB-PAGE STYLES --- */

/* Breadcrumb Navigation */
.breadcrumb-bar {
    background-color: #eef2f0;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    font-size: 0.9rem;
    color: #666;
}
.breadcrumb-bar a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 600;
}
.breadcrumb-bar a:hover { text-decoration: underline; }
.breadcrumb-separator { margin: 0 10px; color: #999; }
.breadcrumb-current { color: #333; font-weight: bold; }

/* Main Content Wrapper for Sub-pages */
.page-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 60vh; /* Ensures footer stays at bottom */
}

/* Calculator Specific Overrides to match Main Site */
.calc-container {
    box-shadow: none; /* Remove duplicate shadow if inside wrapper */
    padding: 0;
    background: transparent;
}