/* --- Corporate Brand Colors --- */
:root {
    --brand-navy: #0F2A4A;
    --brand-green: #7CB342;
    --brand-green-hover: #689F38;
    --text-dark: #222222;
    --text-light: #555555;
    --bg-gray: #F7F8FA;
    --white: #FFFFFF;
    --border: #E5E7EB;
}

/* --- Resets & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1, h2, h3, h4,
.brand-logo,
.contact-phone,
.btn-green,
.btn-outline {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
}

/* --- Utility Bar --- */
.utility-bar {
    background-color: var(--brand-navy);
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 0;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.utility-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Main Navigation --- */
.main-nav {
    background-color: var(--white);
    padding: 18px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--brand-green);
    line-height: 1;
}

.brand-sub {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-navy);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-contact {
    text-align: right;
}

.contact-text {
    font-size: 0.85rem;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-phone {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-phone:hover {
    color: var(--brand-green);
}

/* --- Hero Section --- */
.hero {
    background: url('clean-hardwood.jpg') center/cover no-repeat;
    position: relative;
    padding: 120px 20px 180px;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 42, 74, 0.78);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.4rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #E2E8F0;
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-green,
.btn-outline {
    display: inline-block;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.btn-green {
    background-color: var(--brand-green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(124, 179, 66, 0.35);
}

.btn-green:hover {
    background-color: var(--brand-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(124, 179, 66, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--brand-navy);
    border-color: var(--white);
}

/* --- Overlapping Trust Bar --- */
.relative-container {
    position: relative;
}

.trust-bar {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    padding: 28px 20px;
    position: relative;
    margin-top: -70px;
    z-index: 10;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    padding: 0 18px;
}

.border-left-right {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.trust-icon {
    font-size: 2.1rem;
    line-height: 1;
}

.trust-info h4 {
    color: var(--brand-navy);
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.trust-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* --- Services & Page Body --- */
.page-body {
    padding: 70px 0 90px;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--brand-navy);
    font-weight: 700;
}

.underline {
    height: 4px;
    width: 56px;
    background-color: var(--brand-green);
    margin: 14px auto 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-card {
    background-color: var(--bg-gray);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    padding: 20px 18px 8px;
    color: var(--brand-navy);
    font-size: 1.15rem;
    font-weight: 700;
}

.service-card p {
    padding: 0 20px 24px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Extra Content Sections (SEO + FAQ) --- */
.page-body section {
    margin-top: 64px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.page-body section h2 {
    font-size: 1.7rem;
    color: var(--brand-navy);
    margin-bottom: 16px;
    font-weight: 700;
}

.page-body section h3 {
    font-size: 1.15rem;
    color: var(--brand-navy);
    margin: 28px 0 8px;
    font-weight: 700;
}

.page-body section p {
    color: var(--text-light);
    margin-bottom: 14px;
    font-size: 1.02rem;
}

.page-body section a {
    color: var(--brand-green);
    font-weight: 600;
    text-decoration: none;
}

.page-body section a:hover {
    text-decoration: underline;
}

/* Final CTA block */
.page-body > div[style*="text-align:center"] {
    background: var(--bg-gray);
    padding: 48px 24px;
    border-radius: 8px;
    margin-top: 64px !important;
}

.page-body > div[style*="text-align:center"] h2 {
    color: var(--brand-navy);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

/* --- Footer --- */
footer {
    background-color: var(--brand-navy);
    color: var(--white);
    text-align: center;
    padding: 36px 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

footer a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: var(--brand-green);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .trust-bar {
        flex-direction: column;
        gap: 0;
        margin-top: 32px;
        padding: 8px 0;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .trust-item {
        padding: 20px 24px;
    }

    .border-left-right {
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 20px 140px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-green,
    .btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .utility-flex {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .nav-flex {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .nav-contact {
        text-align: center;
    }

    .brand-name {
        font-size: 1.7rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .page-body {
        padding: 50px 0 70px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .contact-phone {
        font-size: 1.4rem;
    }
}