/* --- THEME VARIABLES (NEW COLOR PALETTE) --- */
:root {
    --primary-dark: #111827;
    --secondary-dark: #1f2937;
    --accent: #f97316;        /* Orange Accent */
    --accent-light: #fdba74;
    --text-light: #f97a03;
    --blue: #3a83a8;
    --border: rgba(255,255,255,0.08);
}

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

body {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: var(--text-light);
    line-height: 1.6;
}

/* --- HEADER (COMPLETELY NEW STYLE, SAME STRUCTURE) --- */
header {
    background: linear-gradient(90deg, #111827, #1f2937);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent);
}

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

/* LOGO */
.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--accent);
}

/* NAV LINKS */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: 0.3s;
}

/* Button hover style */
nav ul li a:hover,
nav ul li a.active {
    background: var(--accent);
    color: #111827;
}

/* --- FOOTER --- */
/* --- FOOTER (PROPERLY ALIGNED) --- */
footer {
    background: #020617;
    padding: 60px 20px;
    margin-top: 60px;
}

/* MAIN CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* FIXED 4 COLUMNS */
    gap: 40px;
    align-items: flex-start;
}

/* EACH SECTION */
.footer-section {
    display: flex;
    flex-direction: column;
}

/* HEADINGS */
.footer-section h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 6px;
    width: fit-content;
}

/* TEXT */
.footer-section p,
.footer-section a {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.8;
    text-decoration: none;
}

/* LINKS */
.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a:hover {
    color: var(--accent);
    padding-left: 5px;
    transition: 0.3s;
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #111;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #6b7280;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3 {
        margin-left: auto;
        margin-right: auto;
    }
}
/* --- SECTION --- */
.section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.section h2 {
    text-align: center;
    color: var(--accent-light);
    margin-bottom: 30px;
}

/* --- CARDS (SOFT MODERN LOOK) --- */
.card {
    background: #1f2937;
    border-radius: 14px;
    padding: 25px;
    transition: 0.3s;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-8px);
    background: #374151;
}

/* GRID */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

/* --- FORM --- */
form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #111827;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-light);
}

form input:focus,
form textarea:focus {
    border-color: var(--accent);
    outline: none;
}

form button {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: #111827;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #fb923c;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: 0.3s;
}

.gallery-item:hover {
    border-color: var(--accent);
}

.gallery-item img {
    width: 100%;
    transition: 0.5s;
}

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

/* --- FACILITY --- */
.facility-card {
    text-align: center;
    padding: 25px;
    border-radius: 14px;
    background: #1f2937;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.facility-card:hover {
    transform: translateY(-10px);
    background: #374151;
}

.facility-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent);
}

/* --- MAP --- */
iframe {
    width: 100%;
    border-radius: 12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}