/* HERO SECTION */
.hero {
    position: relative;
    height: 50vh;
    background: url("../images/3.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

/* DARK + COLOR OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 10, 20, 0.8),
        rgba(0, 20, 40, 0.9)
    );
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    color: #fff;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}
/* ============================= */
/* 1024px RESPONSIVE FIX */
/* ============================= */
@media (max-width: 1024px) {

    /* HERO */
    .hero {
        height: 40vh;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 16px;
        max-width: 700px;
        margin: auto;
    }
}
/* ============================= */
/* 768px MOBILE / TABLET */
/* ============================= */
@media (max-width: 768px) {

    /* HERO */
    .hero {
        height: 35vh;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.5;
    }
}
/* ============================= */
/* 480px SMALL MOBILE */
/* ============================= */
@media (max-width: 480px) {

    /* HERO */
    .hero {
        height: 30vh;
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 13px;
    }
}
/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {

    padding: 80px 20px 100px;

    background: #000;

    color: #ffffff;

    text-align: center;
}

/* HEADING */
.contact-section h2 {

    margin-bottom: 55px;

    font-size: 34px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

/* =========================================
   FORM CONTAINER
========================================= */

form {

    max-width: 1100px;

    margin: auto;

    padding: 55px 50px;

    background:
        linear-gradient(
            180deg,
            rgba(16,16,16,0.92),
          rgba(10,10,10,0.96)
        );

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    box-shadow:
        0 15px 50px rgba(0,0,0,0.45);

    backdrop-filter: blur(10px);

    overflow: hidden;
}

/* =========================================
   ROW
========================================= */

.form-row {

    display: flex;

    gap: 22px;

    margin-bottom: 28px;
}

/* =========================================
   GROUP
========================================= */

.form-group {

    flex: 1;
}

/* =========================================
   INPUTS
========================================= */

.form-group input,
.form-group textarea {

    width: 100%;

    background: rgba(255,255,255,0.045);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 14px;

    padding: 16px 18px;

    color: #ffffff;

    font-size: 14px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

/* PLACEHOLDER */
.form-group input::placeholder,
.form-group textarea::placeholder {

    color:rgba(255,255,255,0.62);
}

/* TEXTAREA */
.form-group textarea {

    min-height: 160px;

    resize: vertical;

    margin-top: 12px;
}

/* FOCUS */
.form-group input:focus,
.form-group textarea:focus {

    outline: none;

    border-color: #ff7b00;

    background: rgba(255,255,255,0.05);

    transform: translateY(-2px);
}

/* =========================================
   SERVICES
========================================= */

.services {

    margin: 40px 0;

    padding: 28px;

    border-radius: 20px;

    background: rgba(255,255,255,0.035);

    border: 1px solid rgba(255,255,255,0.12);

    text-align: left;
}

/* LABEL */
.services label {

    display: block;

    margin-bottom: 18px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

/* =========================================
   CHECKBOX GRID
========================================= */

.checkbox-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

/* CHECKBOX LABEL */
.checkbox-grid label {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;

    color: rgba(255,255,255,0.88);
}

/* CHECKBOX */
.checkbox-grid input[type="checkbox"] {

    accent-color: #ff7b00;

    transform: scale(1.1);
}

/* =========================================
   BUTTON
========================================= */

.btn-submit {

    margin-top: 28px;

    background:
        linear-gradient(
            135deg,
            #ff7b00,
            #ff9500
        );

    border: none;

    border-radius: 14px;
    box-shadow:
0 8px 24px rgba(255,123,0,0.28);
    padding: 16px 34px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* HOVER */
.btn-submit:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(255,123,0,0.35);
}

/* =========================================
   STATUS
========================================= */

.form-status {

    margin-top: 18px;

    font-size: 14px;

    text-align: center;

    display: none;
}

.form-status.success {
    color: #00ffae;
}

.form-status.error {
    color: #ff4d4d;
}

/* =========================================
   1024px
========================================= */

@media (max-width: 1024px) {

    .contact-section {

        padding: 70px 18px 90px;
    }

    .contact-section h2 {

        font-size: 28px;
    }

    form {

        padding: 45px 35px;
    }

}

/* =========================================
   768px
========================================= */

@media (max-width: 768px) {

    .contact-section {

        padding: 60px 14px 80px;
    }

    .contact-section h2 {

        font-size: 24px;

        margin-bottom: 40px;
    }

    form {

        padding: 30px 22px;

        border-radius: 20px;
    }

    .form-row {

        flex-direction: column;

        gap: 18px;
    }

    .checkbox-grid {

        grid-template-columns: 1fr;
    }

    .services {

        padding: 22px;
    }

    .btn-submit {

        width: 100%;
    }

}

/* =========================================
   480px
========================================= */

@media (max-width: 480px) {

    .contact-section {

        padding: 50px 10px 70px;
    }

    .contact-section h2 {

        font-size: 20px;

        letter-spacing: 1px;
    }

    form {

        padding: 22px 16px;

        border-radius: 18px;
    }

    .form-group input,
    .form-group textarea {

        font-size: 13px;

        padding: 14px;
    }

    .form-group textarea {

        min-height: 120px;
    }

    .services {

        padding: 18px;
    }

    .checkbox-grid label {

        font-size: 13px;
    }

}