.contact-page {
    min-height: calc(100vh - 160px);
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #fff7ed 0%, #e0ecff 100%);
}

.contact-page .container {
    max-width: 680px;
}

.contact-page h1 {
    font-size: 2.3rem;
    color: #1f2937;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.contact-sub {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dbe1ea;
    border-radius: 10px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #1f2937;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #c2410c, #9a3412);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 22px rgba(194, 65, 12, 0.22);
    margin-top: 8px;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(194, 65, 12, 0.28);
}

.ticket-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ticket-popup-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 34px 30px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.ticket-popup-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.ticket-popup-box h2 {
    margin: 0 0 10px;
    color: #1f2937;
    font-size: 1.5rem;
}

.ticket-popup-box p {
    margin: 0 0 24px;
    color: #6b7280;
    line-height: 1.6;
}

.ticket-popup-box button {
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #c2410c, #9a3412);
    color: white;
    padding: 12px 22px;
    font-weight: 700;
    cursor: pointer;
}

#toast {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #1f2937;
    color: white;
    padding: 14px 18px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
    z-index: 9999;
    font-weight: 600;
}

@media (max-width: 700px) {
    .contact-page {
        padding: 40px 0 60px;
    }

    .contact-page h1 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 24px 20px;
        border-radius: 22px;
    }
}