/* --- 5. PAGE SPECIFIC: COVERAGE HEADER --- */
.map-header { padding: 80px 10% 40px; text-align: center; }

.map-header h1 { 
    margin-bottom: 20px; 
    font-size: 2.0rem; 
    position: relative; 
    padding-bottom: 10px; 
    text-transform: uppercase;
    color: #111;
}
.map-header h1::after { 
    content: ''; 
    width: 60px; height: 4px; 
    background: #c5a059; 
    position: absolute; bottom: 0; left: 50%; 
    transform: translateX(-50%); 
}

/* --- 6. PAGE SPECIFIC: MAP & AREA CONTENT --- */
.coverage-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 80px;
    padding: 60px 5% 80px;
    max-width: 1700px;
    margin: 0 auto;
    align-items: flex-start;
    width: 100%;
}

.map-box {
    background: black;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box; 
    margin: 0 auto;
}

.map-placeholder {
    width: 100%;
    height: 480px;
    background: #eee;
    display: flex;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

.area-text h2 {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.area-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

.area-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.area-list li {
    font-size: 1rem;
    color: #333;
    padding-left: 20px;
    position: relative;
}

.area-list li::before {
    content: '•';
    color: #c5a059;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.travel-note {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-left: 5px solid #c5a059;
    font-style: italic;
    font-size: 0.95rem;
}

/* --- 6. FOOTER STYLES --- */
.main-footer {
    background: #111;
    color: #eee;
    padding: 60px 10% 20px;
    margin-top: 60px;
    border-top: 2px solid #c5a059; /* Matching the dropdown gold line */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #3160d6; /* Matching your Blue logo span */
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-section h4 {
    color: #c5a059;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-section ul a:hover {
    color: #c5a059;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 0.8rem;
    color: #666;
}

/* Footer Responsive Fix */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

