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

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    font-family: "Jost", sans-serif;
    background-color: #fafafa;
    color: #333;
}

/* ── Top Bar ── */
.top-bar {
    background-color: #0e3d27;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    padding: 6px 0;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-icon {
    width: 16px;
    filter: invert(85%);
}

.top-email {
    color: rgb(212,175,55);
    text-decoration: none;
    font-weight: 600;
}

.top-email:hover {
    text-decoration: underline;
}

/* ── Navbar ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #124E32;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: background 0.3s;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 44px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: rgb(212,175,55) !important;
    color: #124E32 !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    filter: brightness(0.9);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* ── Hero ── */
.hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18,78,50,0.7) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 24px;
}

.hero h1 {
    line-height: 0;
    margin: 0 auto;
    padding: 0;
    max-width: 500px;
    width: 80%;
    overflow: hidden;
    aspect-ratio: 1536 / 340;
}

.hero-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 20px rgba(0,0,0,0.5));
}

.hero-subtitle {
    font-size: 24px;
    color: white;
    margin-top: 8px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-top: 12px;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-gold {
    background: rgb(212,175,55);
    color: #124E32;
}

.btn-gold:hover {
    filter: brightness(0.9);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
}

/* ── Section Titles ── */
.section-title {
    font-size: 42px;
    color: #124E32;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: rgb(212,175,55);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ── About ── */
.about {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 24px;
}

.about-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: white;
    border-left: 5px solid rgb(212,175,55);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-card p {
    font-family: "Roboto Slab", serif;
    color: #444;
    font-size: 16px;
    line-height: 1.7;
}

/* ── Stats ── */
.stats {
    background: #124E32;
    padding: 60px 24px;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 24px;
}

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: rgb(212,175,55);
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

/* ── Services ── */
.services {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.service-card {
    background: white;
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-bottom-color: rgb(212,175,55);
}

.service-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 20px;
    color: #124E32;
    margin-bottom: 10px;
}

.service-card p {
    font-family: "Roboto Slab", serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ── Projects Map ── */
.projects-section {
    padding: 100px 24px 80px;
    text-align: center;
}

.projects-intro {
    font-family: "Roboto Slab", serif;
    font-size: 17px;
    color: #124E32;
    margin-bottom: 30px;
}

.projects-map {
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    overflow: hidden;
    border: 3px solid #124E32;
}

.firetex-pin {
    background: none !important;
    border: none !important;
}

.pin-popup img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 6px;
    margin-bottom: 8px;
    display: block;
}

.pin-popup strong {
    font-size: 14px;
    color: #124E32;
}

.pin-popup span {
    font-size: 13px;
    color: #555;
}

/* ── Footer ── */
.site-footer {
    background-color: #124E32;
    color: white;
    padding: 60px 80px 20px;
    font-family: "Jost", sans-serif;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    max-width: 300px;
}

.footer-section h3,
.footer-section h4 {
    color: rgb(212,175,55);
    margin-bottom: 14px;
    font-size: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: rgb(212,175,55);
}

.footer-icon {
    width: 16px;
    height: 16px;
    filter: invert(85%);
    flex-shrink: 0;
}

svg.footer-icon {
    filter: none;
    stroke: rgba(255,255,255,0.85);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 36px;
    padding-top: 16px;
    text-align: center;
    font-size: 14px;
    color: #bbb;
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-child {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible .reveal-child {
    opacity: 1;
    transform: translateY(0);
}

.reveal.visible .reveal-child:nth-child(1) { transition-delay: 0.1s; }
.reveal.visible .reveal-child:nth-child(2) { transition-delay: 0.2s; }
.reveal.visible .reveal-child:nth-child(3) { transition-delay: 0.3s; }
.reveal.visible .reveal-child:nth-child(4) { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .top-bar-right {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #124E32;
        flex-direction: column;
        padding: 16px 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 24px;
    }

    .hero {
        height: 400px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .section-title {
        font-size: 30px;
    }

    .about, .services, .projects-section {
        padding: 60px 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 38px;
    }

    .site-footer {
        padding: 40px 20px 20px;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section p,
    .footer-section a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-number {
        font-size: 32px;
    }
}
