/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    background: #f5f5f5;
}

/* ==================== Header Styles ==================== */
.header-top {
    background: #044061;
    padding: 12px 0;
    color: #f5f5f5;
}

.header-top-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: #E84C27;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #f5f5f5;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #E84C27;
    transform: translateY(-2px);
}

.enroll-btn {
    background: #E84C27;
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.enroll-btn:hover {
    background: #c23d1e;
    transform: scale(1.05);
}

/* Main Header */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
}

.school-name {
    display: flex;
    flex-direction: column;
}

.school-title {
    font-size: 24px;
    font-weight: 700;
    color: #044061;
    line-height: 1.2;
}

.school-subtitle {
    font-size: 11px;
    color: #E84C27;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: #044061;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E84C27;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #E84C27;
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: #E84C27;
}

nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #044061;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    color: #044061;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
}

.mobile-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
}

.mobile-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4,64,97,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border-bottom: none;
    padding: 0;
}

.mobile-social a:hover {
    background: #E84C27;
    color: white;
}

.mobile-enroll {
    text-align: center;
    margin-top: 10px;
    display: block;
    border-bottom: none !important;
}

/* ==================== Main Content ==================== */
.main-content {
    min-height: 60vh;
}

/* ==================== Footer Styles ==================== */
footer {
    background: #044061;
    color: #f5f5f5;
    padding: 50px 0 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #E84C27;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: #f5f5f5;
    line-height: 1.8;
    font-size: 14px;
}

.footer-section a {
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #E84C27;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-detail i {
    color: #E84C27;
    margin-top: 3px;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #E84C27;
    transform: translateY(-3px);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px 0 0 25px;
    font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
}

.newsletter-form button {
    padding: 12px 24px;
    background: #E84C27;
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #c23d1e;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.map-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        display: none;
    }

    .social-links {
        display: none;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .school-title {
        font-size: 18px;
    }

    .school-subtitle {
        font-size: 9px;
    }

    .logo {
        height: 45px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}