/* --- Basic Reset & Variables --- */
:root {
    --primary-color: #2c5e3A; /* Dark Green */
    --secondary-color: #4a7856; /* Lighter Green */
    --accent-color: #D4AF37;   /* Gold/Ochre - for CTAs or highlights */
    --light-bg-color: #f4f4f4;
    --dark-bg-color: #333;
    --text-color: #333;
    --light-text-color: #fff;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    --container-width: 1100px;
    --border-radius: 5px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
    font-size: 16px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 30px;}
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }


p {
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif; /* Example of using another font for paragraphs */
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.section-padding { padding: 60px 0; }
.section-padding-sm { padding: 30px 0; }
.bg-light { background-color: var(--light-bg-color); }
.bg-dark { background-color: var(--dark-bg-color); color: var(--light-text-color); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--light-text-color); }
.bg-dark a { color: var(--accent-color); }
.bg-dark a:hover { color: #fff; }

.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary {
    background-color: var(--accent-color);
    color: #333; /* Dark text on gold */
}
.btn-primary:hover {
    background-color: #c09b2e; /* Darker gold */
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}
.btn-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* --- Header --- */
.site-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    max-height: 60px; /* Adjust as needed */
}
.logo-text {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Navigation */
.main-navigation .nav-menu {
    list-style: none;
    display: flex;
}
.main-navigation .nav-menu li {
    margin-left: 25px;
    position: relative; /* For dropdown */
}
.main-navigation .nav-menu a {
    color: var(--text-color);
    font-weight: bold;
    padding: 10px 5px;
    font-size: 0.95rem;
    text-transform: uppercase;
}
.main-navigation .nav-menu a:hover,
.main-navigation .nav-menu a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    padding: 10px 0;
    margin-top: 2px; /* Gap for border-bottom */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1001;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    margin: 0;
}
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: none;
    border-bottom: none !important; /* Override active style */
}
.dropdown-menu a:hover {
    background-color: var(--light-bg-color);
    color: var(--accent-color);
}
.dropdown a i { margin-left: 5px; }


/* Hamburger Menu (Mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
    transition: background-color 0.3s ease;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-open .hamburger { background-color: transparent; }
.nav-open .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-open .hamburger::after { transform: rotate(-45deg); top: 0; }

/* --- Hero Section --- */
.hero-section {
    height: 70vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--light-text-color);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
.hero-content {
    position: relative; /* To be above overlay */
    z-index: 1;
}
.hero-title-box {
    background-color: rgba(213,213,213,0.8); /* Original grey box */
    padding: 20px 40px;
    display: inline-block;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}
.hero-title-box h1 {
    color: #2a2a2a; /* Original text color for this box */
    margin-bottom: 0;
    font-size: 3rem;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Intro & Form Section --- */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}
.inline-image-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    max-width: 40%; /* Adjust as needed */
}
.inline-image-left.small-image {
    max-width: 200px; /* For smaller inline images */
}
.intro-text h2 { text-align: left; }
.phone-link { font-weight: bold; color: var(--primary-color); }

.form-container-wrapper {
    background-color: rgba(161,161,161,0.2); /* Lightened version of original form bg */
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.form-container-wrapper h3 {
    text-align: center;
    color: var(--accent-color); /* Match original emphasis color */
    font-size: 1.8rem;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1rem;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.required { color: red; }
.checkbox-group label {
    display: block;
    font-weight: normal;
    font-size: 0.95rem;
    margin-bottom: 5px;
}
.checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.1);
}

/* --- Full Width Image --- */
.full-width-image img {
    width: 100%;
    border-radius: 0; /* Often full-width images don't have rounded corners */
}

/* --- Services Section --- */
.service-article {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-bg-color);
}
.service-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.service-article h2 { text-align: left; }


/* --- Contact CTA Section --- */
.phone-highlight a {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    display: block;
    margin: 10px 0 20px;
}
.phone-highlight a:hover {
    color: #fff;
}

/* --- Map & Video Section --- */
.map-embed h3, .video-embed h3 { text-align: center; margin-bottom: 20px; }
.map-embed iframe, .video-embed iframe {
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* --- Footer --- */
.site-footer-bottom {
    background-color: var(--dark-bg-color);
    color: #aaa;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}
.site-footer-bottom p {
    margin-bottom: 5px;
}
.site-footer-bottom a {
    color: #ccc;
}
.site-footer-bottom a:hover {
    color: var(--accent-color);
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    .hero-title-box h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .grid-2-col { grid-template-columns: 1fr; }
    .intro-text .inline-image-left {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
        max-width: 70%;
    }
    .form-container-wrapper { margin-top: 30px; }
}

@media (max-width: 768px) {
    .header-container { flex-wrap: wrap; }
    .main-navigation {
        width: 100%;
        order: 3; /* Move below logo */
    }
    .main-navigation .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 100%; /* Position below header */
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding-bottom: 10px;
    }
    .main-navigation .nav-menu.nav-menu-open {
        display: flex;
    }
    .main-navigation .nav-menu li {
        margin-left: 0;
        text-align: center;
    }
    .main-navigation .nav-menu a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid var(--light-bg-color);
    }
    .main-navigation .nav-menu a.active,
    .main-navigation .nav-menu a:hover {
        border-bottom: 1px solid var(--light-bg-color); /* Remove bottom border for mobile */
        background-color: var(--light-bg-color);
    }
    .nav-toggle { display: block; margin-left: auto; }

    /* Dropdown for mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: 1px solid var(--light-bg-color);
        margin-top: 0;
        background-color: #f8f8f8; /* Slightly different bg for sub-items */
    }
    .dropdown-menu a {
        padding-left: 30px; /* Indent sub-items */
    }
     .dropdown > a i { display: none; } /* Hide caret on mobile if simple toggle */

    .hero-section { height: 60vh; }
    .hero-title-box h1 { font-size: 2rem; }
    .hero-content p { font-size: 1.1rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }

    .phone-highlight a { font-size: 2rem; }
}

@media (max-width: 576px) {
    .hero-title-box { padding: 15px 20px; }
    .hero-title-box h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 1rem; }
    .btn { padding: 10px 20px; font-size: 0.9rem;}
    .form-container-wrapper { padding: 20px; }
    .checkbox-group input[type="checkbox"] { transform: scale(1); }
}