/* =========================================================
   ssquare power
   Main Website Stylesheet
   ========================================================= */


/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */

:root {

    --green: #087443;
    --green-dark: #04552f;
    --green-light: #eaf7f0;

    --orange: #f58220;
    --orange-dark: #d9660d;
    --orange-light: #fff2e7;

    --dark: #10231b;
    --dark-2: #18372a;

    --text: #26352e;
    --muted: #68756f;

    --white: #ffffff;
    --light: #f5f8f6;
    --border: #dfe8e3;

    --shadow:
        0 12px 35px rgba(16, 35, 27, 0.08);

    --shadow-lg:
        0 22px 60px rgba(16, 35, 27, 0.13);

    --radius: 18px;
    --radius-sm: 12px;

    --container: 1180px;

}


/* =========================================================
   2. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.65;

    overflow-x: hidden;

}


img {

    display: block;

    max-width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
select,
textarea {

    font: inherit;

}


button {

    border: 0;

}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* =========================================================
   3. HEADER
   ========================================================= */

.header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.96);

    backdrop-filter:
        blur(14px);

    border-bottom:
        1px solid var(--border);

}


.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* BRAND */

.brand {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}


.brand img {

    width: 54px;

    height: 54px;

    object-fit: contain;

}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1.15;

}


.brand-text strong {

    font-size: 20px;

    color: var(--green);

    letter-spacing: -0.4px;

}


.brand-text span {

    margin-top: 5px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.7px;

    color: var(--orange);

}


/* NAV */

.nav {

    display: flex;

    align-items: center;

    gap: 26px;

}


.nav > a:not(.btn) {

    position: relative;

    padding: 28px 0;

    font-size: 14px;

    font-weight: 600;

    color: var(--dark);

    transition: color 0.25s ease;

}


.nav > a:not(.btn)::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 18px;

    width: 0;

    height: 2px;

    background: var(--orange);

    transition: width 0.25s ease;

}


.nav > a:not(.btn):hover {

    color: var(--green);

}


.nav > a:not(.btn):hover::after,
.nav > a.active:not(.btn)::after {

    width: 100%;

}


.nav > a.active:not(.btn) {

    color: var(--green);

}


/* =========================================================
   4. DROPDOWN
   ========================================================= */

.dropdown {
    position: relative;
    z-index: 1000;
}


.drop-btn {
    padding: 28px 0;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border: none;
}


.drop-btn:hover {
    color: var(--green);
}


.drop-menu {
    position: absolute;

    top: calc(100% - 4px);
    left: 50%;

    transform:
        translateX(-50%)
        translateY(10px);

    min-width: 245px;

    padding: 10px;

    background: var(--green-dark) !important;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius:
        var(--radius-sm);

    box-shadow:
        var(--shadow-lg);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 99999;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}


.dropdown:hover .drop-menu,
.dropdown:focus-within .drop-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


.drop-menu a {

    display: block;

    width: 100%;
    box-sizing: border-box;

    padding: 11px 14px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 600;

    color: var(--white) !important;

    background: transparent !important;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.drop-menu a:hover {

    background: var(--orange) !important;

    color: var(--white) !important;

}

/* =========================================================
   5. BUTTONS
   ========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding:
        0 20px;

    border-radius: 9px;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;

}


.btn:hover {

    transform:
        translateY(-2px);

}


.btn-orange {

    color: var(--white);

    background: var(--orange);

    box-shadow:
        0 8px 22px rgba(245, 130, 32, 0.22);

}


.btn-orange:hover {

    background: var(--orange-dark);

    box-shadow:
        0 12px 28px rgba(245, 130, 32, 0.28);

}


.btn-green {

    color: var(--white);

    background: var(--green);

}


.btn-green:hover {

    background: var(--green-dark);

}


.btn-outline {

    color: var(--green);

    background: transparent;

    border:
        1px solid var(--green);

}


.btn-outline:hover {

    color: var(--white);

    background: var(--green);

}


/* =========================================================
   6. MOBILE MENU BUTTON
   ========================================================= */

.menu-btn {

    display: none;

    width: 44px;

    height: 44px;

    border-radius: 10px;

    background: var(--green-light);

    color: var(--green);

    font-size: 22px;

    cursor: pointer;

}


/* =========================================================
   7. HERO
   ========================================================= */

.hero {

    position: relative;

    min-height: 680px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(7, 35, 24, 0.94) 0%,
            rgba(7, 35, 24, 0.80) 45%,
            rgba(7, 35, 24, 0.25) 100%
        ),
        url("../images/hero.jpg")
        center / cover no-repeat;

}


.hero-content {

    max-width: 720px;

    padding:
        100px 0;

    color: var(--white);

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.eyebrow::before {

    content: "";

    width: 28px;

    height: 2px;

    background: var(--orange);

}


.hero h1 {

    max-width: 760px;

    font-size:
        clamp(42px, 6vw, 76px);

    line-height: 1.02;

    letter-spacing: -3px;

    margin-bottom: 24px;

}


.hero p {

    max-width: 650px;

    color:
        rgba(255, 255, 255, 0.85);

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 32px;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


/* =========================================================
   8. PAGE HERO
   ========================================================= */

.page-hero {

    position: relative;

    padding:
        100px 0;

    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            var(--green)
        );

    color: var(--white);

    overflow: hidden;

}


.page-hero::after {

    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    border-radius: 50%;

    right: -120px;

    top: -170px;

    border:
        70px solid
        rgba(255, 255, 255, 0.05);

}


.page-hero h1 {

    max-width: 850px;

    font-size:
        clamp(38px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 18px;

}


.page-hero p {

    max-width: 700px;

    color:
        rgba(255, 255, 255, 0.84);

    font-size: 17px;

}


/* =========================================================
   9. SECTIONS
   ========================================================= */

.section {

    padding:
        95px 0;

}


.section.alt {

    background: var(--light);

}


.section-head {

    max-width: 720px;

    margin-bottom: 48px;

}


.section-tag {

    margin-bottom: 10px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;

}


.section-head h2,
.about-copy h2,
.contact-info h2,
.form-card h2,
.cta h2 {

    color: var(--dark);

    font-size:
        clamp(30px, 4vw, 48px);

    line-height: 1.12;

    letter-spacing: -1.5px;

    margin-bottom: 16px;

}


.section-head p,
.about-copy p {

    color: var(--muted);

}


/* =========================================================
   10. ABOUT GRID
   ========================================================= */

.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 65px;

    align-items: center;

}


.about-image {

    position: relative;

}


.about-image::after {

    content: "";

    position: absolute;

    width: 110px;

    height: 110px;

    left: -18px;

    bottom: -18px;

    border-radius: 18px;

    background:
        var(--orange);

    z-index: -1;

}


.about-image img {

    width: 100%;

    min-height: 420px;

    object-fit: cover;

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow-lg);

}


.about-copy h2 {

    margin-bottom: 22px;

}


.about-copy p {

    margin-bottom: 16px;

}


.about-copy .btn {

    margin-top: 12px;

}


/* =========================================================
   11. CARDS
   ========================================================= */

.cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

}


.card {

    overflow: hidden;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        0 5px 20px rgba(16, 35, 27, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow-lg);

}


.card-img {

    height: 240px;

    overflow: hidden;

}


.card-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}


.card:hover .card-img img {

    transform:
        scale(1.05);

}


.card-body {

    padding: 28px;

}


.card-body h3 {

    color: var(--dark);

    font-size: 22px;

    line-height: 1.25;

    margin-bottom: 12px;

}


.card-body p {

    color: var(--muted);

    margin-bottom: 20px;

}


.text-link {

    display: inline-flex;

    align-items: center;

    color: var(--green);

    font-size: 14px;

    font-weight: 800;

}


.text-link:hover {

    color: var(--orange);

}


/* =========================================================
   12. FEATURES
   ========================================================= */

.features {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

}


.feature {

    padding: 32px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

}


.feature .icon {

    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background: var(--green-light);

    color: var(--green);

    font-size: 22px;

    font-weight: 800;

}


.feature h3 {

    margin-bottom: 10px;

    color: var(--dark);

    font-size: 20px;

}


.feature p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================================
   13. INDUSTRIES
   ========================================================= */

.industry-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.industry {

    min-height: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-sm);

    background: var(--white);

    color: var(--dark);

    font-weight: 800;

    text-align: center;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;

}


.industry:hover {

    transform:
        translateY(-3px);

    border-color:
        var(--green);

}


/* =========================================================
   14. DIRECTORS
   ========================================================= */

.director-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;

}


.director-card {

    display: flex;

    gap: 24px;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background: var(--white);

    box-shadow:
        0 5px 20px rgba(16, 35, 27, 0.04);

}


.director-avatar {

    flex:
        0 0 72px;

    width: 72px;

    height: 72px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--green);

    color: var(--white);

    font-size: 20px;

    font-weight: 800;

}


.director-card h3 {

    color: var(--dark);

    font-size: 21px;

    margin-bottom: 2px;

}


.director-role {

    display: block;

    margin-bottom: 12px;

    color: var(--orange);

    font-size: 13px;

    font-weight: 800;

}


.director-card p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================================
   15. LOCATIONS
   ========================================================= */

.location-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

}


.location-card {

    padding: 35px;

    text-align: center;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

}


.location-icon {

    width: 62px;

    height: 62px;

    display: grid;

    place-items: center;

    margin:
        0 auto 18px;

    border-radius: 50%;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 14px;

    font-weight: 800;

}


.location-card h3 {

    margin-bottom: 5px;

    color: var(--dark);

    font-size: 21px;

}


.location-card p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================================
   16. PROCESS
   ========================================================= */

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.process-step {

    position: relative;

    padding: 30px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

}


.process-step span {

    display: inline-block;

    margin-bottom: 25px;

    color: var(--orange);

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1px;

}


.process-step h3 {

    margin-bottom: 10px;

    color: var(--dark);

    font-size: 19px;

}


.process-step p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================================
   17. CTA
   ========================================================= */

.cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding:
        50px;

    border-radius:
        24px;

    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            var(--green)
        );

    color: var(--white);

    box-shadow:
        var(--shadow-lg);

}


.cta .section-tag {

    color: var(--orange);

}


.cta h2 {

    max-width: 700px;

    color: var(--white);

}


.cta p {

    max-width: 650px;

    color:
        rgba(255, 255, 255, 0.78);

}


.cta .btn {

    flex-shrink: 0;

}


/* =========================================================
   18. CONTACT
   ========================================================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 55px;

    align-items: start;

}


.contact-info > p {

    max-width: 560px;

    color: var(--muted);

    margin-bottom: 35px;

}


.contact-item {

    display: flex;

    gap: 16px;

    margin-bottom: 24px;

}


.contact-icon {

    flex:
        0 0 48px;

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: var(--green-light);

    color: var(--green);

    font-weight: 800;

}


.contact-item span {

    display: block;

    margin-bottom: 3px;

    color: var(--muted);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.contact-item a {

    color: var(--green);

    font-weight: 700;

}


.contact-item a:hover {

    color: var(--orange);

}


.contact-item p {

    color: var(--text);

    font-size: 14px;

}


/* =========================================================
   19. FORM
   ========================================================= */

.form-card {

    padding: 40px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);

}


.form-card > p {

    color: var(--muted);

    margin-bottom: 25px;

}


.form-group {

    margin-bottom: 18px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: var(--dark);

    font-size: 13px;

    font-weight: 800;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding:
        13px 15px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background: var(--light);

    color: var(--dark);

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        var(--green);

    box-shadow:
        0 0 0 3px
        rgba(8, 116, 67, 0.10);

}


.form-group textarea {

    resize: vertical;

    min-height: 140px;

}


.form-note {

    margin-top: 15px;

    font-size: 13px;

    color: var(--green);

}


/* =========================================================
   20. FOOTER
   ========================================================= */

.footer {

    padding-top: 65px;

    background: var(--dark);

    color:
        rgba(255, 255, 255, 0.72);

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.3fr 0.8fr 1.2fr 1.2fr;

    gap: 45px;

    padding-bottom: 55px;

}


.footer h3 {

    margin-bottom: 18px;

    color: var(--white);

    font-size: 18px;

}


.footer p {

    margin-bottom: 10px;

    font-size: 13px;

}


.footer a {

    display: block;

    width: fit-content;

    margin-bottom: 9px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 13px;

    transition:
        color 0.2s ease;

}


.footer a:hover {

    color: var(--orange);

}


.footer-bottom {

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);

}


.footer-bottom .container {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-size: 12px;

}


/* =========================================================
   21. SOLAR CALCULATOR
   ========================================================= */

.calculator {

    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    gap: 30px;

}


.calculator-card {

    padding: 35px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);

}


.calculator-card h3 {

    margin-bottom: 8px;

    color: var(--dark);

    font-size: 24px;

}


.calculator-card > p {

    margin-bottom: 25px;

    color: var(--muted);

    font-size: 14px;

}


.calc-results {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.calc-result {

    padding: 20px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background: var(--light);

}


.calc-result span {

    display: block;

    margin-bottom: 5px;

    color: var(--muted);

    font-size: 12px;

}


.calc-result strong {

    color: var(--green);

    font-size: 22px;

}


/* =========================================================
   22. RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1000px) {


    .header-inner {

        min-height: 74px;

    }


    .nav {

        gap: 16px;

    }


    .nav > a:not(.btn),
    .drop-btn {

        font-size: 13px;

    }


    .cards {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .features {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   23. RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 760px) {


    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    /* HEADER */

    .header-inner {

        min-height: 68px;

    }


    .menu-btn {

        display: block;

    }


    .nav {

        position: absolute;

        top: 100%;

        left: 14px;

        right: 14px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 12px;

        background: var(--white);

        border:
            1px solid var(--border);

        border-radius:
            14px;

        box-shadow:
            var(--shadow-lg);

    }


    .nav.open {

        display: flex;

    }


    .nav > a:not(.btn) {

        padding: 13px 10px;

    }


    .nav > a:not(.btn)::after {

        display: none;

    }


    .nav .btn {

        margin-top: 8px;

    }


    .dropdown {

        width: 100%;

    }


    .drop-btn {

        width: 100%;

        padding: 13px 10px;

        text-align: left;

    }


/* =====================================================
   MOBILE PRODUCTS DROPDOWN — FINAL FIX
   ===================================================== */

@media (max-width: 760px) {

    .nav .dropdown {
        position: relative !important;
        width: 100% !important;
        display: block !important;
    }

    .nav .dropdown .drop-btn {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        padding: 13px 10px !important;

        background: transparent !important;
        color: var(--green) !important;

        text-align: left !important;
        font-size: 14px !important;
        font-weight: 700 !important;

        cursor: pointer !important;
    }

    .nav .dropdown .drop-menu {
        position: static !important;

        display: none !important;

        width: 100% !important;
        min-width: 100% !important;
        height: auto !important;
        max-height: none !important;

        margin: 5px 0 8px 0 !important;
        padding: 6px !important;

        background: var(--green-dark) !important;

        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        border-radius: 10px !important;

        box-shadow: none !important;

        transform: none !important;

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;

        overflow: visible !important;
    }

    .nav .dropdown.open .drop-menu {
        display: block !important;
    }

    .nav .dropdown .drop-menu a {
        position: static !important;

        display: block !important;

        width: 100% !important;
        height: auto !important;
        min-height: 42px !important;

        margin: 0 !important;
        padding: 11px 12px !important;

        color: #ffffff !important;
        background: transparent !important;

        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;

        text-align: left !important;
        text-decoration: none !important;

        border-radius: 8px !important;

        opacity: 1 !important;
        visibility: visible !important;

        transform: none !important;

        overflow: visible !important;
    }

    .nav .dropdown .drop-menu a:hover,
    .nav .dropdown .drop-menu a:focus,
    .nav .dropdown .drop-menu a:active {
        color: #ffffff !important;
        background: var(--orange) !important;
    }
}


    /* BRAND */

    .brand img {

        width: 45px;

        height: 45px;

    }


    .brand-text strong {

        font-size: 17px;

    }


    .brand-text span {

        font-size: 6px;

        letter-spacing: 1.1px;

    }


    /* HERO */

    .hero {

        min-height: 610px;

    }


    .hero-content {

        padding:
            80px 0;

    }


    .hero h1 {

        font-size:
            clamp(38px, 12vw, 58px);

        letter-spacing: -2px;

    }


    .hero p {

        font-size: 16px;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-actions .btn {

        width: 100%;

    }


    /* PAGE HERO */

    .page-hero {

        padding: 75px 0;

    }


    .page-hero h1 {

        font-size: 40px;

    }


    /* SECTIONS */

    .section {

        padding:
            70px 0;

    }


    /* GRIDS */

    .about-grid,
    .contact-grid,
    .calculator {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .cards,
    .features,
    .industry-grid,
    .location-grid,
    .director-grid,
    .process-grid {

        grid-template-columns: 1fr;

    }


    /* IMAGE */

    .about-image img {

        min-height: 300px;

    }


    /* CTA */

    .cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 32px;

    }


    /* FOOTER */

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .footer-bottom .container {

        min-height: auto;

        padding:
            20px 0;

        flex-direction: column;

        align-items: flex-start;

    }


    /* FORM */

    .form-card {

        padding: 25px;

    }


    /* CALCULATOR */

    .calc-results {

        grid-template-columns: 1fr;

    }

}


/* =========================================================
   24. SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {


    .hero h1 {

        font-size: 38px;

    }


    .page-hero h1 {

        font-size: 34px;

    }


    .card-body,
    .feature {

        padding: 23px;

    }


    .director-card {

        flex-direction: column;

    }


    .director-avatar {

        flex-basis: 62px;

        width: 62px;

        height: 62px;

    }

}

/* Highlight Solar Calculator button in hero */
.hero .hero-actions .btn-outline {
    background: rgba(242, 140, 40, 0.20) !important;
    border: 2px solid #f28c28 !important;
    color: #ffffff !important;
    box-shadow: 0 0 18px rgba(242, 140, 40, 0.45);
}

/* =========================================================
   FOOTER SOCIAL MEDIA
========================================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);
    color: #ffffff !important;

    font-size: 16px;
    line-height: 1;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-4px);

    background: var(--orange);
    border-color: var(--orange);

    color: #ffffff !important;

    box-shadow: 0 8px 22px rgba(245, 130, 32, 0.28);
}

.footer-social a:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}

.footer-social i {
    pointer-events: none;
}


/* MOBILE */
@media (max-width: 768px) {

    .footer-social {
        margin-top: 18px;
        gap: 9px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

}