/* PAGE */
.contact-page {
    padding: 7rem 10vw 5rem;
    background: #070513;
    color: white;
    position: relative;
    overflow: hidden;
}

/* GLOW BACKGROUND EFFECT */
.contact-page::before {
    content: "";
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 450px;
    background: var(--main-color);
    opacity: 0.08;
    filter: blur(120px);
    z-index: 0;
}

/* INTRO */

/* TYPING TEXT */
.typing-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    min-height: 60px;
}

/* blinking cursor */
.cursor {
    display: inline-block;
    color: var(--main-color);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}
.contact-intro {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contact-intro span  {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.2rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgb(255, 94, 0);
}
.contact-intro h1 {
    font-size: clamp(3rem, 4vw, 5rem);
    margin: 1.5rem 0 1rem;
    color: rgb(255, 232, 188);
    text-shadow: 0 0 30px rgba(255, 94, 0, 0.2);
}

.contact-intro p {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

/* CONTACT WRAPPER */
.contact-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* CONTACT CARD */
.contact-card {
    width: min(750px, 100%);
    background: rgba(18, 11, 33, 0.65);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 4px solid var(--main-color);

    padding: 2.5rem;
    border-radius: 24px;

    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);

    transition: 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(255,94,0,0.25);
}

/* LIST */
.contact-card ul {
    list-style: none;
    padding: 0;
}

.contact-card li {
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
}

.contact-card li span {
    color: rgba(255,255,255,0.6);
    font-size: 2rem;
}

.contact-card b {
    color: var(--main-color);
    font-size: 1.7rem;
}

/* STATUS */
.status {
    background: rgba(0,255,100,0.12);
    color: #8dffb0;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* FEEDBACK */
.feedback-section {
    max-width: 800px;
    margin: auto;
    margin-bottom: 5rem;

    background: rgba(18,11,33,0.5);
    border: 1px solid rgba(255,255,255,0.06);

    padding: 3rem;
    border-radius: 24px;

    backdrop-filter: blur(10px);

    position: relative;
    z-index: 1;
    text-align: center;
}

.feedback-section h2 {
    font-size: 2.2rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.feedback-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* FORM */
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feedback-form input,
.feedback-form textarea {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1rem;
    border-radius: 14px;
    color: white;
    transition: 0.3s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 15px rgba(255,94,0,0.2);
}

/* BUTTON */
.feedback-form button {
    background: var(--main-color);
    color: black;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.feedback-form button:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(255,94,0,0.3);
}

/* RESUME */
.resume-section {
    text-align: center;
    position: relative;
    z-index: 1;
}

.resume-section h2 {
    font-size: 2.2rem;
    color: var(--main-color);
}

.resume-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.resume-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--main-color), #ff7a33);
    color: black;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(255,94,0,0.25);
}

.resume-btn:hover {
    transform: translateY(-6px) scale(1.03);
}

/* SUCCESS MESSAGE */
.success-message {
    background: rgba(0,255,100,0.15);
    color: #8dffb0;
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem auto;
    max-width: 600px;
    text-align: center;
}