/* TTVG Volleyball School - Custom Styles for Tailwind CSS */

/* CSS Variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #4A90E2;
    --accent-color: #FFD700;
    --dark-color: #1A1A1A;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    --gradient-secondary: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes bounce-slow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Text shadow utility */
.text-shadow-lg {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation active state */
.nav-link.active {
    color: #FF6B35 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Navigation */
.navbar {
    background: #1A1A1A;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,107,53,0.1)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--light-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Animation */
.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volleyball-animation {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
}

.volleyball-animation i {
    font-size: 8rem;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Why Choose Section */
.why-choose-section {
    background: var(--light-color);
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Programs Section */
.programs-section {
    background: var(--white);
}

.registration-banner {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    margin-bottom: 2rem;
}

.registration-banner h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.registration-banner p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.program-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.program-card.featured {
    border-color: var(--primary-color);
    position: relative;
}

.program-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.program-header {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.program-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.program-level {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.program-content {
    padding: 1.5rem;
}

.program-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-schedule {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.program-schedule h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.program-schedule p {
    margin-bottom: 0.3rem;
    color: #555;
}

.program-schedule i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.program-features ul {
    list-style: none;
    padding: 0;
}

.program-features li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.additional-program {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.additional-program:hover {
    background: var(--white);
    box-shadow: var(--shadow-medium);
}

.additional-program .program-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.additional-program .program-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.additional-program h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.additional-program p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Coaches Section */
.coaches-section {
    background: var(--light-color);
}

.coach-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.coach-image {
    position: relative;
    background: var(--gradient-secondary);
    padding: 2rem;
    text-align: center;
}

.coach-photo-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 3px solid var(--white);
}

.coach-photo-placeholder i {
    font-size: 3rem;
    color: var(--white);
}

.coach-level {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.coach-content {
    padding: 2rem;
}

.coach-content h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.coach-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.coach-intro {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.achievements {
    margin-bottom: 1.5rem;
}

.achievements h5 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.achievements ul {
    list-style: none;
    padding: 0;
}

.achievements li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.achievements li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.personal-belief {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.personal-belief h5 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.personal-belief p {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* Facilities Section */
.facilities-section {
    background: var(--white);
}

.facility-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.facility-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.facility-icon i {
    font-size: 2rem;
    color: var(--white);
}

.facility-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.facility-card > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.facility-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.facility-features li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.facility-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.facility-highlight {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.highlight-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-content .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.highlight-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.highlight-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.facility-visual {
    width: 250px;
    height: 200px;
    position: relative;
}

.court-diagram {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.court-line {
    position: absolute;
    background: var(--white);
    opacity: 0.7;
}

.court-line:first-child {
    width: 2px;
    height: 60%;
    left: 25%;
    top: 20%;
}

.court-line:nth-child(2) {
    width: 2px;
    height: 60%;
    right: 25%;
    top: 20%;
}

.net-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.court-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

/* Registration Section */
.registration-section {
    background: var(--white);
}

.registration-form-container {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.registration-info h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.registration-info p {
    color: #666;
    line-height: 1.7;
}

.google-form-embed {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.form-placeholder .form-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.form-placeholder .form-icon i {
    font-size: 2rem;
    color: var(--white);
}

.form-placeholder h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.form-placeholder p {
    color: #666;
    margin-bottom: 1.5rem;
}

.form-note {
    color: #888;
    font-style: italic;
}

.requirements-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 1rem auto 0;
}

.requirements-list li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.requirements-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.registration-details {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
}

.detail-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
    text-align: center;
}

.detail-card h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-card h5 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.detail-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--light-color);
}

.contact-info h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-topics {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-topics li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.contact-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
    min-width: 24px;
}

.contact-item h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-item small {
    color: #888;
    font-size: 0.85rem;
}

.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.contact-form .form-label {
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.contact-form .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Mission Section */
.mission-section {
    background: var(--light-color);
}

.mission-content .lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.mission-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Referral Program Section */
.referral-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e55a2b 100%);
    color: var(--white);
}

.referral-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.referral-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.referral-reward {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--white);
}

.referral-reward h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.referral-reward .reward-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

.referral-steps {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.referral-step {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.referral-step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: var(--white);
    color: var(--primary-color);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.volleyball-court-bg {
    width: 300px;
    height: 200px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    position: relative;
    box-shadow: var(--shadow-medium);
}

.volleyball-court-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 100%;
    background: var(--white);
}

.volleyball-court-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid var(--white);
    border-radius: 50%;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation Improvements */
    .navbar-brand {
        font-size: 1.1rem;
    }

    .brand-text {
        font-size: 1rem;
    }

    /* Ensure mobile menu button is properly sized */
    #mobile-menu-button {
        padding: 0.5rem;
        min-width: 2.5rem;
        min-height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile menu styling */
    #mobile-menu {
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 0.5rem;
        margin-top: 1rem;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .volleyball-animation i {
        font-size: 5rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .program-card.featured::before {
        display: none;
    }

    .coach-content {
        padding: 1.5rem;
    }

    .coach-photo-placeholder {
        width: 100px;
        height: 100px;
    }

    .coach-photo-placeholder i {
        font-size: 2.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .registration-form-container,
    .contact-form-container {
        padding: 1.5rem;
    }

    .detail-card {
        margin-bottom: 1rem;
    }

    .facility-highlight {
        padding: 2rem;
    }

    .highlight-stats {
        justify-content: center;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .highlight-image {
        height: 200px;
        margin-top: 2rem;
    }

    .facility-visual {
        width: 200px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .feature-card,
    .program-card,
    .coach-card {
        margin-bottom: 2rem;
    }

    .program-content,
    .coach-content {
        padding: 1rem;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .brand-text {
        display: block;
        margin-top: 0.2rem;
        font-size: 0.9rem;
    }
}

/* Additional mobile navigation fixes */
@media (max-width: 480px) {
    /* More aggressive mobile navigation fixes */
    nav .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    nav a[href="index.html"] {
        font-size: 0.85rem !important;
        line-height: 1.1;
    }

    nav a[href="index.html"] span {
        font-size: 0.75rem !important;
        line-height: 1.1;
        display: block;
        margin-top: 0.1rem;
    }

    nav a[href="index.html"] img {
        width: 1.25rem !important;
        height: 1.25rem !important;
        margin-right: 0.25rem !important;
    }

    #mobile-menu-button {
        padding: 0.25rem;
        min-width: 2rem;
        min-height: 2rem;
    }
}

@media (max-width: 360px) {
    nav a[href="index.html"] {
        font-size: 0.75rem !important;
    }

    nav a[href="index.html"] span {
        font-size: 0.65rem !important;
        line-height: 1;
    }

    nav a[href="index.html"] img {
        width: 1rem !important;
        height: 1rem !important;
        margin-right: 0.2rem !important;
    }

    nav .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
