/* ========================================
   MATERIALIZE
   WEBSITE STYLES
======================================== */


/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #050505;

    color: #ffffff;

    line-height: 1.6;

}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea,
select {

    font: inherit;

}


/* ========================================
   CONTAINER
======================================== */

.container {

    width: 90%;

    max-width: 1200px;

    margin: 0 auto;

}


/* ========================================
   HEADER
======================================== */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(5, 5, 5, 0.96);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.1);

    backdrop-filter:
        blur(10px);

}


.header-inner {

    min-height: 85px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.logo-link {

    display: block;

}


.site-logo {

    width: 180px;

    height: auto;

    object-fit: contain;

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 28px;

}


.main-nav a {

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    transition:
        color 0.3s ease;

}


.main-nav a:hover {

    color: #bfc5cc;

}


.menu-toggle {

    display: none;

    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 30px;

    cursor: pointer;

}


/* ========================================
   HERO SECTION
======================================== */

.hero {

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(130, 140, 150, 0.18),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #050505 0%,
            #111417 100%
        );

}


.hero-content {

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    align-items: center;

    gap: 60px;

    padding:
        100px
        0;

}


.hero-text {

    max-width: 700px;

}


.eyebrow {

    margin-bottom: 15px;

    color: #aeb5bd;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

}


.hero h1 {

    margin-bottom: 25px;

    font-size:
        clamp(48px, 7vw, 90px);

    line-height: 1.05;

    letter-spacing: -3px;

    color: #ffffff;

}


.hero-description {

    max-width: 600px;

    margin-bottom: 35px;

    color: #c2c7cc;

    font-size: 19px;

}


/* ========================================
   HERO LOGO
======================================== */

.hero-logo {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 400px;

}


.hero-logo img {

    width: 100%;

    max-width: 500px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 40px
            rgba(0, 0, 0, 0.55)
        );

    transition:
        transform 0.4s ease;

}


.hero-logo img:hover {

    transform:
        scale(1.03);

}


/* ========================================
   HERO BUTTONS
======================================== */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

}


/* ========================================
   BUTTONS
======================================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding:
        0 28px;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:

        transform 0.3s ease,

        background 0.3s ease,

        color 0.3s ease;

}


.btn:hover {

    transform:
        translateY(-2px);

}


.btn-primary {

    background: #ffffff;

    color: #050505;

    border:
        1px solid
        #ffffff;

}


.btn-primary:hover {

    background: #cfd4d9;

    border-color: #cfd4d9;

}


.btn-secondary {

    background: transparent;

    color: #ffffff;

    border:
        1px solid
        rgba(255, 255, 255, 0.4);

}


.btn-secondary:hover {

    background: #ffffff;

    color: #050505;

}


/* ========================================
   GENERAL SECTIONS
======================================== */

.section {

    padding:
        100px
        0;

}


.section-heading {

    max-width: 700px;

    margin-bottom: 60px;

}


.section-heading h2 {

    margin-bottom: 20px;

    font-size:
        clamp(35px, 5vw, 60px);

    line-height: 1.1;

    letter-spacing: -2px;

}


.section-heading p:not(.eyebrow) {

    color: #aeb5bd;

    font-size: 17px;

}


/* ========================================
   SERVICES
======================================== */

.services-section {

    background: #0b0d0f;

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.service-card {

    padding: 35px;

    min-height: 280px;

    background: #121518;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    transition:

        transform 0.3s ease,

        border-color 0.3s ease;

}


.service-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(255, 255, 255, 0.25);

}


.service-icon {

    margin-bottom: 30px;

    color: #aeb5bd;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

}


.service-card h3 {

    margin-bottom: 15px;

    font-size: 23px;

}


.service-card p {

    color: #9ca3aa;

    font-size: 15px;

}


/* ========================================
   PRODUCTS
======================================== */

.products-section {

    background: #050505;

}


.products-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

}


.product-card {

    overflow: hidden;

    background: #111315;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    transition:
        transform 0.3s ease;

}


.product-card:hover {

    transform:
        translateY(-5px);

}


.product-image {

    width: 100%;

    height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    background: #eeeeee;

    overflow: hidden;

}


.product-image img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition:
        transform 0.4s ease;

}


.product-card:hover
.product-image img {

    transform:
        scale(1.04);

}


.product-info {

    padding: 25px;

}


.product-info h3 {

    margin-bottom: 10px;

    font-size: 22px;

}


.product-info p {

    color: #9ca3aa;

    font-size: 15px;

}


/* ========================================
   ABOUT
======================================== */

.about-section {

    background: #101214;

}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: start;

}


.about-grid h2 {

    font-size:
        clamp(40px, 6vw, 70px);

    line-height: 1.05;

    letter-spacing: -3px;

}


.about-text p {

    margin-bottom: 25px;

    color: #b7bdc3;

    font-size: 17px;

}


/* ========================================
   QUOTE FORM
======================================== */

.quote-section {

    background:

        linear-gradient(
            135deg,
            #080909,
            #171a1d
        );

}


.quote-container {

    max-width: 900px;

}


.quote-form {

    padding: 45px;

    background: #0d0f11;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 8px;

}


.form-row {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 25px;

}


.form-group {

    margin-bottom: 25px;

}


.form-group label {

    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding:
        15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.2);

    border-radius: 4px;

    outline: none;

    background: #16191c;

    color: #ffffff;

    transition:
        border-color 0.3s ease;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        #ffffff;

}


.form-group textarea {

    resize: vertical;

    min-height: 150px;

}


.form-group select option {

    background: #16191c;

    color: #ffffff;

}


.submit-button {

    border: none;

    width: 100%;

}


.form-note {

    margin-top: 15px;

    color: #777e85;

    font-size: 12px;

    text-align: center;

}


.hidden-field {

    position: absolute;

    left: -9999px;

    width: 1px;

    height: 1px;

    overflow: hidden;

}


/* ========================================
   FOOTER
======================================== */

.site-footer {

    padding:
        50px
        0;

    background: #050505;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.1);

}


.footer-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

}


.footer-logo {

    width: 170px;

    margin-bottom: 10px;

}


.footer-brand p {

    color: #8d949b;

    font-size: 13px;

}


.footer-contact {

    text-align: right;

    color: #8d949b;

    font-size: 13px;

}


.footer-contact p {

    margin-bottom: 8px;

}


.footer-contact a {

    color: #ffffff;

}


.footer-contact a:hover {

    text-decoration: underline;

}


/* ========================================
   THANK YOU PAGE
======================================== */

.thank-you-page {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;

    background:

        radial-gradient(
            circle at center,
            #1a1e22 0%,
            #050505 65%
        );

}


.thank-you-container {

    width: 100%;

    max-width: 700px;

    margin: 0 auto;

}


.thank-you-card {

    padding:
        60px
        40px;

    text-align: center;

    background:
        rgba(15, 17, 19, 0.95);

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 10px;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.4);

}


.thank-you-logo {

    width: 220px;

    max-width: 80%;

    margin:
        0 auto
        35px;

}


.thank-you-icon {

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0 auto
        25px;

    border:
        2px solid
        #ffffff;

    border-radius: 50%;

    color: #ffffff;

    font-size: 32px;

    font-weight: 700;

}


.thank-you-card h1 {

    margin-bottom: 20px;

    font-size:
        clamp(40px, 6vw, 65px);

    line-height: 1.1;

    letter-spacing: -2px;

}


.thank-you-message {

    max-width: 500px;

    margin:
        0 auto
        35px;

    color: #aeb5bd;

    font-size: 17px;

    line-height: 1.7;

}


/* ========================================
   RESPONSIVE
======================================== */

@media (
    max-width: 1000px
) {


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .products-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .hero-content {

        gap: 40px;

    }


    .hero-logo img {

        max-width: 400px;

    }

}


@media (
    max-width: 768px
) {


    .header-inner {

        min-height: 70px;

    }


    .site-logo {

        width: 150px;

    }


    .menu-toggle {

        display: block;

    }


    .main-nav {

        display: none;

        position: absolute;

        top: 70px;

        left: 0;

        width: 100%;

        padding: 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        background: #080909;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.1);

    }


    .main-nav.active {

        display: flex;

    }


    /* HERO MOBILE */

    .hero {

        min-height: auto;

    }


    .hero-content {

        grid-template-columns: 1fr;

        text-align: center;

        padding:
            70px
            0
            80px;

        gap: 30px;

    }


    .hero-logo {

        order: -1;

        min-height: auto;

        margin-bottom: 10px;

    }


    .hero-logo img {

        width: 85%;

        max-width: 350px;

    }


    .hero-text {

        max-width: 100%;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-buttons {

        justify-content: center;

    }


    .services-grid,
    .products-grid,
    .about-grid,
    .form-row {

        grid-template-columns: 1fr;

    }


    .about-grid {

        gap: 40px;

    }


    .quote-form {

        padding: 25px;

    }


    .footer-inner {

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-contact {

        text-align: left;

    }


}


@media (
    max-width: 480px
) {


    .container {

        width: 92%;

    }


    .section {

        padding:
            70px
            0;

    }


    .hero-content {

        padding:
            50px
            0
            70px;

    }


    .hero-logo img {

        width: 90%;

    }


    .hero h1 {

        font-size: 48px;

        letter-spacing: -2px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .btn {

        width: 100%;

    }


    .product-image {

        height: 250px;

    }


    .thank-you-page {

        padding: 20px;

    }


    .thank-you-card {

        padding:
            45px
            25px;

    }


    .thank-you-logo {

        width: 180px;

    }

}