/* --- GLOBAL STYLES --- */
:root {
    --primary-blue: #021b3d;
    --secondary-gold: #ffcc00;
    --bg-light: #f4f7f6;
    --text-dark: #333;
    --white: #ffffff;
    --border: #dee2e6;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

body { background-color: var(--bg-light); color: var(--text-dark); line-height: 3.6; }

/* --- HEADER & NAVIGATION (Same on all pages) --- */
header { 
    background: var(--primary-blue); 
    color: var(--white); 
    padding: 1rem 0; 
    position: sticky; 
    top: 0; 
    text-decoration: dashed;
    z-index: 1000; 
    box-shadow: 0 2px 5px rgba(236, 234, 234, 0.1); 
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1200px; 
    margin: auto; 
    padding: 0 20px;
}

.logo-text { font-size: 1.5rem; font-weight: bold; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { 
    color: var(--white); 
    text-decoration: none; 
    font-weight: 500; 
    transition: 0.3s; 
}
nav ul li a:hover, nav ul li a.active { color: var(--secondary-gold); }

/* --- FOOTER (Same on all pages) --- */
footer { background: #222; color: #ccc; padding: 40px 20px; margin-top: 50px; }

.footer-container { 
    max-width: 1200px; 
    margin: auto; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
}

.footer-section h3 { 
    color: var(--white); 
    margin-bottom: 20px; 
    border-bottom: 2px solid var(--secondary-gold); 
    display: inline-block;
    padding-bottom: 5px;
}

.footer-section p { margin-bottom: 10px; font-size: 0.9rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 8px; }
.footer-section a { color: #bbb; text-decoration: none; transition: 0.3s; }
.footer-section a:hover { color: var(--white); padding-left: 5px; }

.footer-bottom { 
    text-align: center; 
    padding-top: 20px; 
    margin-top: 30px; 
    border-top: 1px solid #333; 
    font-size: 0.8rem; 
}

/* --- DISCLOSURE PAGE SPECIFIC STYLES --- */
.disclosure-container { 
    max-width: 1100px; 
    margin: 40px auto; 
    background: var(--white); 
    padding: 30px; 
    border-radius: 8px; 
    box-shadow: 0 0 20px rgba(0,0,0,0.05); 
}

.disclosure-container h2 { 
    text-align: center; 
    color: var(--primary-blue); 
    text-transform: uppercase; 
    margin-bottom: 30px; 
}

.disclosure-container h3 { 
    background: var(--primary-blue); 
    color: var(--white); 
    padding: 10px 15px; 
    margin: 30px 0 10px 0; 
    font-size: 1.1rem; 
}

.disclosure-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.disclosure-table th, .disclosure-table td { 
    border: 1px solid var(--border); 
    padding: 12px; 
    text-align: left; 
    font-size: 0.95rem;
}

.disclosure-table th { background-color: #f8f9fa; font-weight: 600; color: #555; }

/* Form inputs inside tables */
.disclosure-table input[type="text"], 
.disclosure-table input[type="file"] {
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.sample-link { color: #d9534f; text-decoration: none; font-weight: bold; font-size: 0.8rem; }
.note-box { background: #fff3cd; padding: 15px; border-left: 5px solid #ffeeba; margin: 20px 0; font-size: 0.85rem; }
.map-container {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container h3 {
    margin-bottom: 15px;
    color: #1a2a6c;
}

/* Ensure map fits on small mobile screens */
@media (max-width: 600px) {
    iframe {
        height: 250px;
    }
}
/* --- GALLERY SPECIFIC STYLES --- */
.gallery-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.gallery-container h2 {
    text-align: center;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--secondary-gold);
    display: inline-block;
    padding-bottom: 10px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 30px; /* Spacing */
}

.gallery-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-caption {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
    background: #fdfdfd;
}

/* Hover Effects */
.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}


/* --- FACILITY PAGE ENHANCEMENTS --- */

.facility-hero {
    background: linear-gradient(rgba(2, 27, 61, 0.8), rgba(2, 27, 61, 0.8)), url('https://images.unsplash.com/photo-1523050335392-9bc567595838?auto=format&fit=crop&w=1200');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.facility-hero h1 {
    font-size: 3rem;
    color: var(--secondary-gold) !important;
    margin-bottom: 10px;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.facility-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-bottom: 4px solid var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-bottom-color: var(--secondary-gold);
}

.facility-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.facility-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.facility-card p {
    font-size: 0.95rem;}