/* ==================================================
   SUMMITOPS
   Main Stylesheet
================================================== */


/* ------------------------------
   RESET / GLOBAL
------------------------------ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080a0c;
    color: #f4f4f4;
    line-height: 1.5;
}

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

.orange {
    color: #ff681d;
}


/* ------------------------------
   NAVIGATION
------------------------------ */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;

    width: 100%;
    height: 74px;

    background: rgba(5, 6, 7, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-container {
    max-width: 1400px;
    height: 100%;

    margin: auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    width: 200px;
    height: 85px;

    object-fit: contain;
    object-position: left center;
}

.nav-links {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 45px;
}

.nav-links a {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff681d;
}

.nav-links a.active::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #ff681d;
}

.nav-button {
    padding: 10px 25px;

    background: #ff681d;
    color: #080a0c;

    border: 1px solid #ff681d;
    border-radius: 5px;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: 0.2s;
}

.nav-button:hover {
    background: #ff874a;
    border-color: #ff874a;

    transform: translateY(-1px);
}

.menu-button {
    display: none;

    border: 0;
    background: none;

    color: white;

    font-size: 27px;

    cursor: pointer;
}


/* ------------------------------
   HERO
------------------------------ */

.hero {
    position: relative;

    min-height: 440px;

    padding-top: 74px;

    background-image: url("../images/hero.png");
    background-size: cover;
    background-position: center 15%;

    border-bottom: 1px solid #262626;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 5, 6, 0.98) 0%,
            rgba(4, 5, 6, 0.88) 25%,
            rgba(4, 5, 6, 0.35) 58%,
            rgba(4, 5, 6, 0.15) 100%
        ),
        linear-gradient(
            0deg,
            rgba(4, 5, 6, 0.95) 0%,
            transparent 40%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    max-width: 1400px;
    min-height: 365px;

    margin: auto;
    padding: 35px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    margin-bottom: 15px;

    font-size: clamp(48px, 5vw, 70px);
    line-height: 0.93;
    letter-spacing: -2px;
}

.hero h1 span {
    color: #ff681d;
}

.hero-description {
    max-width: 470px;

    margin-bottom: 12px;

    color: #e1e1e1;

    font-size: 17px;
}

.human {
    margin-bottom: 20px;

    font-size: 14px;
    font-weight: bold;
}

.hero-buttons {
    display: flex;

    gap: 13px;
}


/* ------------------------------
   BUTTONS
------------------------------ */

.button {
    min-width: 160px;

    padding: 13px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;

    text-transform: uppercase;

    transition: 0.2s;
}

.button-primary {
    background: #ff681d;
    color: #080a0c;

    border: 1px solid #ff681d;
}

.button-primary:hover {
    background: #ff874a;
    border-color: #ff874a;

    transform: translateY(-2px);
}

.button-outline {
    background: rgba(0, 0, 0, 0.3);
    color: #ff681d;

    border: 1px solid #ff681d;
}

.button-outline:hover {
    background: #ff681d;
    color: #080a0c;
}


/* ------------------------------
   SERVICE AREA / PHONE
------------------------------ */

.service-area {
    align-self: flex-end;

    margin-bottom: 25px;

    display: flex;
    align-items: center;

    gap: 15px;
}

.location-icon {
    color: #ff681d;

    font-size: 30px;
}

.service-area strong {
    display: block;

    margin-bottom: 4px;

    font-size: 13px;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.service-area p {
    color: #c2c2c2;

    font-size: 12px;
}

.service-phone {
    margin-top: 6px;
}

.service-phone a {
    color: #ff681d;

    font-weight: 700;

    transition: color 0.2s;
}

.service-phone a:hover {
    color: #ff9a66;
}


/* ------------------------------
   SERVICES
------------------------------ */

.services {
    background: #090b0d;
}

.services-container {
    max-width: 1400px;

    margin: auto;
    padding: 0 40px 18px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    min-height: 245px;

    margin-top: -1px;
    padding: 25px;

    display: flex;

    gap: 22px;

    background:
        linear-gradient(
            145deg,
            #16191b,
            #0e1012
        );

    border: 1px solid #282b2e;
    border-top: 2px solid #ff681d;
    border-radius: 7px;

    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-4px);

    border-color: #ff681d;
}

.service-icon {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    fill: none;
    stroke: #ff681d;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-content h2 {
    margin-bottom: 2px;

    font-size: 17px;

    text-transform: uppercase;
}

.service-description {
    max-width: 270px;

    margin-bottom: 10px;

    color: #c8c8c8;

    font-size: 13px;
}

.service-card ul {
    margin-bottom: 11px;

    list-style: none;
}

.service-card li {
    position: relative;

    margin-bottom: 3px;
    padding-left: 19px;

    color: #dedede;

    font-size: 12px;
}

.service-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #ff681d;

    font-weight: bold;
}

.learn-more {
    color: #ff681d;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.learn-more:hover {
    color: #ff9a66;
}


/* ------------------------------
   ABOUT / STATS
------------------------------ */

.about {
    background: #0a0c0e;

    border-top: 1px solid #202326;
    border-bottom: 1px solid #202326;
}

.about-container {
    max-width: 1400px;
    min-height: 120px;

    margin: auto;
    padding: 25px 40px;

    display: grid;
    grid-template-columns: 1.2fr 1.5fr 0.6fr 0.6fr 0.8fr;

    align-items: center;

    gap: 30px;
}

.about-heading h2 {
    font-size: 23px;
    line-height: 1.15;
}

.about-heading span {
    color: #ff681d;
}

.about-copy {
    padding-right: 20px;

    color: #b8b8b8;

    font-size: 12px;
}

.stat {
    min-height: 75px;

    padding-left: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-left: 1px solid #292c2f;

    text-align: center;
}

.stat strong {
    color: #f5f5f5;

    font-size: 19px;
}

.stat span {
    margin-top: 5px;

    color: #9d9d9d;

    font-size: 9px;
    letter-spacing: 0.7px;

    text-transform: uppercase;
}


/* ------------------------------
   CONTACT MODAL
------------------------------ */

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 25px;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.82);

    backdrop-filter: blur(4px);
}

.contact-modal-content {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 650px;

    padding: 35px;

    background: #111416;

    border: 1px solid #303336;
    border-top: 2px solid #ff681d;
    border-radius: 6px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.contact-modal-header {
    margin-bottom: 25px;
}

.section-label {
    color: #ff681d;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.contact-modal-header h2 {
    margin: 8px 0 10px;

    color: #f4f4f4;

    font-size: 30px;
    line-height: 1.1;

    text-transform: uppercase;
}

.contact-modal-header h2 span {
    color: #ff681d;
}

.contact-modal-header p {
    margin: 0;

    color: #aaa;

    font-size: 14px;
    line-height: 1.6;
}


/* ------------------------------
   CONTACT MODAL CLOSE
------------------------------ */

.contact-close {
    position: absolute;
    top: 14px;
    right: 18px;

    padding: 0;

    background: transparent;
    border: none;

    color: #888;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition: color 0.2s;
}

.contact-close:hover {
    color: #ff681d;
}


/* ------------------------------
   CONTACT FORM
------------------------------ */

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 7px;

    margin-bottom: 18px;
}

.form-group label {
    color: #f4f4f4;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.form-group label span {
    color: #777;

    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 12px 13px;

    background: #080a0b;
    color: #f4f4f4;

    border: 1px solid #34383b;
    border-radius: 4px;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff681d;
}

.form-group textarea {
    min-height: 120px;

    resize: vertical;
}

.contact-submit {
    min-width: 190px;

    border: none;

    cursor: pointer;
}

.form-status {
    min-height: 18px;

    margin-top: 12px;

    color: #aaa;

    font-size: 12px;
}


/* ------------------------------
   FOOTER
------------------------------ */

footer {
    background: #080a0c;
}

.footer-container {
    max-width: 1000px;

    margin: auto;
    padding: 30px 40px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.footer-column h3 {
    margin-bottom: 5px;

    color: #ff681d;

    font-size: 10px;
    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    color: #9e9e9e;

    font-size: 10px;
}

.footer-column a:hover {
    color: #ff681d;
}

.copyright {
    max-width: 1400px;

    margin: auto;
    padding: 10px 40px 15px;

    border-top: 1px solid #202326;

    color: #707070;

    font-size: 9px;
}


/* ------------------------------
   RESPONSIVE - TABLET
------------------------------ */

@media (max-width: 1000px) {

    .nav-links {
        gap: 20px;
    }

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

    .about-container {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        padding: 20px;

        border-left: 0;
        border-top: 1px solid #292c2f;
    }

}


/* ------------------------------
   RESPONSIVE - MOBILE
------------------------------ */

@media (max-width: 760px) {

    /* NAVIGATION */

    .navbar {
        position: fixed;
    }

    .nav-container {
        padding: 0 20px;
    }

    .brand img {
        width: 250px;
        height: 65px;

        object-fit: contain;
        object-position: left center;
    }

    .nav-links {
        position: absolute;
        top: 74px;
        left: 0;

        width: 100%;
        height: auto;

        padding: 20px;

        display: none;
        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        background: #080a0c;

        border-bottom: 1px solid #292c2f;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        height: auto;

        padding: 15px 0;
    }

    .nav-links a.active::after {
        display: none;
    }

    .nav-button {
        display: none;
    }

    .menu-button {
        display: block;
    }


    /* HERO */

    .hero {
        min-height: 620px;

        background-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 5, 6, 0.95),
                rgba(4, 5, 6, 0.6)
            ),
            linear-gradient(
                0deg,
                #080a0c 0%,
                transparent 50%
            );
    }

    .hero-container {
        min-height: 545px;

        padding: 60px 20px 30px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .service-area {
        align-self: flex-start;

        margin-top: 40px;
        margin-bottom: 0;
    }


    /* SERVICES */

    .services-container {
        padding: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }


    /* ABOUT */

    .about-container {
        padding: 35px 20px;

        grid-template-columns: 1fr;
    }

    .about-copy {
        padding-right: 0;
    }


    /* CONTACT MODAL */

    .contact-modal {
        padding: 15px;
    }

    .contact-modal-content {
        max-height: 90vh;

        padding: 25px 20px;

        overflow-y: auto;
    }

    .contact-modal-header h2 {
        font-size: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* FOOTER */

    .footer-container {
        padding: 35px 20px;

        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .copyright {
        padding: 15px 20px;
    }

}


/* ------------------------------
   RESPONSIVE - SMALL MOBILE
------------------------------ */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 42px;
    }

    .service-card {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

}