    
    /* Google Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@300;400&display=swap');
    
:root {
    --forest-green: #2e3b23;
    --muted-gold: #c2a36d;
    --off-white: #fdfcf9;
    --dark-text: #2a2a2a;
    --hero-overlay: rgba(29, 36, 23, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1d2417;
}

::-webkit-scrollbar-thumb {
    background: var(--muted-gold);
    border-radius: 6px;
    border: 3px solid #1d2417;
}

::-webkit-scrollbar-thumb:hover {
    background: #dcc194;
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--muted-gold) #1d2417;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
nav {
    background: var(--forest-green);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.nav-phone {
    font-weight: 700;
    color: var(--muted-gold);
    text-decoration: none;
    border: 1px solid var(--muted-gold);
    padding: 6px 12px;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    border-bottom: 4px solid var(--muted-gold);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    color: #eee;
}

/* Button */
.btn {
    background: var(--muted-gold);
    color: var(--forest-green);
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn:hover {
    background: #dcc194;
    transform: translateY(-2px);
}

/* Sections */
.section-padding {
    padding: 5rem 8%;
}

/* Service Blocks */
.service-block {
    margin-bottom: 6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.service-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    min-width: 320px;
}

.service-image {
    flex: 1.2;
    min-width: 320px;
    height: 450px !important;
    display: block !important;
    background-size: cover !important;
    background-position: center !important;
    background-color: #eee;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.service-text h2 {
    color: var(--forest-green);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--muted-gold);
    padding-left: 15px;
}

/* Gallery Section */
.gallery {
    background: #f2f2ef;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 2rem;
}

.gallery-item {
    height: 300px !important;
    display: block !important;
    background-size: cover !important;
    background-position: center !important;
    background-color: #e0e0e0;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    background: white;
}

.contact-form {
    flex: 1.2;
    background: var(--off-white);
    padding: 3rem;
    border-top: 4px solid var(--muted-gold);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    border-radius: 2px;
}

form button {
    width: 100%;
    background: var(--forest-green);
    color: white;
    border: none;
    padding: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

form button:hover {
    background: #3e4f30;
}

/* Footer Areas */
.footer-areas {
    background: #1d2417;
    color: #fff;
    padding: 4rem 8% 2rem 8%;
    text-align: center;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    list-style: none;
    opacity: 0.7;
    font-size: 0.85rem;
    padding-top: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.area-list li::after {
    content: "•";
    margin-left: 0.8rem;
    color: var(--muted-gold);
}

.area-list li:last-child::after {
    content: "";
}

/* Footer */
footer {
    background: #1d2417;
    color: var(--muted-gold);
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    border-top: 1px solid #2a3322;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 3rem 5%;
    }

    .service-image {
        height: 300px !important;
    }
}