body {
    margin: 0;
    background: radial-gradient(circle at top left, #101827 0%, #070b14 45%, #03050a 100%);
    color: white;
    font-family: 'Times New Roman', Times, serif;
}

main {
    border-top: 2px solid #f5c542;
    border-bottom: 2px solid #f5c542;
}

/* ============================= */
/* CONTACT FORM */
/* ============================= */
.contact {
    padding: clamp(60px, 8vw, 100px) 20px; /* 🔥 replaces scale */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

/* OUTER */
.contact-container {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;

    border-radius: 20px;
    padding: 2px;

    background: linear-gradient(135deg, 
        #ff8c42, 
        #f5c542, 
        #9b5cff, 
        #4da6ff
    );
}

/* INNER GRID */
.inner-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; /* 🔥 add spacing */

    padding: clamp(40px, 6vw, 80px);
    border-radius: 18px;
    background-color: #070b14;
}

/* ============================= */
/* LEFT SIDE */
/* ============================= */
.contact-info {
    text-align: left;
    max-width: 450px;
}

.info-heading {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
    font-weight: bold;
}

.info-text {
    margin-bottom: 30px;
    font-size: 18px;
    color: #ddd;
}

.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.info-item span {
    font-size: 16px;
}

/* ============================= */
/* RIGHT SIDE */
/* ============================= */
.contact-heading {
    color: #f4c56c;
    font-size: clamp(26px, 3vw, 32px);
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-subtext {
    margin-bottom: 25px;
    color: rgba(255,255,255,0.7);
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* INPUTS */
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);

    background: #1a1a1a;
    color: white;
    font-size: 15px;

    transition: 0.25s ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #f4c56c;
    box-shadow: 0 0 12px rgba(244,197,108,0.3);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

/* BUTTON */
.contact-button {
    background: linear-gradient(135deg, #f5c542, #ff8c42);
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    color: #1a1a1a;

    transition: 0.25s ease;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(247,210,124,0.5);
}

/* ============================= */
/* SOCIALS */
/* ============================= */
.socials {
    margin-top: 20px;
}

.social-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    background: #141414;
    color: #f5c26b;

    transition: 0.25s ease;
}

.social-icons a:hover {
    background: #f5c26b;
    color: #000;
    transform: translateY(-3px);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 900px) {

    .inner-contact-container {
        grid-template-columns: 1fr; /* 🔥 stack */
        gap: 30px;
    }

    .contact-info {
        max-width: 100%;
    }
}

@media (max-width: 500px) {

    .contact {
        padding: 50px 15px;
    }

    .inner-contact-container {
        padding: 30px 20px;
    }

    .contact-button {
        font-size: 15px;
        padding: 12px;
    }
}

/* Hide honeypot */
.honeypot {
    display: none;
}