/* ======================================== */
/* CSS VARIABLES & GLOBAL RESET             */
/* ======================================== */

:root {
    --green:       #1C451D;
    --green-dark:  #133014;
    --green-hover: rgba(28, 69, 29, 0.07);
    --blue:        #1B4E9E;
    --blue-dark:   #0e2d6e;
    --off-black:   #222222;
    --text-muted:  #555555;
    --white:       #ffffff;
    --off-white:   #f7f7f5;
    --border:      #e4e4e0;
    --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md:   0 6px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg:   0 12px 40px rgba(0, 0, 0, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--off-black);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ======================================== */
/* CONTAINER                                */
/* ======================================== */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======================================== */
/* FADE-IN-UP SCROLL ANIMATION              */
/* ======================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.15s;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================== */
/* GLOBAL BUTTONS                           */
/* ======================================== */

.btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1;
    color: var(--white);
    padding: 16px 38px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.25s ease, border-color 0.25s ease,
                color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-hero {
    background-color: var(--green);
    border-color: var(--green);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-hero:hover {
    background-color: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--green);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
}

.btn-outline:hover {
    background-color: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-parallax {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
}

.btn-parallax:hover {
    background-color: var(--white);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ======================================== */
/* SECTION: HEADER SECTION                  */
/* ======================================== */

/* --- Main Sticky Header --- */
.main-header {
    width: 100%;
    height: 120px;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: auto;
    max-height: 110px;
    width: auto;
}

/* --- Main Navigation --- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-link {
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1;
    color: var(--off-black);
    padding: 10px 14px;
    border-radius: 4px;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
    background-color: var(--green-hover);
}

.nav-fb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin-left: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    transition: color 0.2s ease, background-color 0.2s ease;
    flex-shrink: 0;
}

.nav-fb-icon:hover {
    color: var(--white);
    background-color: var(--blue);
}

/* --- Hamburger Button --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid var(--green);
    border-radius: 5px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    transition: background-color 0.25s ease;
}

.hamburger:hover {
    background-color: var(--green);
}

.ham-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--green);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.25s ease;
}

.hamburger:hover .ham-line,
.hamburger.open .ham-line {
    background-color: var(--white);
}

.hamburger.open {
    background-color: var(--green);
}

.hamburger.open .ham-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .ham-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ======================================== */
/* SECTION: HERO SECTION                    */
/* ======================================== */

.hero-section {
    width: 100%;
    height: 800px;
    position: relative;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* Subtle bottom gradient for text legibility only — fire center is untouched */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.25) 30%,
        rgba(0, 0, 0, 0)    55%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.hero-h1 {
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.08;
    color: var(--white);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    margin-bottom: 18px;
    max-width: 680px;
}

.hero-sub {
    font-size: 19px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.93);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 34px;
    max-width: 580px;
}

/* ======================================== */
/* SECTION 1: SERVICES BAR                  */
/* ======================================== */

.services-bar {
    width: 100%;
    background: linear-gradient(135deg, #0d2210 0%, #091e50 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
}

.service-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 38px 18px;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.25s ease, transform 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.service-tile:last-child {
    border-right: none;
}

.service-tile:hover {
    filter: brightness(1.2);
    transform: translateY(-4px);
}

.tile-green {
    background-color: rgba(28, 69, 29, 0.90);
}

.tile-blue {
    background-color: rgba(27, 78, 158, 0.90);
}

.service-icon {
    width: 50px;
    height: 50px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 1.3;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
}

/* ======================================== */
/* SECTION 2: BODY CONTENT                  */
/* ======================================== */

.body-content-section {
    width: 100%;
    background-color: var(--white);
    padding: 90px 0;
}

.body-content-inner {
    display: grid;
    grid-template-columns: 58fr 42fr;
    gap: 70px;
    align-items: center;
}

.section-heading {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.2;
    color: var(--green);
    text-transform: uppercase;
    text-wrap: balance;
    margin-bottom: 24px;
}

.body-paragraph {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--off-black);
    margin-bottom: 18px;
}

.services-list {
    list-style: none;
    margin-bottom: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
}

.services-list li {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 2.1;
    color: var(--off-black);
    padding-left: 18px;
    position: relative;
}

.services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: var(--green);
    border-radius: 50%;
}

.body-section-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* ======================================== */
/* SECTION 3: TESTIMONIALS                  */
/* ======================================== */

.testimonials-section {
    width: 100%;
    background-color: var(--off-white);
    padding: 80px 0 56px;
}

.testimonial-slider {
    position: relative;
    margin-bottom: 32px;
    min-height: 160px;
}

.testimonial-slide {
    display: none;
    animation: fadeSlideIn 0.55s ease forwards;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 48px 40px 40px;
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.09);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--green), var(--blue));
}

.testimonial-logo-wrap {
    flex-shrink: 0;
    width: 96px;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

.testimonial-logo {
    width: 96px;
    height: auto;
    object-fit: contain;
}

.testimonial-content {
    flex: 1;
    padding-right: 48px;
}

.testimonial-text {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--off-black);
    font-style: italic;
}

.testimonial-quote {
    position: absolute;
    bottom: 16px;
    right: 26px;
    font-size: 96px;
    line-height: 1;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--blue);
    opacity: 0.85;
    pointer-events: none;
    user-select: none;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.t-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.18);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.t-dot.active,
.t-dot:hover {
    background-color: var(--green);
    transform: scale(1.25);
}

/* ======================================== */
/* SECTION 4: PARALLAX CTA SECTION          */
/* ======================================== */

.parallax-section {
    width: 100%;
    min-height: 580px;
    position: relative;
    background-image: url('images/parallax-home.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px;
}

.parallax-heading {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
}

.parallax-sub {
    font-size: 19px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    margin: 0 auto 36px;
}

/* ======================================== */
/* SECTION: FAT FOOTER SECTION              */
/* ======================================== */

.fat-footer {
    width: 100%;
    background-color: #111111;
    padding: 70px 0;
}

.fat-footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo {
    max-height: 80px;
    width: auto;
}

.footer-tagline {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
    max-width: 340px;
}

.footer-phone {
    display: block;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 26px;
    transition: color 0.2s ease;
}

.footer-phone:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-social-row {
    margin-top: 6px;
    padding-left: 0;
}

.footer-fb-link {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-fb-link:hover {
    color: var(--white);
}

.footer-map-col {
    display: flex;
    align-items: flex-start;
}

.footer-map-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-map-wrapper iframe {
    width: 100%;
    height: 390px;
    border: 0;
    display: block;
}

/* ======================================== */
/* SECTION: COPYRIGHT FOOTER BAR            */
/* ======================================== */

.copyright-bar {
    width: 100%;
    background-color: #080808;
    padding: 16px 0;
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
}

.copyright-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.copyright-link:hover {
    color: var(--white);
}

/* ======================================== */
/* MOBILE STICKY PHONE BAR                  */
/* ======================================== */

.mobile-sticky-phone {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background-color: var(--green);
    height: 52px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.3);
}

.mobile-sticky-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
}

/* ======================================== */
/* RESPONSIVE: TABLET (max-width: 1100px)   */
/* ======================================== */

@media (max-width: 1100px) {
    .hero-h1 {
        font-size: 48px;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-tile:nth-child(3) {
        border-right: none;
    }

    .body-content-inner {
        gap: 44px;
    }

    .parallax-heading {
        font-size: 34px;
        line-height: 1.2;
    }

    .fat-footer-inner {
        gap: 40px;
    }

    .nav-link {
        padding: 10px 10px;
        font-size: 14px;
        letter-spacing: 0.2px;
        line-height: 1;
    }
}

/* ======================================== */
/* RESPONSIVE: MOBILE (max-width: 768px)    */
/* ======================================== */

@media (max-width: 768px) {

    /* Top bar removed */

    /* Main header */
    .main-header {
        height: 74px;
    }

    .logo-img {
        max-height: 58px;
    }

    /* Mobile navigation drawer */
    .main-nav {
        display: none;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0 24px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
        border-top: 3px solid var(--green);
        z-index: 999;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        border-bottom: 1px solid var(--border);
    }

    .nav-link {
        display: block;
        padding: 15px 24px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.2px;
        line-height: 1.3;
        color: var(--off-black);
        border-radius: 0;
    }

    .nav-fb-icon {
        margin: 18px 24px 0;
        width: 38px;
        height: 38px;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-section {
        height: 560px;
    }

    .hero-h1 {
        font-size: 34px;
        letter-spacing: -0.5px;
        line-height: 1.15;
        color: var(--white);
    }

    .hero-sub {
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.93);
        margin-bottom: 26px;
    }

    .hero-content-wrap {
        padding-bottom: 50px;
    }

    /* Services bar */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-tile {
        padding: 28px 14px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .service-tile:nth-child(even) {
        border-right: none;
    }

    .service-tile:nth-child(3),
    .service-tile:nth-child(5) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .service-label {
        font-size: 10px;
        letter-spacing: 0.9px;
        line-height: 1.3;
        color: var(--white);
    }

    /* Body content */
    .body-content-section {
        padding: 60px 0;
    }

    .body-content-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section-heading {
        font-size: 24px;
        letter-spacing: -0.2px;
        line-height: 1.25;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .body-section-img {
        height: 280px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 56px 0 40px;
    }

    .testimonial-card {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px 36px;
        max-width: 100%;
    }

    .testimonial-logo-wrap {
        width: 72px;
    }

    .testimonial-logo {
        width: 72px;
    }

    .testimonial-content {
        padding-right: 0;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.75;
    }

    .testimonial-quote {
        font-size: 60px;
        bottom: 8px;
        right: 18px;
    }

    /* Parallax */
    .parallax-section {
        background-attachment: scroll;
        min-height: 360px;
    }

    .parallax-heading {
        font-size: 26px;
        letter-spacing: -0.2px;
        line-height: 1.25;
    }

    .parallax-sub {
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.88);
    }

    .parallax-content {
        padding: 60px 20px;
    }

    /* Fat footer */
    .fat-footer {
        padding: 50px 0 90px;
    }

    .fat-footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-phone {
        font-size: 30px;
        letter-spacing: -0.5px;
        line-height: 1;
        color: var(--white);
    }

    .footer-map-wrapper iframe {
        height: 260px;
    }

    /* Copyright - pad for sticky bar */
    .copyright-bar {
        padding-bottom: 66px;
    }

    /* Show mobile sticky phone bar */
    .mobile-sticky-phone {
        display: flex;
    }
}

/* ======================================== */
/* RESPONSIVE: SMALL MOBILE (max-width: 480px) */
/* ======================================== */

@media (max-width: 480px) {
    .hero-h1 {
        font-size: 28px;
        letter-spacing: -0.3px;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 15px;
        line-height: 1.55;
    }

    .section-heading {
        font-size: 20px;
        letter-spacing: -0.1px;
        line-height: 1.3;
    }

    .parallax-heading {
        font-size: 22px;
        line-height: 1.3;
    }

    .footer-phone {
        font-size: 26px;
        letter-spacing: -0.3px;
        line-height: 1;
    }

    .btn {
        font-size: 13px;
        padding: 14px 28px;
        letter-spacing: 1.4px;
        line-height: 1;
    }
}

/* ======================================== */
/* SUB-PAGE: PAGE TITLE BAR                 */
/* ======================================== */

.page-title-bar {
    width: 100%;
    background: linear-gradient(135deg, #0a1e0b 0%, var(--green-dark) 45%, var(--green) 100%);
    padding: 38px 0;
    border-bottom: 4px solid rgba(0, 0, 0, 0.25);
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
}

/* ======================================== */
/* SUB-PAGE: ABOUT US                       */
/* ======================================== */

.about-section {
    width: 100%;
    background-color: var(--white);
    padding: 90px 0 100px;
}

.about-inner {
    display: grid;
    grid-template-columns: 52fr 48fr;
    gap: 64px;
    align-items: start;
}

.about-lead-heading {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.5;
    color: var(--green-dark);
    text-wrap: balance;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.about-paragraph {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--off-black);
    margin-bottom: 18px;
}

.about-caption {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
}

.about-images-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    display: block;
}

/* ======================================== */
/* RESPONSIVE: ABOUT PAGE (max-width: 768px)*/
/* ======================================== */

@media (max-width: 768px) {
    .page-title-bar {
        padding: 26px 0;
    }

    .page-title {
        font-size: 28px;
        letter-spacing: 2px;
        line-height: 1;
        color: var(--white);
    }

    .about-section {
        padding: 60px 0 70px;
    }

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

    .about-lead-heading {
        font-size: 19px;
        letter-spacing: 0.1px;
        line-height: 1.5;
    }

    .about-paragraph {
        font-size: 16px;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
        letter-spacing: 1.5px;
        line-height: 1;
    }

    .about-lead-heading {
        font-size: 17px;
        letter-spacing: 0.1px;
        line-height: 1.55;
    }
}

/* ======================================== */
/* SUB-PAGE: OUR SERVICES                   */
/* ======================================== */

.services-page-section {
    width: 100%;
    background-color: var(--white);
    padding: 90px 0 100px;
}

.services-page-inner {
    display: grid;
    grid-template-columns: 52fr 48fr;
    gap: 64px;
    align-items: start;
}

.service-items-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
}

.service-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.service-item:first-child {
    padding-top: 0;
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-item-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.4px;
    line-height: 1.2;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-item-desc {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: var(--off-black);
}

/* ======================================== */
/* RESPONSIVE: SERVICES PAGE (≤768px)       */
/* ======================================== */

@media (max-width: 768px) {
    .services-page-section {
        padding: 60px 0 70px;
    }

    .services-page-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-item-title {
        font-size: 15px;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .service-item-desc {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ======================================== */
/* SUB-PAGE: OUR WORK – GALLERY             */
/* ======================================== */

.gallery-section {
    width: 100%;
    background-color: var(--off-white);
    padding: 70px 0 90px;
}

/* --- Filter Tabs --- */
.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gf-btn {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1;
    color: var(--text-muted);
    text-transform: uppercase;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 30px;
    padding: 11px 22px;
    cursor: pointer;
    transition: background-color 0.22s ease, border-color 0.22s ease,
                color 0.22s ease, box-shadow 0.22s ease;
}

.gf-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.gf-btn.active {
    background-color: var(--green);
    border-color: var(--green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(28, 69, 29, 0.25);
}

/* --- Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background-color: var(--border);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item.g-show {
    display: block;
    animation: galleryFadeIn 0.35s ease forwards;
}

@keyframes galleryFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-hover {
    background: rgba(0, 0, 0, 0.38);
}

.gallery-zoom-icon {
    color: var(--white);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* --- Lightbox --- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lb-img-wrap {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: block;
}

.lb-close,
.lb-prev,
.lb-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--white);
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-close {
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
}

.lb-prev,
.lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 1;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }

/* ======================================== */
/* RESPONSIVE: GALLERY (max-width: 1024px)  */
/* ======================================== */

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 50px 0 70px;
    }

    .gallery-filters {
        gap: 8px;
        margin-bottom: 28px;
    }

    .gf-btn {
        font-size: 11px;
        letter-spacing: 0.8px;
        line-height: 1;
        padding: 10px 16px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }

    .lb-prev,
    .lb-next {
        width: 42px;
        height: 42px;
        font-size: 28px;
        letter-spacing: normal;
        line-height: 1;
    }
}

/* ======================================== */
/* SUB-PAGE: CONTACT US                     */
/* ======================================== */

/* --- Full-width map band --- */
.contact-map-band {
    width: 100%;
    height: 440px;
    overflow: hidden;
    border-bottom: 4px solid var(--border);
}

.contact-map-band iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* --- Contact info + photo section --- */
.contact-section {
    width: 100%;
    background-color: var(--white);
    padding: 72px 0 80px;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-biz-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2.5px;
    line-height: 1.2;
    color: var(--off-black);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.contact-address {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: normal;
    margin-bottom: 28px;
}

.contact-phone {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
    color: var(--green-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
    transition: color 0.2s ease;
}

.contact-phone:hover {
    color: var(--green);
}

.contact-label {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1;
    color: var(--off-black);
}

.contact-email {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--blue);
    text-decoration: none;
    display: block;
    margin-bottom: 28px;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: var(--green);
    text-decoration: underline;
}

.contact-fb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: var(--white);
    background-color: #1877f2;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-fb-link:hover {
    background-color: #1464d8;
    transform: translateY(-1px);
}

.contact-photo-col {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.12);
}

.contact-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* ======================================== */
/* RESPONSIVE: CONTACT (max-width: 900px)   */
/* ======================================== */

@media (max-width: 900px) {
    .contact-map-band {
        height: 320px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .contact-photo {
        height: 300px;
    }

    .contact-biz-name {
        font-size: 18px;
        letter-spacing: 1.8px;
        line-height: 1.3;
    }

    .contact-phone {
        font-size: 24px;
        letter-spacing: -0.2px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .contact-map-band {
        height: 260px;
    }

    .contact-section {
        padding: 50px 0 60px;
    }

    .contact-phone {
        font-size: 22px;
        letter-spacing: normal;
        line-height: 1.3;
    }

    .contact-email {
        font-size: 14px;
        letter-spacing: normal;
        line-height: 1.5;
        word-break: break-all;
    }
}
