/* Base Styles */
:root {
    --primary-color: #0d253f;
    --secondary-color: #f39c12;
    --accent-color: #27ae60;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-primary {
    background-color: var(--primary-color);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}
.mt-5 {
    margin-top: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.search-container {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 600px;
    margin-top: 15px;
    z-index: 999;
}

.search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 5px 15px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-form:focus-within {
    background: rgba(255, 255, 255, 1);
    border-color: #ddd;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.search-form input {
    border: none;
    background: transparent;
    padding: 10px;
    width: 100%;
    outline: none;
}

.geolocation {
    font-size: 0.8rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    border-left: 1px solid #ccc;
    padding-left: 10px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    font-size: 1.1rem;
}

.main-nav .nav-list {
    display: flex;
    gap: 20px;
}

.main-nav a {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.mobile-search-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    margin-right: 15px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero */
.hero {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s ease;
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.sport-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.sport-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.sport-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.sport-card:hover i {
    transform: scale(1.1);
}

/* Schools Carousel */
.schools-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.school-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}

.school-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.school-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    color: var(--white);
    font-weight: bold;
    font-size: 0.8rem;
}

.badge-new { background: var(--accent-color); }
.badge-promo { background: #e74c3c; }

.school-info {
    padding: 25px;
}

.school-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.school-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.rating {
    color: var(--secondary-color);
    font-weight: bold;
}

.school-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: #666;
    font-size: 0.9rem;
}

.next-class {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.next-class span {
    color: var(--accent-color);
    font-weight: bold;
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
}

.why-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.why-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Photo Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

/* Social Links */
.social-links-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-links-large a {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links-large a:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: #0a192f;
    color: #a0aec0;
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-col a:hover {
    color: var(--secondary-color);
}

.payment-icons {
    font-size: 2rem;
    display: flex;
    gap: 15px;
    margin-top: 20px;
    color: var(--white);
}

.contact-info li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-info i {
    margin-top: 5px;
    color: var(--secondary-color);
}

.footer-map {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.footer-bottom {
    background: #060f1d;
    padding: 20px 0;
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   ADDITIONAL STYLES FOR NEW PAGES
   ========================================================================== */

/* Catalog Layout */
.catalog-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.catalog-sidebar {
    flex: 0 0 300px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.filter-block {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.filter-header h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.filter-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}

.filter-content.hidden {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
}

.catalog-content {
    flex: 1;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.school-logo {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border: 3px solid var(--white);
}

.w-100 {
    width: 100%;
}

.seo-text-block {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.seo-text-block h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.seo-text-block p {
    margin-bottom: 15px;
    color: #555;
}

/* School Detail Page */
.school-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.school-hero-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.school-hero-logo {
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.school-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.rating-large {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.school-details-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.school-main-content {
    flex: 1;
}

.school-sidebar {
    flex: 0 0 350px;
    position: sticky;
    top: 100px;
}

.content-block {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.content-block h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
}

.content-block p {
    margin-bottom: 15px;
    color: #555;
}

/* Table */
.table-responsive {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th, .schedule-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.schedule-table th {
    background: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
}

.schedule-table tr:hover {
    background: #fdfdfd;
}

/* Trainers */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.trainer-card {
    text-align: center;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    transition: var(--transition);
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trainer-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.trainer-role {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

/* Reviews List */
.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Sidebar Info */
.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
}

.info-list i {
    color: var(--secondary-color);
    width: 20px;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.amenities-list li {
    font-size: 0.9rem;
    color: #555;
}

.amenities-list i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Modal */
.modal {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 0;
    max-width: 500px;
    width: 90%;
    margin: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
}

.modal::backdrop {
    background: rgba(0,0,0,0.6);
}

.modal-content {
    padding: 30px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--secondary-color);
}

/* Sports Showcase */
.sports-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sport-detail-card {
    display: flex;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sport-detail-img {
    flex: 0 0 400px;
    background-size: cover;
    background-position: center;
}

.sport-detail-info {
    padding: 40px;
    flex: 1;
}

.sport-detail-info h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Article */
.article-block {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.article-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.article-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}

.article-block h3 {
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.article-block p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.8;
}

/* Parents Page */
.parents-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.articles-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.parent-article {
    display: flex;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.parent-article img {
    width: 300px;
    object-fit: cover;
}

.article-content {
    padding: 30px;
}

.article-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.checklist-col {
    flex: 0 0 350px;
    position: sticky;
    top: 100px;
}

.checklist-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.checklist-box h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.checklist {
    margin-top: 20px;
}

.checklist li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checklist input[type="checkbox"] {
    margin-top: 5px;
    transform: scale(1.2);
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.team-member {
    flex: 0 1 220px;
}

.team-member img {
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.team-member h3 {
    color: var(--primary-color);
}

.team-member p {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .mobile-search-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    margin-right: 15px;
}

.burger-menu {
        display: flex;
    }
    
    .main-nav .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
        gap: 15px;
    }
    
    .main-nav .nav-list.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .search-container {
        display: none;
        margin: 0;
        width: 100%;
        max-width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        transform: none;
        background: var(--white);
        padding: 15px 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        z-index: 998;
    }
    
    .search-container.active {
        display: block;
    }
    
    .mobile-search-toggle {
        display: block;
    }
    
    .main-nav {
        display: flex;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .catalog-layout, .school-details-grid, .parents-grid, .about-grid {
        flex-direction: column;
    }
    
    .catalog-sidebar, .school-sidebar, .checklist-col {
        flex: none;
        width: 100%;
        position: static;
    }
    
    .sport-detail-card, .parent-article {
        flex-direction: column;
    }
    
    .sport-detail-img, .parent-article img {
        width: 100%;
        height: 250px;
        flex: none;
    }
    
    .school-hero-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    .school-hero-logo {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    .school-hero-text h1 {
        font-size: 2rem;
    }
    .article-hero-img {
        height: 200px;
    }
}
/* Autocomplete & City Modal */
.search-form {
    position: relative;
}
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: 10px;
    list-style: none;
    overflow: hidden;
    z-index: 1000;
    display: none;
    border: 1px solid #eee;
    text-align: left;
}
.autocomplete-suggestions.active {
    display: block;
}
.autocomplete-suggestions li {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: var(--transition);
    color: var(--text-color);
}
.autocomplete-suggestions li:last-child {
    border-bottom: none;
}
.autocomplete-suggestions li:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
}
.autocomplete-suggestions strong {
    color: var(--primary-color);
}

.city-modal {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 0;
    max-width: 400px;
    width: 90%;
    margin: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
    z-index: 2000;
}
.city-modal::backdrop {
    background: rgba(0,0,0,0.6);
}
.city-modal-content {
    padding: 30px;
    position: relative;
}
.city-list {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.city-btn {
    background: var(--light-bg);
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    font-size: 1rem;
    color: var(--text-color);
}
.city-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}
.city-search {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 15px;
    outline: none;
    transition: var(--transition);
}
.city-search:focus {
    border-color: var(--secondary-color);
}

/* Enhanced Logo Styles */
.logo a {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    font-style: italic;
    transition: var(--transition);
}

.logo a:hover {
    transform: scale(1.05);
}

.logo a i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    transform: skewX(-10deg);
}

.logo a span {
    color: var(--secondary-color);
}

.footer-logo {
    font-size: 1.2rem !important;
    font-weight: 900;
    color: var(--white) !important;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px !important;
    font-style: italic;
}

.footer-logo i {
    color: var(--secondary-color);
    transform: skewX(-10deg);
}

.footer-logo span {
    color: var(--secondary-color);
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.6);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform-origin: bottom right;
}

.chat-window.hidden {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

.chat-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header h3 i {
    color: var(--secondary-color);
}

.chat-header button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.chat-header button:hover {
    color: var(--secondary-color);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f9f9f9;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.bot-message {
    background: var(--white);
    color: var(--text-color);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.user-message {
    background: var(--secondary-color);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    box-shadow: 0 2px 5px rgba(243, 156, 18, 0.2);
}

.chat-input-area {
    padding: 15px;
    background: var(--white);
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    transition: border-color 0.3s;
}

.chat-input-area input:focus {
    border-color: var(--secondary-color);
}

.chat-input-area button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.chat-input-area button:hover {
    background: var(--secondary-color);
}

@media (max-width: 576px) {
    .chat-window {
        width: 300px;
        right: -10px;
    }
}


@media (max-width: 576px) {
    .search-form {
        flex-wrap: wrap;
        border-radius: 15px;
        padding: 10px;
    }
    .search-form input {
        width: 100%;
        flex: 0 0 100%;
        border-bottom: 1px solid #eee;
        margin-bottom: 10px;
        padding: 5px;
    }
    .geolocation {
        border-left: none;
        padding-left: 0;
        flex: 1;
    }
    .search-btn {
        padding: 5px;
    }
}

@media (max-width: 576px) {
    /* School Page Mobile Fixes */
    .school-hero {
        height: auto;
        min-height: 350px;
        padding: 40px 0;
    }
    
    .school-hero-content {
        gap: 15px;
    }
    
    .school-hero-logo {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .school-hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .rating-large {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 20px 15px;
    }
    
    .school-sidebar .info-card {
        padding: 20px 15px;
    }
    
    .trainers-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .gallery-grid img {
        height: 150px;
    }
    
    .schedule-table th, .schedule-table td {
        padding: 10px 5px;
        font-size: 0.85rem;
    }
    
    .review-item {
        padding: 15px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Very small screens */
@media (max-width: 380px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid img {
        height: 200px;
    }
}
