* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* TOP BAR */
.topbar {
    background: #fff;
    color: #fff;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-left span {
    font-weight: 500;
}

.topbar-left a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.topbar-left a:hover {
    color: #00d4d8;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-right .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-right .contact-item i {
    color: #00d4d8;
}

/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 41px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-nav a:hover {
    color: #00d4d8;
}

.navbar-search {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.navbar-search:hover {
    background: #00d4d8;
    border-color: #00d4d8;
}

/* HERO */
.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 520px;
}


.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 40, 60, 0.6), rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 120px;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
}

.hero-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 72px;
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-readmore {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.btn-readmore:hover {
    background: #fff;
    color: #333;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-arrow-left {
    left: 0;
}

.hero-arrow-right {
    right: 0;
}

/* WAVE DIVIDER */
.wave-divider {
    position: relative;
    margin-top: -80px;
    height: 100px;
    z-index: 1;
    pointer-events: none;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* DEFAULT DESKTOP */
.navbar-nav {
    display: flex;
    gap: 25px;
}

.menu-toggle {
    display: none;
}


/* MOBILE */
@media (max-width: 900px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 25px;
    }

    .hero-content {
        left: 40px;
    }

    .navbar {
        padding: 14px 20px;
    }

    .courses-section {
        padding: 20px 20px 50px;
    }

    .navbar-nav {
        position: absolute;
        top: 80px;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        width: 220px;
        padding: 20px;
        display: none;
    }

    .navbar-nav.active {
        display: flex;
    }

    .navbar {
        padding: 15px 20px;
    }

    .navbar-brand img {
        height: 40px !important;
    }

    .navbar-brand span {
        font-size: 13px !important;
        letter-spacing: 1px;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        left: 20px;
        right: auto;
        top: auto;
        bottom: 40px;
        transform: none;
        text-align: left;
        max-width: 80%;
    }

    .hero-title {
        font-size: 32px !important;
    }

    .hero-subtitle {
        font-size: 14px !important;
    }

    .btn-readmore {
        padding: 12px 30px !important;
        font-size: 13px !important;
    }

    .hero-arrow {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .map-wrapper {
        height: 300px;
    }

    .hero,
    .hero-slider {
        height: 60vh;
    }

    .wave-divider {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30px;
        line-height: 0;
        z-index: 5;
    }

    .wave-divider svg {
        width: 100%;
        height: 100%;
        display: block;
    }
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
}

.section-heading h2 span {
    font-family: 'Pacifico', cursive;
    color: #00d4d8;
    font-weight: 400;
}

/* ── FOOTER ── */
.site-footer {
    background: linear-gradient(160deg, #b8e8f8 0%, #7dd3ea 50%, #38bdf8 100%);
    color: #cdd6e0;
    padding: 70px 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

/* ── COL 1: Brand ── */
.footer-brand .logo-wrap {
    margin-bottom: 28px;
}

.footer-brand .logo-wrap img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

/* Placeholder logo if no real image */
.logo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: conic-gradient(#0047ab 0deg 120deg, #003080 120deg 240deg, #0047ab 240deg 360deg);
    border: 4px solid #1a5dc8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.logo-placeholder::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.footer-contact-list li .icon {
    width: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #fff;
    font-size: 15px;
}

/* ── COL 2: Quick Links ── */
.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li::before {
    content: '›';
    color: #fff;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #00bcd4;
}

/* ── COL 3: Opening Hours ── */
.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.hours-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hours-day {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    min-width: 130px;
}

.hours-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
}

.hours-time .clock-icon {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #0ea5e9;
    flex-shrink: 0;
}

.hours-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 8px 0 24px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-bar {
    background: linear-gradient(160deg, #b8e8f8 0%, #7dd3ea 50%, #38bdf8 100%);
    padding-bottom: 0;
}

.footer-bottom p {
    font-size: 13px;
    color: #fff;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.map-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.map-wrapper {
    margin-top: 30px;
    width: 100%;
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}

