/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-badges .badge {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.hero-image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.contact-methods {
    padding: 5rem 0;
}

.contact-method-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.contact-method-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-method-card h5 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-method-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #7c3aed;
}

.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.contact-form-container {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.office-info {
    padding: 4rem 0;
}

.info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon i {
    font-size: 1.75rem;
    color: white;
}

.info-card h5 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.office-hours {
    text-align: left;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #374151;
}

.time {
    color: #4f46e5;
    font-weight: 600;
}

.map-section {
    position: relative;
}

.map-info {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    height: 500px;
    display: flex;
    align-items: center;
    padding: 3rem;
    color: white;
}

.map-content h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.map-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.location-details {
    margin: 2rem 0;
}

.location-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.location-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.location-item strong {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.google-map iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.faq-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.faq-accordion .accordion-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    color: white;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    color: #64748b;
    line-height: 1.6;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        flex-direction: column;
        text-align: center;
    }

    .hero-title i {
        margin-bottom: 1rem;
        margin-right: 0;
    }

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

    .contact-method-card {
        margin-bottom: 2rem;
    }

    .map-info {
        padding: 2rem 1.5rem;
        height: auto;
        min-height: 400px;
    }

    .map-content h3 {
        font-size: 1.5rem;
    }

    .location-item {
        flex-direction: column;
        text-align: center;
    }

    .location-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

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

    .info-card {
        margin-bottom: 2rem;
    }
}
