/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fcfbfa;
    color: #2b3a2b;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.5rem 0;
}

.text-center { text-align: center; }

/* Custom Branding Colors */
:root {
    --primary-color: #1c5235;   /* Oakbridge Forest Green */
    --accent-color: #2d7a4d;    /* Lighter Green */
    --light-bg: #f4f6f4;        /* Off-white background */
    --dark-text: #223026;
}

/* Button UI Elements */
.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: var(--accent-color);
}

.btn-secondary {
    background: #44544a;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    margin-top: 1rem;
}

.btn-secondary:hover {
    background: #5c7063;
}

/* Header & Nav Styles with Image Logo */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.site-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-text);
}

.logo-text span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #556258;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(18, 48, 31, 0.75), rgba(18, 48, 31, 0.75)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1920') no-repeat center center/cover;
    color: #fff;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Headings */
h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* About & Mission */
.about-section { background: #fff; }
.lead-text {
    font-size: 1.25rem;       /* Slightly larger for a stronger visual presence */
    line-height: 1.8;         /* Better breathing room between sentences */
    max-width: 900px;         /* Expands width to match the sophisticated tone */
    margin: 0 auto;
    color: var(--dark-text);
}

.mission-box {
    background: var(--light-bg);
    padding: 2rem;
    border-left: 5px solid var(--primary-color);
    max-width: 700px;
    margin: 0 auto;
    border-radius: 0 8px 8px 0;
}

.mission-box h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Layout Grids */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.grid-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

/* Services Cards */
.services-section { background: var(--light-bg); }

.card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.highlight-card {
    border: 1px solid rgba(45, 122, 77, 0.3);
    background: linear-gradient(#ffffff, #fafdff);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

/* Approach Layout */
.approach-section { background: #fff; text-align: center; }

.approach-card {
    background: var(--light-bg);
    padding: 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid #e1e8e2;
    color: var(--primary-color);
}

/* Contact Details & Form */
.contact-section { background: #fff; border-top: 1px solid #eee; }
.contact-intro { margin-bottom: 2rem; font-size: 1.1rem; }

.contact-info p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.map-link-container {
    margin-top: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5cb;
    border-radius: 4px;
    font-size: 1rem;
    background: #fafbfa;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

#formFeedback { margin-top: 1rem; font-weight: bold; }
.success { color: #1c5235; }
.hidden { display: none; }

/* Footer */
footer {
    background: var(--dark-text);
    color: #e1e8e2;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 1rem; }
    .nav-links li { margin: 0 1rem; }
    .hero-content h1 { font-size: 2.3rem; }
}