/* Contact Page Specific Styles */

.contact-page {
    background: var(--off-white);
}

.contact-page-content {
    margin-top: 80px;
}

/* Hero Section */
.contact-hero {
    padding: 4rem 0;
    background: url('../images/banner/contact-banner.webp') no-repeat scroll center / cover;
}

.contact-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-hero-inner:hover .contact-hero-subtitle {
    color: var(--primary-blue) !important;
}

.contact-hero-inner h1 {
    font-size: 2.75rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary-blue);
    line-height: 1.8;
    transition: all 0.3s ease;
}

/* Contact Information Section */
.contact-info-section {
    padding: 3rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-card {
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.2);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info-content {
    text-align: left;
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-info-content p {
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.contact-info-content p:last-child {
    margin-bottom: 0;
}

.contact-info-content strong {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-top: 1rem;
}

.contact-info-content strong:first-child {
    margin-top: 0;
}

.contact-info-content a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-hours {
    color: var(--text-light);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 3rem 0;
    position: relative;
}

.contact-form-section .section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    z-index: 0;
}

.contact-form-section .container {
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    /* max-width: 900px; */
    margin: 0 auto;
}

.contact-form {
    padding: 3rem;
    border-radius: 20px;
}

.contact-form.glass-card {
    background: transparent;
}

.contact-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%231e40af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

.contact-form select option {
    background: var(--white);
    color: var(--text-dark);
    padding: 0.75rem;
}

/* Locations Section */
.locations-section {
    padding: 3rem 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-card {
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover {
    transform: translateY(-8px);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.location-header h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0;
}

.location-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(30, 64, 175, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-content {
    color: var(--text-gray);
    line-height: 1.8;
}

.location-content p {
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.location-content p:last-child {
    margin-bottom: 0;
}

.location-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    position: relative;
}

.map-section .section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    z-index: 0;
}

.map-section .container {
    position: relative;
    z-index: 1;
}

.map-wrapper {
    margin-top: 2rem;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-hero-inner h1 {
        font-size: 2.25rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-info-grid,
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 2rem 1rem;
    }

    .contact-hero-inner {
        padding: 2rem 1.5rem;
    }

    .contact-hero-inner h1 {
        font-size: 1.75rem;
    }

    .contact-hero-subtitle {
        font-size: 0.95rem;
    }

    .contact-info-section,
    .contact-form-section,
    .locations-section,
    .map-section {
        padding: 2rem 0;
    }

    .map-container {
        height: 350px;
    }

    .section-header {
        padding: 2rem 1.5rem;
    }

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

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

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

    .contact-info-card,
    .location-card {
        padding: 2rem;
    }

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

    .contact-info-icon {
        width: 60px;
        height: 60px;
    }

    .contact-info-card h3,
    .location-header h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-inner h1 {
        font-size: 1.5rem;
    }

    .contact-hero-subtitle {
        font-size: 0.9rem;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
    }

    .contact-info-icon svg,
    .contact-info-icon svg {
        width: 36px;
        height: 36px;
    }

    .map-container {
        height: 300px;
    }
}