/* Contact Page Styles */
.contact-page {
    min-height: 100vh;
}

.contact-page .page-header {
    position: relative;
    min-height: 350px;
    background: linear-gradient(135deg, #1a0b3d 0%, #2E1065 100%);
    display: flex;
    align-items: center;
    padding: 7rem 2rem 5rem;
    text-align: center;
}

.contact-page .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(46, 16, 101, 0.95) 0%, 
        rgba(26, 11, 61, 0.90) 50%,
        rgba(46, 16, 101, 0.85) 100%);
    z-index: 1;
}

.contact-page .page-header > * {
    position: relative;
    z-index: 2;
}

.page-header {
    max-width: 87.5rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.contact-page .page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffb74d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-page .page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-container {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(37, 33, 99, 0.08);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 0.125rem solid #dee2e6;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #ff8800;
    box-shadow: 0 0 0 0.25rem rgba(255, 136, 0, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 10rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff8800, #ff9900);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.5rem rgba(255, 136, 0, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #ff9900, #ff8800);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1rem rgba(255, 136, 0, 0.4);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #252163, #3a0ca3);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    box-shadow: 0 0.5rem 2rem rgba(37, 33, 99, 0.2);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 1rem 2.5rem rgba(37, 33, 99, 0.3);
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    color: #ff8800;
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-info-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff8800;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.contact-info-link:hover {
    color: #ff9900;
}

.contact-info-link:hover::after {
    transform: translateX(0.25rem);
}

/* Responsive Design */
@media (max-width: 64em) {
    .contact-page {
        padding: 3rem 1.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 48em) {
    .contact-page {
        padding: 2rem 1rem;
    }

    .page-header {
        margin-bottom: 2.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form .form-group {
        margin-bottom: 1.25rem;
    }

    .contact-info-wrapper {
        gap: 1.25rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-info-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}
