/* ================= CONTACT PAGE – COMPLETE STYLES ================= */
/* This file contains all styling for the contact page, including
   navbar, hero, info card, Leaflet map, logos, and footer.
   No external styles.css required.
*/

/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #f5f7fa;
    overflow-x: hidden;
}

/* ================= NAVBAR (GLASS) ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ================= HERO SECTION ================= */
.contact-header {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-header-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
}

.contact-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ================= MAIN CONTAINER ================= */
.contact-main {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Single Info Card (glassmorphism) */
.contact-info-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Info card typography */
.info-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    border-left: 5px solid #0ea5e9;
    padding-left: 1rem;
}

.info-details {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.info-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.info-item p {
    margin: 0;
    line-height: 1.5;
    color: #334155;
    font-size: 1.1rem;
}

/* Phone link styling */
.contact-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #0284c7;
    text-decoration: underline;
}

/* Email button (styled as link with icon) */
.email-button {
    background: none;
    border: none;
    color: #0ea5e9;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.email-button:hover {
    color: #0284c7;
    text-decoration: underline;
}

.email-icon {
    font-size: 1.2rem;
}

/* ========== LEaFLET MAP CONTAINER ========== */
.contact-leaflet-map {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    margin: 1.5rem 0;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Leaflet attribution subtle style */
.leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    border-radius: 8px 0 0 0;
}

/* Partner Logos */
.contact-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-logos img {
    height: 50px;
    filter: grayscale(70%);
    opacity: 0.6;
    transition: 0.3s;
}

.contact-logos img:hover {
    filter: none;
    opacity: 1;
}

/* Footer */
.contact-footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 800px) {
    .contact-header {
        height: 40vh;
    }

    .contact-leaflet-map {
        height: 220px;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
}