:root {
    --green: #0b6a2b;
    --green-2: #0a5b25;
    --text: #0f172a;
    --muted: #475569;
    --bg: #ffffff;
    --soft: #f4f7f5;
    --border: rgba(15, 23, 42, .12);
    --shadow: 0 10px 30px rgba(2, 6, 23, .08);
    --radius: 18px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto
}

/* Topbar */
.topbar {
    background: var(--green);
    color: #fff;
    font-size: 14px
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 12px
}

.topbar__cta {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand__logo{
  width:56px;              /* logo size - adjust 48/56/64 */
  height:56px;
  border-radius:14px;
  background:#fff;         /* clean background */
  border:1px solid rgba(15,23,42,.12);
  padding:6px;             /* space around logo */
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
  flex: 0 0 auto;          /* prevents stretching */
}

.brand__logoImg{
  width:100%;
  height:100%;
  object-fit:contain;      /* IMPORTANT: no cropping */
  display:block;
}

.brand__name {
    font-weight: 800;
    letter-spacing: .2px;
    font-size: 18px;
    line-height: 1.1
}

.brand__tag {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px
}

.nav a {
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    opacity: .92
}

.nav a:hover {
    color: var(--green)
}

.nav__toggle {
    display: none;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    width: 44px;
    height: 44px;
}

.nav__toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 2px
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 16px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: .18s ease;
    white-space: nowrap;
}

.btn--sm {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px
}

.btn--full {
    width: 100%
}

.btn--primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 12px 24px rgba(11, 106, 43, .18)
}

.btn--primary:hover {
    background: var(--green-2);
    transform: translateY(-1px)
}

.btn--ghost {
    background: #fff;
    border-color: var(--border);
    color: var(--text)
}

.btn--ghost:hover {
    border-color: rgba(11, 106, 43, .35);
    color: var(--green)
}

.accent {
    color: var(--green)
}

/* Hero */
.hero {
    padding: 46px 0 26px;
    background:
        radial-gradient(700px 260px at 15% 10%, rgba(11, 106, 43, .14), transparent 60%),
        radial-gradient(640px 280px at 85% 0%, rgba(11, 106, 43, .10), transparent 60%),
        linear-gradient(#fff, #fff);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 26px;
    align-items: start
}

.badge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(11, 106, 43, .10);
    border: 1px solid rgba(11, 106, 43, .18);
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
}

.hero h1 {
    margin: 14px 0 10px;
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -.3px
}

.hero p {
    margin: 0 0 18px;
    color: var(--muted);
    max-width: 60ch
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero__stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.stat {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: var(--radius);
    padding: 14px
}

.stat__num {
    font-weight: 800;
    color: var(--green)
}

.stat__label {
    font-size: 12px;
    color: var(--muted)
}

.hero__card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero__cardTop {
    padding: 16px 16px 12px;
    background: linear-gradient(90deg, rgba(11, 106, 43, .10), rgba(11, 106, 43, .03));
    border-bottom: 1px solid var(--border);
}

.hero__cardTitle {
    font-weight: 800
}

.hero__cardHint {
    font-size: 12px;
    color: var(--muted)
}

.form {
    padding: 16px
}

.form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px
}

.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 12px 12px;
    margin-top: 7px;
    border-radius: 14px;
    border: 1px solid var(--border);
    outline: none;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: rgba(11, 106, 43, .45);
    box-shadow: 0 0 0 4px rgba(11, 106, 43, .08);
}

.form__note {
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--muted);
    min-height: 20px
}

/* Sections */
.section {
    padding: 54px 0
}

.section--muted {
    background: var(--soft)
}

.section__head {
    margin-bottom: 18px
}

.section__head h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -.2px
}

.section__head p {
    margin: 8px 0 0;
    color: var(--muted);
    max-width: 78ch
}

.section__head--split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.section__head--split>div:first-child {
    flex: 1
}

.grid {
    display: grid;
    gap: 16px
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr)
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, .04);
}

.card h3 {
    margin: 0 0 8px;
    font-size: 18px
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.card--icon .icon {
    font-size: 24px;
    margin-bottom: 10px
}

/* Services list blocks */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.list {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
}

.list li {
    margin: 8px 0
}

/* About highlights */
.highlights {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.highlight {
    border: 1px dashed rgba(11, 106, 43, .35);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(255, 255, 255, .7);
}

.highlight__num {
    color: var(--green);
    font-weight: 900
}

.highlight__title {
    font-weight: 800;
    margin-top: 6px
}

.highlight__desc {
    color: var(--muted);
    font-size: 14px;
    margin-top: 6px
}

.quote__text {
    font-size: 14px;
    color: var(--text);
    margin: 0 0 10px
}

.quote__by {
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

/* Construction Note Card */
.noteCard {
    margin-top: 16px
}

.noteCard__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px
}

/* Contact */
.contact {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 16px;
    align-items: start;
}

.contact__list {
    list-style: none;
    padding: 0;
    margin: 0
}

.contact__list li {
    margin: 10px 0;
    color: var(--muted)
}

.contact__list a {
    color: var(--green);
    font-weight: 800
}

.form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
}

.mini {
    margin-top: 14px;
    display: grid;
    gap: 8px
}

.mini__item {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: 14px
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(11, 106, 43, .25);
    border: 2px solid rgba(11, 106, 43, .55)
}

/* Footer */
.footer {
    background: #062d12;
    color: #d7f3df;
    padding: 24px 0
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center
}

.footer__brand {
    font-weight: 900;
    color: #fff
}

.footer__tag {
    font-size: 13px;
    opacity: .9
}

.footer__links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.footer__links a {
    color: #d7f3df;
    font-weight: 700;
    font-size: 13px;
    opacity: .95
}

.footer__links a:hover {
    color: #fff
}

.footer__copy {
    grid-column: 1 / -1;
    font-size: 13px;
    opacity: .9
}

/* WhatsApp float */
.whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    padding: 12px 14px;
    border-radius: 999px;
    box-shadow: 0 18px 30px rgba(11, 106, 43, .22);
    border: 1px solid rgba(255, 255, 255, .18);
    z-index: 60;
}

.whatsapp:hover {
    background: var(--green-2);
    transform: translateY(-1px)
}

.whatsapp__icon {
    font-size: 16px
}

.whatsapp__text {
    font-weight: 900;
    font-size: 14px
}

/* Responsive */
@media (max-width: 980px) {
    .hero__inner {
        grid-template-columns: 1fr
    }

    .grid--3 {
        grid-template-columns: 1fr 1fr
    }

    .contact {
        grid-template-columns: 1fr
    }

    .section__head--split {
        flex-direction: column
    }

    .service-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 680px) {
    .grid--3 {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 34px
    }

    .hero__stats {
        grid-template-columns: 1fr
    }

    .form__row {
        grid-template-columns: 1fr
    }

    .footer__inner {
        grid-template-columns: 1fr
    }

    .footer__links {
        justify-content: flex-start
    }

    .brand {
        min-width: auto
    }

    .nav {
        position: fixed;
        top: 64px;
        right: 4%;
        width: min(360px, 92%);
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        box-shadow: var(--shadow);
        z-index: 70;
    }

    .nav.is-open {
        display: flex
    }

    .nav__toggle {
        display: inline-block
    }
}