/* ==========================================================================
   Carolina Blue Claws - Elite Post-Grad Baseball Development
   ========================================================================== */

/* Root Variables */
:root {
    --carolina-blue: #4B9CD3;
    --royal-blue: #0033A0;
    --kelly-green: #4CBB17;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --text-light: #6c757d;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--royal-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--carolina-blue), var(--kelly-green));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--kelly-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 187, 23, 0.3);
}

.btn-primary:hover {
    background: #43a614;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 187, 23, 0.4);
}

.btn-hero {
    background: var(--carolina-blue);
    color: var(--white);
    padding: 18px 45px;
    font-size: 1.2rem;
    box-shadow: 0 6px 25px rgba(75, 156, 211, 0.4);
}

.btn-hero:hover {
    background: #3a8bbd;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(75, 156, 211, 0.5);
}

.btn-apply {
    background: var(--kelly-green);
    color: var(--white);
    padding: 18px 50px;
    font-size: 1.2rem;
    box-shadow: 0 6px 25px rgba(76, 187, 23, 0.4);
}

.btn-apply:hover {
    background: #43a614;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 187, 23, 0.5);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px var(--shadow-hover);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--royal-blue);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--royal-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://sspark.genspark.ai/cfimages?u1=ErKKQsm6djwNAFMl%2FsuwzBPup5L%2BrEqnqB1eFd%2FZWyp7IKsoDbQKQjDfup1RvHQ1drtVg1wXff5b%2Fl7uXM%2F3yED3OKuWQUDYsZCCJkeesJAAaeJllx%2BohsZZOKSEP49IDg%3D%3D&u2=tKdXAzKc3zZoDkjf&width=2560');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 120px 20px 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 160, 0.65) 0%, rgba(75, 156, 211, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s ease;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeInUp 1.4s ease;
}

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

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--royal-blue);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--kelly-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--royal-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Program Section
   ========================================================================== */
.program {
    padding: 100px 0;
    background: var(--white);
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.program-card {
    position: relative;
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--carolina-blue), var(--kelly-green));
}

.program-card.featured {
    background: var(--royal-blue);
    color: var(--white);
    transform: scale(1.05);
}

.program-card.featured .card-title,
.program-card.featured .card-description {
    color: var(--white);
}

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

.program-card.featured:hover {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--kelly-green);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-icon {
    font-size: 3rem;
    color: var(--carolina-blue);
    margin-bottom: 20px;
}

.program-card.featured .card-icon {
    color: var(--kelly-green);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--royal-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-description {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

.card-list {
    margin-top: 20px;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.card-list i {
    color: var(--kelly-green);
    font-size: 1.1rem;
}

.program-card.featured .card-list li {
    color: var(--white);
}

.program-card.featured .card-list i {
    color: var(--white);
}

/* ==========================================================================
   Coaches Section
   ========================================================================== */
.coaches {
    padding: 100px 0;
    background: var(--light-gray);
}

.coaches-content {
    max-width: 1000px;
    margin: 0 auto;
}

.coach-spotlight {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px var(--shadow);
    margin-bottom: 50px;
}

.coach-image {
    position: relative;
}

.coach-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--royal-blue), var(--carolina-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--white);
    box-shadow: 0 5px 20px var(--shadow);
}

.coach-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--royal-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.coach-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--kelly-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coach-bio {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.coaching-philosophy {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px var(--shadow);
}

.philosophy-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--royal-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.philosophy-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.point {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.point:hover {
    transform: translateX(10px);
}

.point i {
    font-size: 2rem;
    color: var(--kelly-green);
    flex-shrink: 0;
}

.point h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 5px;
}

.point p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Enhanced Coaches Styles */
.coach-spotlight.founder {
    position: relative;
    overflow: visible;
}

.coach-placeholder.founder-badge {
    position: relative;
    flex-direction: column;
    gap: 15px;
}

.coach-placeholder.founder-badge .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--kelly-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(76, 187, 23, 0.4);
}

.coach-highlight {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--carolina-blue);
    margin-bottom: 20px;
    padding: 12px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--kelly-green);
}

/* Coaches Grid */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin: 60px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.coach-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
}

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

.coach-card-image {
    background: var(--royal-blue);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coach-card-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--carolina-blue), var(--kelly-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.coach-card-content {
    padding: 30px;
}

.coach-card-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--royal-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.coach-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--kelly-green);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coach-card-highlight {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--carolina-blue);
    margin-bottom: 15px;
    padding: 8px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    display: inline-block;
}

.coach-card-bio {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Coaching Philosophy Section */
.coaching-philosophy-section {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px var(--shadow);
    max-width: 1200px;
    margin: 0 auto;
}

.coaching-philosophy-section .philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* ==========================================================================
   Facilities Section
   ========================================================================== */
.facilities {
    padding: 100px 0;
    background: var(--white);
}

.facilities-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.facility-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px var(--shadow);
}

.facility-card:nth-child(even) {
    direction: rtl;
}

.facility-card:nth-child(even) .facility-content {
    direction: ltr;
}

.facility-image {
    height: 100%;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-content {
    padding: 40px;
}

.facility-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--royal-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.facility-title i {
    color: var(--kelly-green);
    font-size: 2rem;
}

.facility-description {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.facility-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.facility-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.facility-features i {
    color: var(--kelly-green);
    font-size: 1.2rem;
}

/* ==========================================================================
   Life in Myrtle Beach Section
   ========================================================================== */
.life {
    position: relative;
    padding: 120px 0;
    background-image: url('https://sspark.genspark.ai/cfimages?u1=ErKKQsm6djwNAFMl%2FsuwzBPup5L%2BrEqnqB1eFd%2FZWyp7IKsoDbQKQjDfup1RvHQ1drtVg1wXff5b%2Fl7uXM%2F3yED3OKuWQUDYsZCCJkeesJAAaeJllx%2BohsZZOKSEP49IDg%3D%3D&u2=tKdXAzKc3zZoDkjf&width=2560');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.life-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 160, 0.88);
}

.life .container {
    position: relative;
    z-index: 1;
}

.life .section-title {
    color: var(--white);
}

.life .title-underline {
    background: linear-gradient(90deg, var(--carolina-blue), var(--kelly-green));
}

.life-content {
    max-width: 900px;
    margin: 0 auto;
}

.life-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.life-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--royal-blue);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.life-description {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.life-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.highlight {
    text-align: center;
    padding: 25px;
    background: var(--royal-blue);
    color: var(--white);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: translateY(-10px);
    background: var(--carolina-blue);
}

.highlight i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--kelly-green);
}

.highlight h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlight p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.life-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--royal-blue);
    text-align: center;
    margin-top: 30px;
    line-height: 1.8;
}

/* ==========================================================================
   Apply Section
   ========================================================================== */
.apply {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--royal-blue), var(--carolina-blue));
    text-align: center;
}

.apply-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.apply-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.apply-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.apply-text-bold {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 30px 0 40px;
}

.apply-contact {
    margin-top: 30px;
    font-size: 1rem;
}

.apply-contact a {
    color: var(--kelly-green);
    font-weight: 700;
    text-decoration: underline;
}

.apply-contact a:hover {
    color: var(--white);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--carolina-blue);
    font-weight: 600;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--kelly-green);
    text-transform: uppercase;
}

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

.footer-links a {
    color: var(--white);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--carolina-blue);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--kelly-green);
    font-size: 1.1rem;
}

.footer-contact a {
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--carolina-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--kelly-green);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

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

    .nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(255, 255, 255, 0.98);
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px var(--shadow);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .header-content .btn-primary {
        display: none;
    }

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

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

    .hero-text {
        font-size: 1.1rem;
    }

    .coach-spotlight {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .coach-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }

    .coaches-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .coaching-philosophy-section {
        padding: 30px;
    }

    .coaching-philosophy-section .philosophy-points {
        grid-template-columns: 1fr;
    }

    .facility-card {
        grid-template-columns: 1fr;
    }

    .facility-card:nth-child(even) {
        direction: ltr;
    }

    .facility-features {
        grid-template-columns: 1fr;
    }

    .life-text {
        padding: 30px;
    }

    .life-heading {
        font-size: 1.6rem;
    }

    .apply-title {
        font-size: 2.2rem;
    }

    .apply-text {
        font-size: 1.05rem;
    }
}

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

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

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

    .btn-hero,
    .btn-apply {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .program-cards {
        grid-template-columns: 1fr;
    }

    .program-card.featured {
        transform: scale(1);
    }

    .program-card.featured:hover {
        transform: scale(1.02);
    }

    .life-highlights {
        grid-template-columns: 1fr;
    }

    .facility-content {
        padding: 25px;
    }

    .facility-title {
        font-size: 1.4rem;
    }

    .coaching-philosophy {
        padding: 25px;
    }

    .coaching-philosophy-section {
        padding: 25px;
    }

    .philosophy-title {
        font-size: 1.5rem;
    }

    .coach-card-content {
        padding: 20px;
    }

    .coach-card-name {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 20px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .logo img {
        height: 50px;
    }

    .hero {
        padding: 100px 15px 40px;
    }

    .hero-title {
        font-size: 1.7rem;
        letter-spacing: 1px;
    }

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

    .about,
    .program,
    .coaches,
    .facilities,
    .life,
    .apply {
        padding: 60px 0;
    }

    .apply-title {
        font-size: 1.8rem;
    }
}