/* Contact Page Specific Styles */
/* Note: Don't override global styles like .top-bar or .main-header */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #4a9b8e 0%, #6bb6ff 100%);
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
    margin-top: 0;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    padding: 4rem 0;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Contact Information */
.contact-info-section {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info-section h2 {
    color: #4a9b8e;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-section h2::before {
    content: "📞";
    font-size: 1.5rem;
}

/* Contact items in the main content (not top-bar) */
.contact-info-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-section .contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a9b8e 0%, #6bb6ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(74, 155, 142, 0.3);
}

.contact-details h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    text-decoration: none;
    color: #4a9b8e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #6bb6ff;
    text-decoration: underline;
}

/* Office Hours */
.office-hours {
    background: linear-gradient(135deg, #4a9b8e 0%, #6bb6ff 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.office-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.office-hours h3::before {
    content: "⏰";
    font-size: 1.3rem;
}

.office-hours p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* Map Section */
.map-section {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.map-header {
    background: linear-gradient(135deg, #4a9b8e 0%, #6bb6ff 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.map-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.map-header h2::before {
    content: "📍";
    font-size: 1.5rem;
}

.map-header p {
    opacity: 0.9;
    margin: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f8f9fa;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
    pointer-events: auto;
}

.map-iframe:hover {
    filter: grayscale(0%);
}

/* Enable full map interaction */
.map-container:hover .map-iframe {
    pointer-events: auto;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    color: #666;
    text-align: center;
    padding: 2rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4a9b8e;
}

.address-details {
    padding: 2rem;
    background: #f8f9fa;
}

.address-item {
    margin-bottom: 1rem;
}

.address-item h4 {
    color: #4a9b8e;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.address-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Social Links */
.social-section {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 2rem;
}

.social-section h2 {
    color: #4a9b8e;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-section h2::before {
    content: "🌐";
    font-size: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #4267B2 0%, #365899 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 103, 178, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(66, 103, 178, 0.4);
    text-decoration: none;
    color: white;
}

.social-link i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-main {
        gap: 3rem;
    }
    
    .contact-info-section,
    .social-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .contact-content {
        padding: 2rem 0;
    }

    .contact-info-section,
    .social-section {
        padding: 1.5rem;
    }

    .map-container {
        height: 300px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 3rem 0 1.5rem;
    }

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

    .contact-info-section h2,
    .map-header h2,
    .social-section h2 {
        font-size: 1.5rem;
    }

    .office-hours {
        padding: 1.5rem;
    }

    .map-header {
        padding: 1.5rem;
    }

    .address-details {
        padding: 1.5rem;
    }
}