/* ---------- RESET & BASE ---------- */
:root {
    --green-900: #0b4f3f;
    --green-700: #0d6b52;
    --accent: #2aa76a;
    --gold: #e4a024;
    --muted: #f3f7f3;
    --card: #fafdfa;
    --text: #07201a;
    --container: 1150px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    height: 100%
}

body {
    font-family: "Poppins", sans-serif !important;
    background: linear-gradient(180deg, var(--muted), #eef6f2);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.45
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

a {
    color: inherit;
    text-decoration: none
}

/* ---------- LAYOUT ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 4%
}

.navbar {
    background: var(--green-900);
    color: #fff;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 60;
    box-shadow: 0 6px 20px rgba(6, 30, 23, 0.08)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

nav.navbar {
    position: fixed !important;
    width: 100%;
}

.logo {
    height: 50px;
}



.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800
}

.brand .logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green-700), var(--green-900));
    display: inline-block
}

ul.links {
    display: flex;
    gap: 14px;
    align-items: center
}

ul.links a {
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none;
}

ul.links a:hover {
    background: rgba(255, 255, 255, 0.04)
}

.cta-quote {
    background: var(--gold);
    color: #07201a;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer
}

/* mobile nav button */
.hamburger {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 20px
}

/* ---------- HERO ---------- */
.hero {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 36px;
    padding: 56px 0;
    align-items: center
}

.hero h1 {
    font-size: 46px;
    line-height: 1.02;
    color: #05261f;
    margin-bottom: 14px;
    font-weight: 800
}

.hero p {
    color: rgba(3, 21, 16, 0.75);
    margin-bottom: 22px;
    font-size: 17px
}

.btn {
    padding: 12px 18px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 700
}

.btn-primary {
    border-color: var(--green-700) !important;
    background: var(--green-700) !important;
    color: #fff !important;
}

.btn-ghost {
    background: transparent !important;
    border: 1px solid rgba(9, 60, 48, 0.12) !important;
    color: var(--green-900) !important;
}

.btn-ghost:hover {
    background-color: var(--green-900) !important;
    color: #fff !important;
}

.hero-right {
    background: linear-gradient(180deg, rgba(6, 56, 43, 0.04), rgba(12, 84, 63, 0.02));
    padding: 16px;
    border-radius: 14px;
    display: flex;
    flex-direction: column
}


.hero-media {
    height: 280px;
    border-radius: 12px;
    overflow: hidden
}

.hero-card {
    background: var(--card);
    padding: 12px;
    border-radius: 12px;
    margin-top: 14px;
    box-shadow: 0 10px 28px rgba(6, 30, 23, 0.06)
}

.feature-icons {
    font-size: 25px;
    color: var(--green-900);
}



.desc-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(6, 30, 23, 0.04)
}

.section-title {
    font-weight: 700 !important;
    color: var(--green-900) !important;
}

/* ---------- FEATURES ---------- */
.features {
    display: flex;
    gap: 14px;
    margin-top: 18px
}

.feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    background: var(--card);
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(6, 30, 23, 0.04);


    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--green-900);
    transition: 0.6s;
    z-index: 2;
}

.feature:hover::before {
    left: 0;
}



.feature:hover {
    color: white !important;

    & .feature-title {
        color: #fff;
    }
}

.features-icon {
    font-size: 30px;
    position: relative;
    transition: .5s;
    z-index: 3;
}

.feature small {
    margin-top: 8px;
    z-index: 3;
}



/* ---------- ABOUT ---------- */
.about {
    padding: 48px 0;
}

.about-row {
    display: flex;
    justify-content: space-between;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.desc-icon {
    background: var(--card);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(6, 30, 23, 0.03);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.install-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(6, 30, 23, 0.06);
}

.about h2 {
    font-size: 28px;
    color: var(--green-900);
    margin-bottom: 10px
}

.about p {
    color: rgba(3, 21, 16, 0.75);
    margin-bottom: 18px
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding-left: 0px !important;
}

.about-list li {
    background: var(--card);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(6, 30, 23, 0.03);
    font-weight: 600
}

.about-icon {
    font-size: 25px;
}

/* ---------- PRODUCTS ---------- */
.products {
    margin-top: 70px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    position: relative;
}

/* Each product */
.product-block {
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    padding: 25px 20px;
    border-radius: 25px;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.product-block:hover {
    transform: translateY(-6px);
}

/* Circular image with green border */
.img-wrap {
    width: 230px;
    height: 230px;
    margin: auto;
    border-radius: 5%;
    border: 1px solid var(--green-700);
    overflow: hidden;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product headings */
.product-block h3 {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
}

/* Description */
.product-block p {
    color: #555;
    margin-bottom: 15px;
}

/* Quote Button */
.quote-btn {
    padding: 10px 22px;
    background: var(--accent);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.quote-btn:hover {
    background: #18a648;
}

/* The SCATTER placements */
.p1 {
    transform: translateY(0px);
}


/* ---------- GALLERY ---------- */
.gallery {
    margin-top: 80px;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.g-item {
    width: 100%;
    height: 250px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(6, 30, 23, 0.06);
    background: var(--card);
    transition: 0.3s ease;
    border: 2px solid rgba(12, 84, 63, 0.15);
}

.g-item:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 32px rgba(6, 30, 23, 0.12);
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media(max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-btns {
        justify-content: center !important;
    }

    .hero-right {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        margin-bottom: 40px;
        align-items: center;
    }

    .hero-card {
        width: 60%;
    }
}

@media(max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-right{
        display: flex;
    flex-direction: column;
    }
    .hero-card{
        width: 100%;
    }
    .send-btn{
        text-align: center !important;
    }
}

@media(max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}





/* ---------- CONTACT & FOOTER ---------- */
.contact-section {
    margin-top: 60px;
    display: flex;
    gap: 24px;
    padding: 46px 0
}

.contact-form {
    flex: 1;
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(6, 30, 23, 0.04)
}

.contact-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(6, 30, 23, 0.06);
    font-size: 15px
}

.contact-info {
    width: 340px;
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 18px rgba(6, 30, 23, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-links a {
    text-decoration: none;
    color: gray;
}

footer.site-footer {
    padding: 22px 0;
    color: rgba(3, 21, 16, 0.7)
}

/* ---------- UTIL ---------- */
.muted {
    color: rgba(3, 21, 16, 0.6)
}

@media (min-width: 768px) and (max-width: 991px) {
    nav.links {
        display: none
    }

    .hamburger {
        display: inline-block
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 28px 0
    }

    .hero h1 {
        font-size: 34px
    }

    .navbar-toggler {
        border-color: #fff !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    button:focus:not(:focus-visible) {
        border-color: #fff !important;
    }

    .hero-media {
        display: flex;
        justify-content: flex-start;
    }

    .about {
        grid-template-columns: 1fr
    }

    .features {
        flex-direction: column
    }

    .contact-section {
        flex-direction: column
    }

    .get-price-btn {
        justify-content: center;
    }
}

@media (min-width:320px) and (max-width:767px) {

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-2 {
        order: 2;
    }

    .get-price-btn {
        justify-content: space-around;
    }

    .navbar-toggler {
        border-color: #fff !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    button:focus:not(:focus-visible) {
        border-color: #fff !important;
    }

    .about {
        margin-top: 60px;
    }

    .about .section-title {
        margin-top: 20px;
    }
}

/* FULL MOBILE RESPONSIVENESS FIXES */

/* General scaling */
@media(max-width: 768px) {
    body {
        padding-top: 65px;
    }

    .container {
        padding: 0 6%;
    }

    h1,
    h2,
    h3 {
        line-height: 1.2;
    }
}

/* NAVBAR FIXES */
@media(max-width: 768px) {
    nav.navbar {
        padding: 10px 0;
    }

    ul.links {
        text-align: center;
        gap: 20px;
    }
}

/* HERO SECTION FIX */
@media(max-width: 768px) {
    .hero {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .hero-right {
        width: 100%;
    }

    .hero-media {
        height: 200px !important;
    }

    .features {
        flex-direction: column !important;
    }
}


@media(max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-form .row {
        grid-template-columns: 1fr !important;
    }

    .contact-info {
        width: 100% !important;
    }
}

@media(max-width: 600px) {
    footer.site-footer {
        font-size: 14px;
    }
}