* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== TOP HEADER ===== */
.top-header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.top-header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.top-header .logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.top-header .logo-link img {
    max-height: 75px;
    width: auto;
    display: block;
}

.top-header .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.top-header .logo-title {
    font-family: 'Grilled Cheese BTN Bold', 'Bangers', 'Fredoka One', cursive;
    font-size: 2rem;
    color: #E53935;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.1);
}

.top-header .logo-tagline {
    font-family: 'Monotype Corsiva', 'Georgia', serif;
    font-size: 1.1rem;
    color: #5F8F8F;
    font-style: italic;
}

@media (max-width: 768px) {
    .top-header .logo-link img {
        max-height: 55px;
    }
    .top-header .logo-title {
        font-size: 1.3rem;
    }
    .top-header .logo-tagline {
        font-size: 0.85rem;
    }
}

/* ===== NAVIGATION ===== */
.main-nav {
    background: #1a237e;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.main-nav .nav-menu > li {
    position: relative;
}

.main-nav .nav-menu > li > a {
    display: block;
    padding: 14px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.main-nav .nav-menu > li > a:hover,
.main-nav .nav-menu > li > a.active {
    background: #0d1452;
}

.main-nav .nav-menu > li > a .arrow {
    font-size: 10px;
    margin-left: 5px;
}

.main-nav .nav-menu li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a237e;
    min-width: 220px;
    z-index: 100;
    list-style: none;
    padding: 0;
}

.main-nav .nav-menu li:hover .dropdown {
    display: block;
}

.main-nav .nav-menu li .dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}

.main-nav .nav-menu li .dropdown li a:hover {
    background: #0d1452;
}

.main-nav .nav-btn {
    background: #e53935;
    color: #fff;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.main-nav .nav-btn:hover {
    background: #c62828;
}

/* Hamburger */
.hamburger {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 12px 0;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.hero-slider .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.hero-slider .slide-content h2 {
    font-family: 'PT Serif', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-slider .slide-content .subtitle {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero-slider .slide-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-slider .slide-content .btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-slider .slide-content .btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.hero-slider .slide-content .btn-primary {
    background: #e53935;
    color: #fff;
}

.hero-slider .slide-content .btn-primary:hover {
    background: #c62828;
}

.hero-slider .slide-content .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-slider .slide-content .btn-outline:hover {
    background: #fff;
    color: #333;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'PT Serif', serif;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 1rem;
}

.section-bg {
    background: #f5f5f5;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 40px;
    color: #e53935;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.2rem;
    color: #1a237e;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-wrap .about-img img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.about-wrap .about-text h2 {
    font-family: 'PT Serif', serif;
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 8px;
}

.about-wrap .about-text h3 {
    font-size: 1.3rem;
    color: #e53935;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-wrap .about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-wrap .about-text .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e53935;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.about-wrap .about-text .btn:hover {
    background: #c62828;
}

.about-wrap .about-text .btn i {
    margin-left: 8px;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-grid .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

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

.gallery-grid .gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-grid .gallery-item:hover .overlay {
    opacity: 1;
}

/* ===== FACILITIES ===== */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.facility-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.facility-card .fac-icon {
    font-size: 30px;
    color: #e53935;
    margin: 15px 0 10px;
}

.facility-card h4 {
    font-size: 1rem;
    color: #1a237e;
    padding: 0 15px;
}

/* ===== STATS ===== */
.stats-section {
    background: #1a237e;
    color: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    font-family: 'PT Serif', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-section .btn {
    display: inline-block;
    padding: 14px 36px;
    background: #e53935;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}

.cta-section .btn:hover {
    background: #c62828;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-family: 'PT Serif', serif;
    font-size: 1.5rem;
    color: #1a237e;
    margin-bottom: 20px;
}

.contact-info .info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info .info-item .info-icon {
    width: 45px;
    height: 45px;
    background: #1a237e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info .info-item h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 3px;
}

.contact-info .info-item p {
    color: #666;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form .btn {
    padding: 12px 35px;
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form .btn:hover {
    background: #c62828;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-family: 'PT Serif', serif;
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.page-banner p {
    font-size: 1.1rem;
    opacity: 0.85;
}

/* ===== FOOTER ===== */
.footer-logos {
    background: #f9f9f9;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-logos .logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logos .logo-strip img {
    max-height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-logos .logo-strip img:hover {
    opacity: 1;
}

.footer-main {
    background: #0d1452;
    color: #ccc;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

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

.footer-col ul li a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col .social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-col .social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s;
}

.footer-col .social a:hover {
    background: #e53935;
}

.footer-bottom {
    background: #0a1045;
    color: #888;
    text-align: center;
    padding: 15px 0;
    font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.08);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .top-header .container {
        gap: 20px;
    }
    .top-header .logo-item img {
        max-height: 50px;
    }
    .features-grid,
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-header .container {
        flex-wrap: wrap;
    }
    .top-header .logo-item img {
        max-height: 40px;
    }
    .hamburger {
        display: block;
    }
    .main-nav .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #1a237e;
    }
    .main-nav .nav-menu.open {
        display: flex;
    }
    .main-nav .container {
        flex-wrap: wrap;
    }
    .main-nav .nav-menu > li > a {
        padding: 12px 15px;
    }
    .main-nav .nav-menu li .dropdown {
        position: static;
        background: #0d1452;
    }
    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }
    .hero-slider .slide-content h2 {
        font-size: 1.8rem;
    }
    .hero-slider .slide-content .subtitle {
        font-size: 1.1rem;
    }
    .hero-slider .slide-content p {
        font-size: 0.95rem;
    }
    .features-grid,
    .about-wrap,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title h2 {
        font-size: 1.6rem;
    }
    .page-banner h1 {
        font-size: 1.8rem;
    }
}
