/* main.css - Master stylesheet */
@import url('header.css');
@import url('components.css');
@import url('popup.css');

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: #f7faff;
    color: #1a2b3e;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ----- HERO BANNER (fixed image paths) ----- */
.video-container1 {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #0d2f48;
}

.video-container1 img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 400px;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

@media (max-width: 768px) { 
    .video-container1 img { max-height: 250px; } 
}
@media (max-width: 480px) { 
    .video-container1 img { max-height: 180px; } 
}

/* ----- FOOTER ----- */
.footer {
    background: #0f2b3f;
    padding: 2.5rem 1.5rem 1.8rem;
    text-align: center;
}

.footer p { color: #d0e1f0; }
.footer a { color: #f8cf5e; }

.social-container {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center;
    gap: 1.5rem; 
    margin-top: 1.8rem;
}

.social-container a img {
    height: 38px; 
    width: 38px; 
    border-radius: 50%;
    background: white; 
    padding: 6px; 
    transition: 0.2s;
}

.social-container a:hover img { transform: scale(1.15); }

/* ----- FLOATING BUTTONS ----- */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    z-index: 9999;
}

.call-btn {
    pointer-events: auto;
    background: #0f6cbd;
    border: none;
    border-radius: 60px;
    padding: 0.9rem 1.2rem;
    box-shadow: 0 8px 22px #0f6cbde0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.call-btn img {
    height: 36px;
    width: 36px;
    filter: brightness(0) invert(1);
}

iframe[src*="tawk.to"] {
    position: fixed !important;
    bottom: 30px !important;
    right: 25px !important;
    left: auto !important;
    top: auto !important;
    z-index: 9999 !important;
    box-shadow: 0 8px 22px rgba(0,0,0,0.2) !important;
    border-radius: 60px !important;
}

@media (max-width: 600px) {
    .floating-buttons { padding: 0 15px; }
    .call-btn { padding: 0.8rem 1rem; }
    .call-btn img { height: 32px; width: 32px; }
}

/* ----- UTILITY CLASSES ----- */
.location-highlight {
    background: #eef6ff; 
    padding: 0.2rem 0.5rem;
    border-radius: 30px; 
    color: #004b7c; 
    font-weight: 600;
    display: inline-block;
    margin: 0.1rem 0;
}

.station-badge {
    display: inline-block;
    background: #ffeed9;
    color: #aa6f00;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0.2rem 0.3rem;
    border: 1px solid #ffc107;
}