/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fff;
    font-size: 16px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #0A2B5C;
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-left i, .top-right i {
    margin-right: 8px;
}
.top-right a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.top-right a:hover {
    color: #F58020;
}

/* Header */
.main-header {
    background: #fff;
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(10, 43, 92, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo span {
    font-family: 'Poppins', sans-serif;
    font-size: 33px;
    font-weight: 800;
    color: #0A2B5C;
    letter-spacing: 1px;
}
.navbar {
    display: flex;
    gap: 40px;
    align-items: center;
}
.navbar a {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #0A2B5C;
    text-decoration: none;
    transition: 0.3s;
}
.navbar a:hover {
    color: #F58020;
}

/* Hero Section */
.hero {
    background: linear-gradient(90deg, #0A2B5C 0%, #0A2B5C 55%, rgba(10, 43, 92, 0.8) 60%, rgba(10, 43, 92, 0.3) 70%, transparent 80%), url('images/hero-students.jpg');
    background-size: cover;
    background-position: 80% center;
    padding: 40px 0 100px;
    position: relative;
    overflow: visible;
}
.dots-left {
    position: absolute;
    bottom: 130px;
    left: 40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#F58020 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
    z-index: 1;
}
.dots-right {
    position: absolute;
    top: 60px;
    right: 40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#F58020 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: center;
    min-height: 320px;
}
.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-line {
    width: 80px;
    height: 4px;
    background: #F58020;
    margin-bottom: 16px;
}
.hero-content p {
    font-size: 18px;
    color: #E9EDF2;
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.6;
}

/* Search Box New */
.hero-search-box-new {
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 20px 60px rgba(10, 43, 92, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0 0;
    position: relative;
    z-index: 10;
    width: fit-content;
}
.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.search-item i {
    font-size: 28px;
    color: #0A2B5C;
}
.search-item select {
    border: none;
    padding: 8px 25px 8px 12px;
    font-size: 17px;
    color: #0A2B5C;
    font-weight: 600;
    outline: none;
    background: transparent;
    min-width: 160px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230A2B5C' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 5px center;
}
.search-divider {
    width: 1px;
    height: 40px;
    background: #E9EDF2;
}
.btn-hero-search-blue {
    background: #0A2B5C;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}
.btn-hero-search-blue i {
    margin-right: 8px;
}
.btn-hero-search-blue:hover {
    background: #F58020;
}

/* Top Schools Section */
.top-schools-section {
    padding: 70px 0 80px;
    background: #fff;
}
.section-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
}
.top-schools-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #0A2B5C;
    margin: 0;
}
.schools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
}
.school-card-new {
    background: #fff;
    border: 1px solid #E9EDF2;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.school-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(10, 43, 92, 0.12);
}
.school-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}
.school-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.school-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.school-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0A2B5C;
    margin: 0 0 6px 0;
    min-height: 50px;
}
.school-city {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #0A2B5C;
    margin: 0 0 12px 0;
    font-weight: 600;
}
.school-meta, .school-feature {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #0A2B5C;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.school-meta i, .school-feature i {
    color: #0A2B5C;
    font-size: 14px;
}
.school-feature {
    min-height: 40px;
}
.school-rating-row {
    display: block;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #F0F4F9;
}
.stars {
    color: #F58020;
    font-size: 16px;
    margin-bottom: 14px;
}
.btn-view-details {
    width: 100%;
    background: #0A2B5C;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.btn-view-details:hover {
    background: #F58020;
}

/* Together We Grow Section */
.together-section {
    background: #0A2B5C;
    padding: 80px 0;
}
.together-header {
    text-align: center;
    margin-bottom: 50px;
}
.together-tag {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #F58020;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.together-tag::before, .together-tag::after {
    content: '—';
    margin: 0 10px;
}
.together-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.together-desc {
    font-size: 18px;
    color: #E9EDF2;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}
.together-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.together-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s;
}
.together-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.together-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.together-icon i {
    font-size: 36px;
}
.icon-blue {
    background: rgba(10, 43, 92, 0.1);
}
.icon-blue i {
    color: #0A2B5C;
}
.icon-green {
    background: rgba(34, 197, 94, 0.1);
}
.icon-green i {
    color: #22c55e;
}
.icon-purple {
    background: rgba(168, 85, 247, 0.1);
}
.icon-purple i {
    color: #a855f7;
}
.icon-orange {
    background: rgba(245, 128, 32, 0.1);
}
.icon-orange i {
    color: #F58020;
}
.together-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 8px 0;
}
.together-card:nth-child(1) .together-number {
    color: #0A2B5C;
}
.together-card:nth-child(2) .together-number {
    color: #22c55e;
}
.together-card:nth-child(3) .together-number {
    color: #a855f7;
}
.together-card:nth-child(4) .together-number {
    color: #F58020;
}
.together-label {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0A2B5C;
    margin: 0 0 12px 0;
}
.together-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: #F0F4F9;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.why-choose-section .section-title, .sports-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #0A2B5C;
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 19px;
    color: #666;
    max-width: 100%;
    margin: 0 auto;
    white-space: nowrap;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(10, 43, 92, 0.1);
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(10, 43, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.feature-icon i {
    font-size: 34px;
    color: #0A2B5C;
}
.feature-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0A2B5C;
    margin-bottom: 12px;
}
.feature-box p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

/* Sports Section */
.sports-section {
    padding: 80px 0;
    background: #fff;
}
.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.sport-card {
    background: #fff;
    border: 1px solid #E9EDF2;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.sport-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(10, 43, 92, 0.12);
}
.sport-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}
.sport-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sport-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.sport-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0A2B5C;
    margin: 0 0 10px 0;
    min-height: 50px;
}
.sport-location, .sport-detail {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #0A2B5C;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.sport-location i, .sport-detail i {
    color: #F58020;
    font-size: 14px;
    width: 16px;
}
.sport-card .btn-view-details {
    margin-top: auto;
}

/* Footer */
.main-footer {
    background: #0A2B5C;
    color: #fff;
    padding: 25px 0;
    text-align: center;
}
.main-footer p {
    margin: 0;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}
.main-footer a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.main-footer a:hover {
    color: #F58020;
}

/* Popup Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 43, 92, 0.7);
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal-content {
    background-color: #fff;
    margin: 3% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.3s;
    max-height: 85vh;
    overflow-y: auto;
}
@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: bold;
    color: #0A2B5C;
    cursor: pointer;
    transition: 0.3s;
}
.close-modal:hover {
    color: #F58020;
}
#modal-body h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: #0A2B5C;
    margin-bottom: 10px;
}
#modal-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #0A2B5C;
    margin: 20px 0 15px 0;
}
#modal-body p {
    font-size: 16px;
    color: #333;
    margin: 12px 0;
    line-height: 1.6;
}
#modal-body p i {
    color: #F58020;
    width: 20px;
}
.btn-submit-enquiry {
    width: 100%;
    background: #0A2B5C;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}
.btn-submit-enquiry:hover {
    background: #F58020;
}

/* Responsive */
@media (max-width: 1200px) {
    .schools-grid, .sports-grid, .together-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .hero {
        background: #0A2B5C;
        padding: 50px 0 80px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        min-height: 200px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-search-box-new {
        flex-direction: column;
        margin: 20px 0 0;
        width: 100%;
    }
    .search-divider {
        display: none;
    }
    .search-item {
        width: 100%;
    }
    .search-item select {
        width: 100%;
    }
    .schools-grid, .sports-grid, .together-grid { grid-template-columns: repeat(2, 1fr); }
    .navbar { gap: 20px; }
    .section-subtitle {
        white-space: normal;
    }
    .together-title {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .top-bar { font-size: 14px; }
    .hero { padding: 35px 0 60px; }
    .hero-content h1 { font-size: 30px; }
    .features-grid { grid-template-columns: 1fr; }
    .section-top { flex-direction: column; align-items: flex-start; gap: 15px; }
    .modal-content { margin: 10% auto; width: 95%; padding: 20px; }
    .together-title { font-size: 28px; }
}
@media (max-width: 576px) {
    .schools-grid, .sports-grid, .together-grid { grid-template-columns: 1fr; }
    .navbar { display: none; }
    .logo span { font-size: 27px; }
    .together-number { font-size: 40px; }
}