/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #4dabf7;
    --secondary-green: #51cf66;
    --accent-pink: #ff69b4;
    --dark-bg: #000000;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --border-light: #e9ecef;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #4dabf7, #51cf66);
    --gradient-accent: linear-gradient(135deg, #ff69b4, #ff1493);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--dark-bg);
}

/* Navigation Styling */
.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.nav-brand a:hover {
    text-decoration: none;
    color: inherit;
}

.nav-slogan {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: normal !important;
    margin-left: 10px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: var(--dark-bg);
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Union Jack Triangle - Big Pie Slice */
.union-jack-triangle {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    z-index: 1;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    background: 
        /* Red cross vertical */
        linear-gradient(90deg, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%),
        /* Red cross horizontal */
        linear-gradient(0deg, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%),
        /* White diagonal stripes */
        linear-gradient(45deg, transparent 47%, #ffffff 47%, #ffffff 53%, transparent 53%),
        linear-gradient(-45deg, transparent 47%, #ffffff 47%, #ffffff 53%, transparent 53%),
        /* Red diagonal stripes */
        linear-gradient(45deg, transparent 44%, #C8102E 44%, #C8102E 46%, transparent 46%, transparent 54%, #C8102E 54%, #C8102E 56%, transparent 56%),
        linear-gradient(-45deg, transparent 44%, #C8102E 44%, #C8102E 46%, transparent 46%, transparent 54%, #C8102E 54%, #C8102E 56%, transparent 56%),
        /* Blue background */
        #012169;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 80px;
    align-items: center;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 4.5rem;
    font-weight: normal;
    color: var(--accent-pink);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-subtitle p {
    margin-bottom: 10px;
}

.hero-subtitle strong {
    color: var(--accent-pink);
    font-weight: 800;
}

.cta-button {
    background: var(--gradient-accent);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
    background: linear-gradient(135deg, #ff85c1, #ff69b4);
}

.login-button {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 8px 25px rgba(77, 171, 247, 0.3);
}

.login-button:hover {
    background: linear-gradient(135deg, #339af0, #228be6);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(77, 171, 247, 0.5);
}

/* News Ticker Section */
.news-ticker-section {
    background: #000000;
    color: var(--white);
    padding: 15px 0;
    overflow: hidden;
}

.news-ticker {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.news-content {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 500;
    animation: scroll-left 60s linear infinite;
    padding-left: 100%;
}

@keyframes scroll-left {
    0% {
        transform: translate3d(100%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Course Advertisement Bar */
.course-ad-bar {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* London Time Bar */
.london-time-bar {
    background: url('../images/londonclockbackground.png') center/cover;
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.london-time-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.london-time-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.london-time-text h3 {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.london-time-text p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
}

.course-ad-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    /* animation: shimmer 3s infinite; */
}

/* @keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
} */

.course-ad-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.course-ad-text h3 {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.course-ad-text h3 a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.course-ad-text h3 a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.course-ad-text p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
}

/* Responsive Design for Course Ad Bar */
@media (max-width: 768px) {
    .course-ad-text h3 {
        font-size: 1.4rem;
    }
    
    .course-ad-text p {
        font-size: 1rem;
    }
    
    .company-ad-text h3 {
        font-size: 1.4rem;
    }
    
    .company-ad-text p {
        font-size: 1rem;
    }
}

/* Upcoming Clubs Section */
.upcoming-clubs-section {
    padding: 60px 0;
    background: var(--dark-bg);
}

.section-title {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 5rem;
    font-weight: normal;
    color: var(--accent-pink);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-description p {
    margin-bottom: 15px;
}

.course-link, .here-link, .celta-link, .telegram-link, .partner-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.course-link:hover, .here-link:hover, .celta-link:hover, .telegram-link:hover, .partner-link:hover {
    color: var(--accent-pink);
    text-decoration: underline;
}

.slogan {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--accent-pink);
    text-align: center;
    margin: 30px 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Info Icons Section - Redesigned */
.info-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 0;
    background: none;
    border: none;
    text-align: left;
}

.info-icon-large {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon-large img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.info-icon-large:hover img {
    transform: scale(1.1);
}

/* Telegram icon now uses image like other icons */

.info-content {
    flex-grow: 1;
}

.info-content h3 {
    color: var(--accent-pink);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.info-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 15px;
}

.current-time {
    color: var(--accent-pink);
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(255, 105, 180, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 105, 180, 0.3);
    display: inline-block;
}

/* Countdown Section */
.countdown-section {
    background: #000000 url('../images/englishspeakingclubcountdown.png') center/cover;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Simplified background - removed complex SVG that might cause issues */

.countdown-title {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.time-unit {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    min-width: 160px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 105, 180, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.time-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.time-unit:hover::before {
    left: 100%;
}

.time-unit:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-pink);
}

.time-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 10px;
    color: var(--accent-pink);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.time-label {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333333;
}

.countdown-cta {
    text-align: center;
    margin-top: 40px;
}

.ready-speak-button {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.ready-speak-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .logo-image {
        width: 350px;
        height: 350px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .slogan {
        font-size: 2rem;
    }
    
    .info-icons {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .info-content {
        text-align: center;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 20px 15px;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .countdown-title {
        font-size: 2rem;
    }
    
    .cta-button {
        font-size: 1.4rem;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 280px;
        height: 280px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .news-content {
        font-size: 1rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-blue);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/*
 Speaking Clubs Listing Section */
.speaking-clubs-listing {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0;
}

.clubs-intro {
    text-align: center;
    margin-bottom: 60px;
}

.clubs-intro-title {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 6.5rem;
    font-weight: normal;
    color: var(--accent-pink);
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.clubs-intro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.clubs-intro-text strong {
    color: var(--accent-pink);
    font-weight: 700;
}

.highlight {
    color: var(--accent-pink);
    font-weight: 600;
}

.clubs-rules {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 1400px;
    margin: 0 auto;
    color: var(--white);
}

.london-time-link {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
}

.london-time-link:hover {
    color: var(--accent-pink);
    text-decoration: underline;
}

/* Speaking Clubs Grid */
.speaking-clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.club-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.club-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-pink);
}

/* Different background colors for club cards */
.club-card-1 { background: linear-gradient(135deg, #4dabf7, #339af0); }
.club-card-2 { background: linear-gradient(135deg, #51cf66, #40c057); }
.club-card-3 { background: linear-gradient(135deg, #ff69b4, #e64980); }
.club-card-4 { background: linear-gradient(135deg, #ffa500, #fd7e14); }
.club-card-5 { background: linear-gradient(135deg, #9c88ff, #7c3aed); }
.club-card-6 { background: linear-gradient(135deg, #ff6b6b, #fa5252); }
.club-card-7 { background: linear-gradient(135deg, #20c997, #12b886); }
.club-card-8 { background: linear-gradient(135deg, #fd7e14, #f76707); }
.club-card-9 { background: linear-gradient(135deg, #6c5ce7, #5f3dc4); }
.club-card-10 { background: linear-gradient(135deg, #00b894, #00a085); }
.club-card-11 { background: linear-gradient(135deg, #e17055, #d63031); }
.club-card-12 { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }

.club-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.club-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.club-header {
    margin-bottom: 15px;
}

.club-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px 0;
    line-height: 1.3;
    min-height: 2.6rem; /* Ensure consistent title height */
}

.club-level {
    display: inline-block;
    background: var(--accent-pink);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.club-datetime {
    background: rgba(77, 171, 247, 0.2);
    border: 1px solid var(--primary-blue);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 15px;
    text-align: center;
}

.club-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.club-time {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.9;
}

.club-description {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1; /* This will push the footer and button to the bottom */
}

.club-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.club-spots {
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.8;
}

.spots-available {
    color: var(--secondary-green);
    font-weight: 600;
}

.spots-full {
    color: #ff6b6b;
    font-weight: 600;
}

.club-button {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto;
    font-size: 0.9rem;
}

/* Green for Open */
.btn-open {
    background: #28a745 !important;
    color: white !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-open:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
    background: #218838 !important;
    color: white !important;
}

/* Yellow for Coming Soon */
.btn-coming-soon {
    background: #ffc107 !important;
    color: #000 !important;
    cursor: not-allowed;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-coming-soon:hover {
    transform: none;
    box-shadow: none;
}

/* Red for Full/Cancelled */
.btn-full,
.btn-cancelled,
.btn-over {
    background: #dc3545 !important;
    color: white !important;
    cursor: not-allowed;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-full:hover,
.btn-cancelled:hover,
.btn-over:hover {
    transform: none;
    box-shadow: none;
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
    font-weight: 500;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Loading State */
.loading-clubs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

/* Empty State */
.no-clubs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-clubs h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Responsive Design for Clubs Section */
@media (max-width: 768px) {
    .clubs-intro-title {
        font-size: 2.5rem;
    }
    
    .clubs-intro-text,
    .clubs-rules {
        font-size: 1rem;
    }
    
    .speaking-clubs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .club-content {
        padding: 20px;
    }
    
    .club-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .club-title {
        margin-right: 0;
    }
    
    .club-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .club-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .clubs-intro-title {
        font-size: 2rem;
    }
    
    .club-image {
        height: 150px;
    }
    
    .club-content {
        padding: 15px;
    }
}/*
 Company Advertising Section */
.company-advertising {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.company-advertising::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    /* animation: shimmer 3s infinite; */
}

.company-ad-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.company-ad-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.company-ad-title a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.company-ad-title a:hover {
    color: #f0f0f0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.company-ad-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.company-ad-subtitle a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.company-ad-subtitle a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

.company-ad-text h3 {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.company-ad-text h3 a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.company-ad-text h3 a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.company-ad-text p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
}

/* Online English Speaking Course Section */
.speaking-course-section {
    background: var(--dark-bg);
    padding: 60px 0;
}

.course-title {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 5rem;
    font-weight: normal;
    color: var(--accent-pink);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.course-description {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.course-description p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 20px;
}

.course-description strong {
    color: var(--accent-pink);
    font-weight: 700;
}

.desktop-note {
    font-size: 1rem;
    color: #ccc;
    font-style: italic;
}

/* Course Table */
.course-table-container {
    margin-top: 40px;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.course-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    background: transparent;
}

.course-table thead {
    background: var(--accent-pink);
    color: var(--white);
}

.course-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.course-table tbody tr {
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.course-table tbody tr:hover {
    background: rgba(255, 105, 180, 0.1);
}

.course-table tbody tr:last-child {
    border-bottom: none;
}

.course-table td {
    padding: 18px 15px;
    color: var(--white);
    vertical-align: middle;
}

.course-group {
    font-weight: 600;
    color: var(--accent-pink);
}

.course-level {
    background: var(--secondary-green);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.course-days-times {
    font-size: 0.95rem;
    line-height: 1.4;
}

.course-signup-btn {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.course-signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
    color: var(--white);
    text-decoration: none;
}

.course-signup-btn.full {
    background: #666;
    color: #999;
    cursor: not-allowed;
}

.course-signup-btn.full:hover {
    transform: none;
    box-shadow: none;
}

/* Course Button Styles */
.course-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
    min-width: 80px;
    text-align: center;
}

.course-btn.btn-open {
    background: var(--gradient-accent);
    color: var(--white);
}

.course-btn.btn-open:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.4);
    color: var(--white);
    text-decoration: none;
}

.course-btn.btn-full,
.course-btn.btn-closed {
    background: #666;
    color: #999;
    cursor: not-allowed;
}

.course-btn.btn-full:hover,
.course-btn.btn-closed:hover {
    transform: none;
    box-shadow: none;
    text-decoration: none;
}

.course-btn.btn-info {
    background: var(--primary-blue);
    color: var(--white);
}

.course-btn.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(77, 171, 247, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Loading state for courses */
.loading-courses {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.loading-courses .loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid var(--border-light);
    border-top: 3px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

/* Mobile Course Cards */
.course-cards-mobile {
    display: none;
}

.course-card-mobile {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.course-mobile-content {
    padding: 20px;
}

.course-mobile-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.course-mobile-details {
    margin-bottom: 20px;
}

.course-mobile-details p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.course-mobile-details strong {
    color: var(--white);
    font-weight: 600;
}

/* Responsive Design for Course Section */
@media (max-width: 768px) {
    .company-ad-title {
        font-size: 2.5rem;
    }
    
    .company-ad-subtitle {
        font-size: 1.2rem;
    }
    
    .course-title {
        font-size: 2.5rem;
    }
    
    .course-description p {
        font-size: 1.1rem;
    }
    
    /* Hide table on mobile, show cards instead */
    .table-responsive {
        display: none;
    }
    
    .course-cards-mobile {
        display: block;
    }
}

/* Mobile Course Cards Styles */
.course-card-mobile {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card-mobile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.course-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.course-card-group {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.course-card-body {
    margin-bottom: 20px;
}

.course-card-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.course-card-label {
    font-weight: 600;
    color: var(--text-dark);
}

.course-card-value {
    color: var(--text-light);
}

.course-card-footer {
    text-align: center;
}

/* No courses state */
.no-courses {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-courses h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

@media (max-width: 480px) {
    .company-ad-title {
        font-size: 2rem;
    }
    
    .company-ad-subtitle {
        font-size: 1.1rem;
    }
    
    .course-title {
        font-size: 2rem;
    }
    
    .course-description p {
        font-size: 1rem;
    }
    
    .course-card-mobile {
        padding: 15px;
    }
    
    .course-card-info {
        flex-direction: column;
        gap: 5px;
    }
}/
* One-on-One Advertising Section */
.one-on-one-advertising {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.one-on-one-advertising::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    /* animation: shimmer 3s infinite; */
}

.one-on-one-ad-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.one-on-one-ad-text h3 {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.one-on-one-ad-text h3 a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.one-on-one-ad-text h3 a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.one-on-one-ad-text p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
}

.one-on-one-ad-text p a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.one-on-one-ad-text p a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.one-on-one-subtitle a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.one-on-one-subtitle a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--dark-bg);
    padding: 60px 0;
}

.why-intro {
    text-align: center;
    margin-bottom: 60px;
}

.why-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--accent-pink);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-pink);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.why-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.why-point {
    background: var(--accent-pink);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.why-point:nth-child(2) {
    background: var(--accent-pink);
}

.why-point:nth-child(3) {
    background: var(--accent-pink);
}

.why-point:nth-child(4) {
    background: var(--accent-pink);
}

.why-point:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-pink);
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.why-point h3 {
    font-family: 'Bangers', cursive;
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.why-point p {
    color: var(--white);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works {
    background: var(--dark-bg);
    padding: 60px 0;
}

.how-title {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    color: var(--accent-pink);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.how-description {
    max-width: 1400px;
    margin: 0 auto 60px;
    text-align: center;
}

.how-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 20px;
}

.how-description strong {
    color: var(--accent-pink);
    font-weight: 700;
}

.final-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.final-cta strong {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    background: var(--accent-pink);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step:nth-child(2) {
    background: var(--accent-pink);
}

.step:nth-child(3) {
    background: var(--accent-pink);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-pink);
}

.step-number {
    background: #000000;
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    font-weight: 400;
    margin: 0 auto 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.step h3 {
    font-family: 'Bangers', cursive;
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.step p {
    color: var(--white);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .one-on-one-title {
        font-size: 2.5rem;
    }
    
    .one-on-one-subtitle {
        font-size: 1.2rem;
    }
    
    .why-quote {
        font-size: 1.2rem;
        padding: 20px;
    }
    
    .why-quote::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .why-points {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-point {
        padding: 30px 20px;
    }
    
    .why-icon {
        font-size: 3rem;
    }
    
    .how-title {
        font-size: 2.5rem;
    }
    
    .how-description p {
        font-size: 1rem;
    }
    
    .final-cta {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .final-cta strong {
        font-size: 1.5rem;
    }
    
    .how-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .one-on-one-title {
        font-size: 2rem;
    }
    
    .one-on-one-subtitle {
        font-size: 1.1rem;
    }
    
    .why-quote {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .why-point {
        padding: 25px 15px;
    }
    
    .why-point h3 {
        font-size: 1.3rem;
    }
    
    .why-point p {
        font-size: 1rem;
    }
    
    .how-title {
        font-size: 2rem;
    }
    
    .how-description p {
        font-size: 0.95rem;
    }
    
    .step {
        padding: 25px 15px;
    }
    
    .step h3 {
        font-size: 1.3rem;
    }
    
    .step p {
        font-size: 0.95rem;
    }
}/*
 FAQ Section */
.faq-section {
    background: var(--dark-bg);
    padding: 60px 0;
}

.faq-title {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    color: var(--accent-pink);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-pink);
}

.faq-question {
    color: var(--accent-pink);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-answer {
    color: var(--white);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.faq-answer a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    color: var(--accent-pink);
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
    padding: 60px 0;
}

.contact-title {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    color: var(--accent-pink);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--accent-pink);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.1rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.location-info {
    margin-top: 40px;
}

.location-info h4 {
    color: var(--accent-pink);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.location-info p {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;
}

.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-pink {
    background: var(--accent-pink);
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(77, 171, 247, 0.4);
}

.contact-form .btn-pink:hover {
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--accent-pink);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent-pink);
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section p a {
    color: var(--accent-pink);
    text-decoration: none;
}

.footer-section p a:hover {
    color: var(--accent-pink);
    text-decoration: underline;
}

.language-links {
    line-height: 1.8;
    font-size: 0.9rem;
}

.language-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.language-links a:hover {
    color: var(--accent-pink);
}

.footer-cities {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-cities h4 {
    color: var(--accent-pink);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cities-grid p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: justify;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-pink);
    text-decoration: underline;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design for FAQ, Contact, and Footer */
@media (max-width: 768px) {
    .faq-title,
    .contact-title {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-item {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cities-grid p {
        font-size: 0.85rem;
    }
}.con
tact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ccc;
}/* City 
Links Styling */
.city-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.city-link:hover {
    color: var(--accent-pink);
    text-decoration: underline;
}

/* Union Jack Triangle Responsive */
@media (max-width: 768px) {
    .union-jack-triangle {
        border-width: 0 100px 100px 0;
    }
    
    .union-jack-triangle::before {
        right: -100px;
        border-width: 0 100px 100px 0;
    }
    
    .union-jack-triangle::after {
        right: -100px;
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .union-jack-triangle {
        border-width: 0 80px 80px 0;
    }
    
    .union-jack-triangle::before {
        right: -80px;
        border-width: 0 80px 80px 0;
    }
    
    .union-jack-triangle::after {
        right: -80px;
        width: 80px;
        height: 80px;
    }
}/*
 Google Ad Section */
.google-ad-section {
    background: var(--dark-bg);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-container {
    max-width: 728px;
    margin: 0 auto;
    text-align: center;
}

.adsbygoogle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ad responsive behavior */
@media (max-width: 768px) {
    .ad-container {
        max-width: 320px;
    }
}/
* Modal Styles */
.modal {
    display: none !important;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--dark-bg);
    margin: 5% auto;
    padding: 40px;
    border: 2px solid var(--accent-pink);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close {
    color: var(--accent-pink);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 25px;
}

.close:hover {
    color: var(--white);
}

.modal-title {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    color: var(--accent-pink);
    text-align: center;
    margin-bottom: 15px;
    margin-top: 0;
}

.modal-subtitle {
    color: var(--white);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Form Styles */
.registration-form, .login-form {
    color: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--accent-pink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.email-notice {
    display: block;
    margin-top: 8px;
    color: #ffd43b;
    font-size: 0.9rem;
    font-style: italic;
}

.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.register-btn, .login-btn {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.register-btn:hover, .login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.5);
}

.clear-btn, .forgot-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-btn:hover, .forgot-btn:hover {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    transform: translateY(-3px);
}

.signup-link {
    text-align: center;
    margin-top: 20px;
}

.signup-link a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .form-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .register-btn, .login-btn, .clear-btn, .forgot-btn {
        width: 100%;
        max-width: 250px;
    }
}/* N
avigation Menu Styles */
.main-nav {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid var(--accent-pink);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-pink);
}

.nav-slogan {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    color: var(--accent-pink);
    font-weight: normal;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: normal;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 25px;
}

.login-nav-link {
    background: var(--gradient-accent);
    color: var(--white) !important;
    margin-left: 15px;
}

.login-nav-link:hover {
    background: linear-gradient(135deg, #ff85c1, #ff69b4);
    transform: translateY(-2px);
}

.nav-link:hover {
    color: var(--accent-pink);
    background: rgba(255, 105, 180, 0.1);
    text-decoration: none;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-link {
    color: var(--white);
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--accent-pink);
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    border-top: 1px solid rgba(255, 105, 180, 0.3);
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--accent-pink);
    padding-left: 10px;
}

.mobile-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social .social-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

/* Adjust body padding for fixed nav */
body {
    padding-top: 70px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-menu,
    .nav-social {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-slogan {
        font-size: 1rem;
    }
    
    .nav-logo {
        width: 40px;
        height: 40px;
    }
    
    .nav-container {
        height: 60px;
    }
    
    body {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .nav-slogan {
        font-size: 0.8rem;
        margin-left: 5px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}
/
* Mobile Fixes for Better UX */
@media (max-width: 768px) {
    /* London Time Bar - Better readability on mobile */
    .london-time-bar {
        background: #000000 !important;
        padding: 25px 0;
    }
    
    .london-time-bar::before {
        background: rgba(0, 0, 0, 0.8) !important;
    }
    
    .london-time-text h3 {
        font-size: 1.8rem;
        color: var(--white) !important;
    }
    
    .london-time-text p {
        font-size: 1rem;
        color: var(--white) !important;
    }
    
    /* Info Icons - Left aligned on mobile */
    .info-icons {
        text-align: left;
    }
    
    .info-item {
        text-align: left;
        align-items: flex-start;
    }
    
    .info-icon-large {
        margin-right: 20px;
        margin-bottom: 0;
    }
    
    .info-content {
        text-align: left;
    }
    
    .info-content h3 {
        text-align: left;
    }
    
    .info-content p {
        text-align: left;
    }
    
    /* Course Cards Mobile - Better visibility */
    .course-cards-mobile .course-card {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white) !important;
    }
    
    .course-cards-mobile .course-card h3 {
        color: var(--accent-pink) !important;
    }
    
    .course-cards-mobile .course-card p {
        color: var(--white) !important;
    }
    
    .course-cards-mobile .course-card .course-info {
        color: var(--white) !important;
    }
    
    .course-cards-mobile .course-card .course-signup {
        background: var(--gradient-accent) !important;
        color: var(--white) !important;
    }
    
    /* Navigation slogan visibility fix */
    .nav-slogan {
        display: inline-block !important;
        font-size: 0.9rem;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .nav-slogan {
        font-size: 0.8rem !important;
        margin-left: 5px !important;
    }
}

/* Floating forms positioning fix */
.floating-register-form,
.floating-welcome-form {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
}

@media (max-width: 768px) {
    .floating-register-form,
    .floating-welcome-form {
        position: fixed !important;
        bottom: 10px !important;
        right: 10px !important;
        left: 10px !important;
        width: auto !important;
    }
}
/
* ===== CLUB LISTING PAGE STYLES ===== */
.clubs-page-header {
    background: var(--dark-bg);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clubs-page-title {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 4rem;
    font-weight: normal;
    color: var(--accent-pink);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.clubs-page-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.6;
}

.back-to-home {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.back-to-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(77, 171, 247, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* ===== CLUB SIGNUP PAGE STYLES ===== */
.signup-page-header {
    background: var(--dark-bg);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.signup-page-title {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    color: var(--accent-pink);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.signup-form-section {
    background: var(--dark-bg);
    padding: 60px 0;
    min-height: 70vh;
}

.signup-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.club-info-card {
    background: var(--gradient-accent);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--white);
}

.club-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.club-info-details {
    font-size: 1.1rem;
    line-height: 1.6;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-input,
.form-textarea,
.form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 2px rgba(255, 105, 180, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.form-checkbox {
    margin-top: 4px;
}

.form-checkbox-label {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox-label a {
    color: var(--accent-pink);
    text-decoration: none;
}

.form-checkbox-label a:hover {
    text-decoration: underline;
}

.submit-button {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.5);
}

.submit-button:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ===== NAVIGATION STYLES FOR NEW PAGES ===== */
.page-navigation {
    background: var(--dark-bg);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'PhosphateRR Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: normal;
}

.nav-logo:hover {
    color: var(--accent-pink);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-pink);
    text-decoration: none;
}

.nav-link.active {
    color: var(--accent-pink);
    font-weight: 600;
}

/* ===== RESPONSIVE STYLES FOR NEW PAGES ===== */
@media (max-width: 768px) {
    .clubs-page-title,
    .signup-page-title {
        font-size: 2.5rem;
    }
    
    .clubs-page-subtitle {
        font-size: 1.1rem;
    }
    
    .signup-form-container {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .club-info-card {
        padding: 20px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .clubs-page-title,
    .signup-page-title {
        font-size: 2rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
}