/* Contact Us Page */
.contact-page {
    background-color: #f5f7fb;
    min-height: 100vh;
    padding: 80px 60px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-intro {
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-intro.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #4169b3;
    font-size: 14px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

.contact-description {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6368;
    margin: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background-color: white;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-card h3 {
    margin: 0;
    font-size: 20px;
    color: #1a1a2e;
}

.contact-card p,
.contact-card a {
    margin: 0;
    color: #5f6368;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
}

.contact-card a {
    color: #4169b3;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #2f4f8f;
}

.contact-card i {
    color: #4169b3;
    font-size: 20px;
}

.contact-form-wrapper {
    background-color: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-form-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-form-wrapper h2 {
    margin: 0;
    font-size: 28px;
    color: #1a1a2e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-field label {
    font-size: 14px;
    font-weight: 600;
    color: #3c4043;
}

.contact-field input,
.contact-field textarea {
    border: 1px solid #d3dae6;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #3c4043;
    background-color: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: vertical;
    min-height: 44px;
}

.contact-field textarea {
    min-height: 140px;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #4169b3;
    box-shadow: 0 0 0 3px rgba(65, 105, 179, 0.12);
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #4169b3 0%, #5b8dd4 100%);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(65, 105, 179, 0.3);
}

.contact-highlight {
    margin-top: 20px;
    display: flex;
    gap: 18px;
    align-items: center;
    color: #5f6368;
    font-size: 15px;
}

.contact-highlight i {
    color: #4169b3;
    font-size: 18px;
}

.contact-highlight .btn-link {
    border: none;
    background: none;
    color: #4169b3;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.contact-highlight .btn-link:hover {
    color: #2f4f8f;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 60px 25px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 50px 20px;
    }

    .contact-title {
        font-size: 32px;
    }
}
