@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Modern Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header__tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main Content */
.main {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
}

/* Contact Info Card */
.contact-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    height: 100%;
}

.section-title {
    font-size: 1.8rem;
    color: #0d47a1;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, #ff5722, #ff9800);
    border-radius: 2px;
}

.contact-list {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item__icon {
    color: #ff5722;
    font-size: 1.25rem;
    margin-right: 1rem;
    padding-top: 0.25rem;
    flex-shrink: 0;
    width: 25px;
    text-align: center;
}

.contact-item__content {
    flex: 1;
}

.contact-item__label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #0d47a1;
}
.num{
    margin-bottom: 0px;
}

/* Map Container */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    min-height: 450px;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.marker-pulse {
    width: 20px;
    height: 20px;
    background-color: #ff5722;
    border-radius: 50%;
    position: relative;
}

.marker-pulse::before,
.marker-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff5722;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.6;
}

.marker-pulse::after {
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Google Maps Card */
.google-maps-info {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 300px;
    }

    .section-title {
        font-size: 1.5rem;
    }
} 