/* Contact page styles */
.contact-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, white, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.channel-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    color: var(--secondary-color);
}

.channel-item i {
    font-size: 1.5rem;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow-lg);
}

.contact-form-card h2 {
    color: var(--gray-900);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form .form-control {
    background: white;
    border: 2px solid var(--gray-200);
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(153, 69, 255, 0.25);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--gray-100);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 4rem;
}

/* Office Section */
.office-section {
    padding: 6rem 0;
    background: white;
}

.office-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 30px 50px lightslategray;
    height: 100%;
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-10px);
}

.office-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.office-icon i {
    font-size: 1.5rem;
    color: white;
}

.office-card h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.office-card .address {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.office-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--gray-600);
}

.office-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-form-card {
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .channel-item {
        padding: 0.75rem 1rem;
    }

    .office-card {
        margin-bottom: 2rem;
    }
}