.contactussection {
    margin-bottom: 100px;
}

.ticket-section {
    width: 100%;
    padding: 60px 16px;
    display: flex;
    justify-content: center;

}

.ticket-container {
    width: 100%;
    max-width: 700px;
    padding: 40px 32px;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000625 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.ticket-container h1 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.ticket-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ticket-form input[type="text"],
.ticket-form input[type="email"],
.ticket-form .ticket-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    background: #0d0d0d;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ticket-form input::placeholder,
.ticket-form .ticket-input::placeholder {
    color: #666;
}

.ticket-form input:focus,
.ticket-form .ticket-input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.ticket-form input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.ticket-form .ticket-input {
    resize: none;
    min-height: 120px;
    line-height: 1.6;
}

.ticket-form button[type="submit"] {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.ticket-form button[type="submit"]:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.ticket-form button[type="submit"]:active:not(:disabled) {
    transform: translateY(0);
}

.ticket-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Popup Styles */
.ticket-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.ticket-popup.show {
    display: flex;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.popup-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    font-weight: bold;
}

.popup-content h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.popup-content p {
    color: #999;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.popup-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .ticket-section {
        padding: 40px 16px;
    }

    .ticket-container {
        padding: 28px 20px;
    }

    .ticket-container h1 {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .popup-content {
        padding: 32px 24px;
    }
}

.map-container {
    padding-block: 80px;
    background: #0a0a0a62;
    margin-bottom: 40px;
}

.map {
    width: 90vw;
    border-radius: 40px;
}

@media (min-width: 1000px) {
    .map {
        width: 900px;
    }
}