﻿


@font-face {
    font-family: 'Vazirmatn-regular';
    src: url('../Fonts/VazirMatn/Vazirmatn-Regular.woff2') format('woff2'), url('../Fonts/VazirMatn/Vazirmatn-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* font-family: 'Vazirmatn-regular', sans-serif; */

@font-face {
    font-family: 'Vazirmatn-bold';
    src: url('../Fonts/VazirMatn/Vazirmatn-Bold.woff2') format('woff2'), url('../Fonts/VazirMatn/Vazirmatn-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
/* font-family: 'Vazirmatn-bold', sans-serif; */


input, textarea {
    direction: rtl;
    text-align: right;
    font-family: 'Vazirmatn-regular', sans-serif;
    unicode-bidi:embed;
}


:root {
    --headline-white: #ffffff;
    --soft-white: #f2f2f2;
    --subheadline-white: #e0e0e0;
    --muted-white: #d9d9d9;
    --softPurpleText: #ce9cfc;
    --siteDarkBackground: #0A0A0A;
    --purple-dark: #4a1a7a;
    --purple-light: #9b30ff;
}

.contact-page {
    position: relative;
    background-color: var(--siteDarkBackground);
    color: var(--soft-white);
    font-family: 'Vazirmatn-regular', sans-serif;
    padding: 40px 0;
    padding-top: 120px;
    min-height: 100vh;
    z-index: 2;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    color: var(--headline-white);
    font-family: 'Vazirmatn-bold', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

    .section-title.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, var(--purple-light), var(--purple-dark));
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(155, 48, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease 0.2s;
}

    .contact-info.visible {
        opacity: 1;
        transform: translateX(0);
    }

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    direction: rtl;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

    .info-icon svg {
        width: 24px;
        height: 24px;
        fill: var(--headline-white);
    }

.info-content h3 {
    color: var(--headline-white);
    font-family: 'Vazirmatn-bold', sans-serif;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-content p, .info-content a {
    color: var(--muted-white);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
}

    .info-content a:hover {
        color: var(--softPurpleText);
    }

.ticket-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(155, 48, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease 0.2s;
}

    .ticket-form.visible {
        opacity: 1;
        transform: translateX(0);
    }

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        color: var(--subheadline-white);
        margin-bottom: 8px;
        font-family: 'Vazirmatn-bold', sans-serif;
        direction:rtl;
    }

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--headline-white);
    font-family: 'Vazirmatn-regular', sans-serif;
    transition: all 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: var(--purple-light);
        box-shadow: 0 0 0 2px rgba(155, 48, 255, 0.3);
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(90deg, var(--purple-light), var(--purple-dark));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Vazirmatn-bold', sans-serif;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(155, 48, 255, 0.3);
    }

    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.success-message {
    display: none;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: var(--headline-white);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.ticket-number {
    color: var(--softPurpleText);
    font-family: 'Vazirmatn-bold', sans-serif;
    font-size: 1.2rem;
    margin-top: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-container {
    height: 300px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

    .map-container.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
