body {
    color: #fff;
}

/* ===== FIX AUTOFILL WHITE BACKGROUND ===== */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px #000 inset !important;
    box-shadow: 0 0 0px 1000px #000 inset !important;
    transition: background-color 9999s ease-in-out 0s;
    border-bottom: 1px solid #555 !important;
}

.contact-wrap {
    /* max-width: 1200px; */
    /* margin: auto; */
    padding: 60px 15px !important;
    border-radius: 28px 28px 0 0;
}

/* ===== BIG TITLE ===== */
.big-title {
    text-align: center;
    font-size: 110px;
    font-weight: 900;
    color: #ff4d00;
    letter-spacing: 2px;
    margin-bottom: 40px;
    line-height: 1;
}

/* ===== GRID ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* ===== LEFT ===== */
.left-text p {
    font-size: 22px;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 20px;
}

.section-label {
    margin-top: 35px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #777;
}

.meta {
    margin-top: 6px;
    color: #ccc;
    font-size: 14px;
}

/* ===== FORM ===== */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 10px 0;
    color: #fff;
    font-size: 15px;
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #ff4d00;
}

.input-group label {
    position: absolute;
    top: -16px;
    left: 0;
    font-size: 12px;
    color: #777;
}

.full {
    grid-column: 1/3;
}

/* ===== SUBMIT ===== */
.submit-btn {
    grid-column: 1/3;
    margin-top: 30px;
    border: none;
    background: none;
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-top: 1px solid #333;
    padding-top: 20px;
    transition: .3s;
}

.submit-btn:hover {
    color: #ff4d00;
    transform: translateX(6px);
}

/* =========================
   📱 TABLET RESPONSIVE
========================= */
@media(max-width:1024px) {

    .big-title {
        font-size: 80px;
    }

    .contact-grid {
        gap: 40px;
    }

    .left-text p {
        font-size: 20px;
    }

    .submit-btn {
        font-size: 48px;
    }
}

/* =========================
   📱 MOBILE RESPONSIVE
========================= */
@media(max-width:768px) {

    .big-title {
        font-size: 52px;
        margin-bottom: 25px;
        text-align: left;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .left-text p {
        font-size: 18px;
    }

    /* .form-grid {
            grid-template-columns: 1fr;
        } */

    .full {
        grid-column: 1 / -1;
        /* full width */
    }

    .input-group textarea {
        width: 100%;
    }

    .submit-btn {
        font-size: 34px;
    }
}

/* SMALL MOBILE */
@media(max-width:480px) {
    .big-title {
        font-size: 42px;
        text-align: left;
    }

    .submit-btn {
        font-size: 28px;
    }
}

/* ===== PREMIUM ALERT UI (BOTTOM SLIDE) ===== */
#formAlert {
    position: fixed;
    bottom: -120px;
    /* 👈 bottom se hidden */
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    min-width: 320px;
    max-width: 90%;
    padding: 16px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3px;
    color: #fff;

    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #ff4d00;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 9999;

    opacity: 0;
    transition: all .45s cubic-bezier(.2, .8, .2, 1);
}

/* show state */
#formAlert.show {
    bottom: 20px;
    /* 👈 screen ke upar aayega */
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* success state */
#formAlert.success {
    border-left: 4px solid #22c55e;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 12px rgba(34, 197, 94, 0.25);
}

/* error state */
#formAlert.error {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 12px rgba(255, 77, 0, 0.25);
}

@media(max-width:600px) {
    #formAlert.show {
        bottom: 13px;
    }
}