:root {
    --navy: #1B3A5C;
    --green: #3DAA5C;
    --green-light: #6BCB6F;
    --green-cta: #2E9E50;
    --blue: #2176AE;
    --gray: #5A5A6E;
    --gray-light: #F5F7FA;
    --text: #2C2C3A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== HEADER ===== */
header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-img {
    max-height: 60px;
    width: auto;
    display: block;
}

@media (min-width: 768px) {
    .logo-img {
        max-height: 80px;
    }
}

@media (min-width: 1024px) {
    .logo-img {
        max-height: 100px;
    }
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.header-phone-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--green);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.header-phone-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(20px, 5vw, 36px);
    color: var(--navy);
    text-decoration: none;
    line-height: 1;
}

/* mobile phone number wrap */
@media (max-width: 480px) {
    .header-phone-number {
        white-space: normal;
        word-break: break-word;
        text-align: right;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(27, 58, 92, 0.82) 0%, rgba(27, 58, 92, 0.55) 60%, rgba(27, 58, 92, 0.30) 100%),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600&q=85') center/cover no-repeat;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 32px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 640px;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 em {
    color: var(--green-light);
    font-style: normal;
}

.hero p {
    color: rgba(255, 255, 255, 0.90);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.25s;
}

.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 20px rgba(61, 170, 92, 0.4);
}

.btn-primary:hover {
    background: #2e9040;
    transform: translateY(-2px);
}

.btn-call {
    background: var(--navy);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-call:hover {
    background: #132d47;
    border-color: #fff;
    transform: translateY(-2px);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 18px 24px;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

@media (max-width: 680px) {
    .trust-inner {
        gap: 16px;
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-label {
    display: inline-block;
    color: var(--green);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

h2.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

h2.section-title span {
    color: var(--green);
}

.section-sub {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
    max-width: 620px;
}

/* ===== ABOUT ===== */
.about {
    background: var(--gray-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--green-light);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 52px;
}

.services-header .section-sub {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--green);
    box-shadow: 0 16px 40px rgba(61, 170, 92, 0.15);
    background: #fff;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(61, 170, 92, 0.10);
    border: 2px solid rgba(61, 170, 92, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 20px;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.service-card:hover .service-icon {
    background: rgba(61, 170, 92, 0.18);
    border-color: var(--green);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.65;
}

.service-price {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    /* Increased from 13px */
    padding: 6px 16px;
    border-radius: 30px;
    margin-top: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ===== QUOTE FORM ===== */
.quote-form-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.form-copy h2 {
    color: #fff;
}

.form-copy .section-label {
    color: var(--green-light);
}

.form-copy p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-top: 16px;
    font-size: 16px;
}

.form-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8eaf0;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: var(--text);
    transition: border-color 0.2s;
    outline: none;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--green);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s;
}

.form-submit:hover {
    background: #2e9040;
    transform: translateY(-2px);
}

/* ===== SERVICE AREAS ===== */
.areas {
    background: var(--gray-light);
}

.areas-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    margin-top: 40px;
    align-items: stretch;
}

.areas-sidebar h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 12px;
}

.area-list-btns {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
}

.area-btn {
    background: #fff;
    border: 2px solid #e0e4ea;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.area-btn:hover {
    border-color: var(--green);
    background: #f0faf0;
    color: var(--green);
}

.area-btn.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.area-btn::before {
    content: '🏙️';
    font-size: 14px;
}

.area-btn.active::before {
    content: '📍';
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
    display: block;
}

/* ===== PROJECTS ===== */
.projects {
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.project-card {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e8eaf0;
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    border-color: var(--green);
}

.project-photo {
    background: #D6DDE6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 22px 24px;
}

.project-info h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px;
}

.project-info p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.project-tag {
    display: inline-block;
    background: #e8f5e9;
    color: var(--green);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

/* ===== CTA section ===== */
.cta-section {
    background: linear-gradient(135deg, #4a7c59 0%, #567d63 50%, #628f70 100%);
    padding: 60px 24px;
    text-align: center;
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-section .logo-img {
    max-height: 100px;
    width: auto;
    margin-bottom: 8px;
}

.cta-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    margin-bottom: 28px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--green-cta);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    transition: all 0.25s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* ===== REVIEWS ===== */
.reviews {
    background: var(--gray-light);
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.stars {
    color: #FFB800;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border-left: 4px solid var(--green);
    transition: transform 0.25s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.reviewer-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--navy);
}

.reviewer-date {
    font-size: 13px;
    color: var(--gray);
}

.review-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

.review-source {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--navy);
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
    background: #0d1f35;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 24px 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo-img {
    max-height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 15px;
}

.footer-contact-item span {
    font-size: 18px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--green-light);
}

.footer-contact-item .info {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width:1000px) {
    .areas-layout {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
        min-height: 300px;
    }
}

@media (max-width:900px) {

    .about-grid,
    .form-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:680px) {
    .header-top {
        padding: 12px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .trust-inner {
        gap: 16px;
    }

    section {
        padding: 56px 20px;
    }

    .area-list-btns {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-btn {
        white-space: normal;
    }
}

@media (max-width:480px) {
    .logo-img {
        max-height: 70px;
    }

    .cta-section .logo-img {
        max-height: 70px;
    }

    .footer-brand .logo-img {
        max-height: 60px;
    }

    .area-list-btns {
        grid-template-columns: 1fr;
    }

    .trust-inner {
        justify-content: flex-start;
    }

    .hero-content {
        padding: 60px 20px;
    }
}