/* ============================================================
   SECTIONS — hero, about, services, blog, newsletter, landing
   ============================================================ */

/* === Hero === */
.hero {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-section) 0 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Green radial glow — centered top */
.hero::before {
    content: '';
    position: absolute;
    top: -35%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(
        circle,
        rgba(0, 107, 63, 0.55) 0%,
        rgba(0, 107, 63, 0.15) 45%,
        transparent 70%
    );
    pointer-events: none;
}

/* Subtle gold glow — bottom right */
.hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 184, 28, 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 184, 28, 0.12);
    border: 1px solid rgba(255, 184, 28, 0.35);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1.75rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.13;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}

.hero-cta input {
    flex: 1;
    padding: 13px 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-family: inherit;
    transition: border-color var(--transition), background var(--transition);
    -webkit-appearance: none;
}

.hero-cta input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hero-cta input:focus {
    outline: none;
    border-color: rgba(255, 184, 28, 0.55);
    background: rgba(255, 255, 255, 0.11);
}

.hero-cta .btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    box-shadow: none;
}

.hero-cta .btn-primary:hover:not(:disabled) {
    background: var(--gold-dark);
    color: var(--navy);
    box-shadow: 0 4px 18px rgba(255, 184, 28, 0.35);
    transform: translateY(-1px);
}

/* === About === */
.about {
    padding: var(--space-section) 0;
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 1.25rem;
}

.about-text p {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

/* === Services === */
.services-featured {
    background: var(--gray-50);
    padding: 56px 0 var(--space-section);
}

.services-upcoming-section {
    background: var(--white);
    padding: 60px 0 var(--space-section);
    border-top: 1px solid var(--gray-200);
}

/* === Blog Latest === */
.blog-latest {
    padding: var(--space-section) 0;
    background: var(--gray-50);
}

/* === Newsletter === */
.newsletter {
    padding: var(--space-section) 0;
    text-align: center;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(0, 107, 63, 0.28) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 13px 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-family: inherit;
    -webkit-appearance: none;
    transition: border-color var(--transition), background var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 184, 28, 0.55);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    box-shadow: none;
    white-space: nowrap;
}

.newsletter-form .btn-primary:hover:not(:disabled) {
    background: var(--gold-dark);
    color: var(--navy);
    transform: translateY(-1px);
}

/* === Landing Nav === */
.landing-nav {
    padding: 64px 0;
}

.landing-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

/* === Responsive: Sections === */
@media (max-width: 768px) {
    :root {
        --space-section: 64px;
    }

    .hero {
        padding: 64px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
        max-width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .landing-nav-grid {
        grid-template-columns: 1fr;
    }

    .landing-nav {
        padding: 48px 0;
    }
}
