/* --- MAGAZINE EDITORIAL LAYOUT --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

:root {
    --primary-color: #1a2a4c;
    --secondary-color: #f4f4f4;
    --accent-color: #00d4ff;
    --text-color: #333;
    --white-color: #ffffff;
    --background-color: #000;
}

/* Global link styling for all markdown content */
a {
    color: #4ecdc4; /* Light teal that matches theme */
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #00d4ff; /* Accent color on hover */
}

/* Specific styling for content links with underline */
.coach-text a,
.about-story-content a,
.story-text a,
.timeline-description a,
.philosophy-card a {
    border-bottom: 1px solid rgba(78, 205, 196, 0.3);
}

.coach-text a:hover,
.about-story-content a:hover,
.story-text a:hover,
.timeline-description a:hover,
.philosophy-card a:hover {
    border-bottom-color: #00d4ff;
}

/* --- SMOOTH SCROLLING --- */
html {
    scroll-behavior: smooth;
}

/* Offset for fixed header when scrolling to anchors */
section[id] {
    scroll-margin-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background-color);
    color: white; 
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- FLOATING HEADER --- */
.floating-header {
    position: fixed;
    top: 30px; 
    left: 30px; 
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    filter: brightness(0) invert(1) drop-shadow(0 0 12px #4ecdc4) drop-shadow(0 0 24px rgba(78, 205, 196, 0.4)) drop-shadow(0 0 6px rgba(78, 205, 196, 0.8));
}

.business-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-left: 15px;
    letter-spacing: 0.5px;
}

.nav-minimal {
    display: flex;
    gap: 30px;
}

.nav-minimal a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-minimal a:hover { 
    opacity: 1; 
    color: var(--accent-color);
}

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    background: linear-gradient(45deg, rgba(0,0,0,0.2), rgba(0,100,200,0.3)), 
                url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff, var(--accent-color), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.hero-text .subtitle {
    font-size: 1.8rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: linear-gradient(135deg, var(--accent-color), #0099cc);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,212,255,0.3);
}

/* --- DEDICATED PROBLEMS SECTION --- */
/* --- PROBLEMS + BLOG PREVIEW SECTION --- */
.problems-section-dedicated {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 50px 0; /* Reduced from 60px */
    position: relative;
}

.problems-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.problems-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

/* Problems Left Side */
.problems-left {
    position: relative;
}

.problems-stack {
        display: flex;
        flex-direction: column;
    gap: 15px;
}

.problem-item {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.problem-item:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: translateX(8px);
}

/* Blog Preview Right Side */
.solution-right {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 150, 255, 0.1));
    border-radius: 20px;
    padding: 35px 30px;
    border: 2px solid rgba(0, 212, 255, 0.4);
    backdrop-filter: blur(20px);
}

.solution-right::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid rgba(0, 212, 255, 0.4);
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.solution-right h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-right p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.read-more-btn {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    text-decoration: none;
    display: inline-block;
}

.read-more-btn:hover {
    background: linear-gradient(45deg, #0099cc, #00d4ff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Connecting Line */
.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #00d4ff);
    z-index: 10;
}

.connection-line::before {
    content: '→';
    position: absolute;
    right: -12px;
    top: -8px;
    font-size: 1.2rem;
    color: #00d4ff;
}

/* --- COACH SECTION --- */
.coach-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    margin-top: 0;
    z-index: 5;
    padding: 60px 0;
    overflow: visible;
}

.coach-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%; /* Ensure full width usage */
}

.coach-visual {
    position: relative;
}

.coach-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-color), #0099cc);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.coach-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Baseball positioned outside the box */
.coach-visual::after {
    content: '⚾';
    position: absolute;
    top: -8px; 
    right: -8px;
    width: 70px; 
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

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

.coach-text h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 0.9;
    text-transform: uppercase;
    color: white;
}

.coach-text p,
.coach-text div {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.85);
    max-width: 100%; /* Remove max-width constraint */
    word-wrap: break-word; /* Ensure long text wraps */
}

.cta-large {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 25px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255,107,53,0.3);
}

/* --- PROGRAMS SECTION --- */
.programs-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(45deg, #000428, #004e92);
    margin-top: 0;
    z-index: 10;
    padding: 100px 0;
}

.programs-header {
    text-align: center;
    margin-bottom: 80px;
}

.programs-header h2 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
}

.programs-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.program-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-item:hover {
    transform: translateY(0) scale(1.05);
    background: rgba(255,255,255,0.1);
}

.program-item h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
}

.program-item ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.program-item ul li {
    padding: 8px 0;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.program-item button,
.program-item .program-button {
    background: linear-gradient(135deg, var(--accent-color), #0099cc);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.program-item button:hover,
.program-item .program-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,212,255,0.3);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #2d1b69, #11998e);
    padding: 100px 0;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.floating-testimonial {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    padding: 30px 30px 0;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.floating-testimonial:nth-child(even) {
    transform: rotate(1deg);
    margin-top: 40px;
}

.floating-testimonial:hover {
    transform: rotate(0deg) scale(1.02);
}

.floating-testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

.floating-testimonial footer {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    margin: 0 -30px;
    border-radius: 0 0 25px 25px;
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
    background: linear-gradient(135deg, #000, #1a1a2e);
    padding: 100px 0;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-button {
    background: linear-gradient(135deg, #ff6b35, var(--accent-color));
    color: white;
    border: none;
    padding: 25px 60px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.final-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255,107,53,0.4);
}

/* --- LARGE DECORATIVE NUMBERS --- */
.large-number {
    font-size: 15rem;
    font-weight: 900;
    position: absolute;
    opacity: 0.05;
    line-height: 1;
    z-index: 1;
    color: white;
    pointer-events: none;
}

.hero-number {
    top: 10%; 
    left: -5%;
}

.coach-number {
    top: 20%; 
    right: -5%;
}

.programs-number {
    top: 30%; 
    left: -10%;
}

.testimonials-number {
    top: 20%; 
    right: -8%;
}

/* --- FOOTER --- */
footer {
    background: linear-gradient(135deg, #0a0a0f, #1a1a2e);
    padding: 50px 0;
    border-top: 2px solid var(--accent-color);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
}

.brand-section {
    margin-bottom: 30px;
}

.brand-section h3 {
    font-size: 1.2rem; /* Reduced from 1.4rem */
    font-weight: 900;
    color: white;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.brand-section p {
    font-size: 0.9rem; /* Reduced from 1rem */
    color: var(--accent-color);
    margin: 0;
    font-weight: 500;
}

.footer-accent {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #0099cc);
    margin: 15px auto;
}

.footer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.contact-item {
    color: #aaa;
    font-size: 0.85rem; /* Reduced from 0.95rem */
    transition: color 0.3s ease;
}

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

.email-link {
    display: inline-flex;
    align-items: center;
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 16px;
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 20px;
    background: rgba(0,212,255,0.1);
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--accent-color);
    background: rgba(0,212,255,0.2);
    border-color: rgba(0,212,255,0.6);
    transform: translateY(-2px);
}

.social-group {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px; /* Reduced from 40px */
    height: 36px; /* Reduced from 40px */
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #aaa;
}

.social-icon:hover {
    background: var(--accent-color);
    color: #000;
    transform: scale(1.1);
    border-color: var(--accent-color);
}

/* Coming Soon social links styling */
.social-icon.coming-soon {
    background: rgba(255, 193, 7, 0.1) !important;
    border-color: rgba(255, 193, 7, 0.3) !important;
    color: #ffc107 !important;
}

.social-icon.coming-soon:hover {
    background: rgba(255, 193, 7, 0.2) !important;
    border-color: rgba(255, 193, 7, 0.6) !important;
    cursor: pointer;
}

/* Coming Soon Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.popup-content h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.popup-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.popup-button {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.social-icon svg {
    transition: all 0.3s ease;
    width: 14px; /* Reduced from 16px */
    height: 14px; /* Reduced from 16px */
}

.copyright {
    font-size: 0.8rem; /* Reduced from 0.85rem */
    color: #666;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* --- HAMBURGER MENU STYLES --- */
.hamburger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    gap: 3px;
    width: 24px;
    height: 20px;
    justify-content: center;
    align-items: center;
    position: relative; /* For better positioning */
}

.hamburger-btn span {
    display: block;
    width: 18px; /* Smaller to prevent chopoff */
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 1px;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px); /* Smaller translation */
}

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

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px); /* Adjusted translation */
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-nav.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: #00d4ff;
}

.mobile-only {
    display: none;
}

.desktop-nav {
    display: flex;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    /* Show hamburger, hide desktop nav */
    .mobile-only {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
    
    /* Minimal hero padding - much less whitespace */
    .hero-section {
        min-height: 65vh;
        height: auto;
        padding-top: 70px;
        background-position: 37% center;
        background-size: cover;
    }
    
    /* Much more compact header */
    .floating-header {
        top: 8px; /* Moved closer to top */
        left: 8px;
        right: 8px;
        padding: 6px 12px; /* More compact padding */
        border-radius: 18px;
    }
    
    .header-content {
        justify-content: space-between;
        align-items: center;
        gap: 8px; /* Reduced gap */
    }
    
    .logo {
        height: 32px; /* Bigger logo for tablet */
        flex-shrink: 0;
        filter: brightness(0) invert(1) drop-shadow(0 0 8px #4ecdc4) drop-shadow(0 0 16px rgba(78, 205, 196, 0.4)) drop-shadow(0 0 4px rgba(78, 205, 196, 0.8));
    }
    
    .logo-container {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        overflow: visible;
    }
    
    .business-name {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        letter-spacing: 0.1px;
        font-size: 0.7rem;
        margin-left: 6px;
        white-space: nowrap;
    }
    
    .hamburger-btn {
        flex-shrink: 0;
        display: flex !important;
        width: 22px; /* Slightly smaller */
        height: 18px;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text .subtitle {
        font-size: 1.3rem;
    }
    
    .problems-section-dedicated {
        padding: 40px 0; /* Reduced from 50px for mobile */
    }
    
    .problems-content {
        padding: 0 30px;
    }
    
    .problems-content h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .problem-item {
        padding: 20px 18px;
        font-size: 1rem;
    }
    
    .solution-right {
        padding: 30px 25px;
    }
    
    .solution-right h3 {
        font-size: 1.4rem;
    }
    
    .solution-right p {
        font-size: 0.95rem;
    }
    
    .read-more-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .solution-right::before {
        display: none;
    }
    
    .connection-line {
        display: none;
    }
    
    .coach-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }
    
    .coach-section {
        margin-top: 0;
        padding: 50px 0;
    }
    
    .coach-circle {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .coach-text h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .coach-text {
        text-align: center;
    }
    
    .cta-large {
        padding: 15px 25px;
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.4;
        width: auto;
        max-width: 280px;
        margin: 0 auto;
        display: inline-block;
        text-align: center;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }
    
    .programs-header h2 {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-testimonial {
        transform: rotate(0deg) !important;
        margin-top: 0 !important;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .final-cta-content {
        text-align: center;
    }
    
    .final-cta-button {
        padding: 15px 25px;
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.4;
        width: auto;
        max-width: 280px;
        margin: 0 auto;
        display: inline-block;
        text-align: center;
    }
    
    .large-number {
        display: none;
    }
    
    .footer-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .brand-section h3 {
        font-size: 1.1rem; /* Reduced from 1.2rem */
    }
    
    .social-group {
        justify-content: center;
    }
}

/* --- VERY SMALL MOBILE (iPhone SE and smaller) --- */
@media (max-width: 480px) {
    .hero-section {
        padding-top: 60px; /* Minimal padding for small screens */
    }
    
    .floating-header {
        top: 6px; /* Very close to top */
        left: 6px;
        right: 6px;
        padding: 5px 10px; /* Ultra compact */
        border-radius: 15px;
    }
    
    .logo {
        height: 28px;
        filter: brightness(0) invert(1) drop-shadow(0 0 6px #4ecdc4) drop-shadow(0 0 12px rgba(78, 205, 196, 0.4)) drop-shadow(0 0 3px rgba(78, 205, 196, 0.8));
    }
    
    .business-name {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        letter-spacing: 0.2px;
        font-size: 0.75rem;
        margin-left: 5px;
        max-width: 110px;
    }
    
    .hamburger-btn {
        width: 20px;
        height: 16px;
        display: flex !important;
    }
    
    .hamburger-btn span {
        width: 16px; /* Even smaller for tiny screens */
        height: 1.5px;
    }
}

/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* About Page Hero - Clean Layout */
.about-hero-section {
    padding: 120px 0 80px 0;
    background: #0a0a0a;
    min-height: 60vh;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-hero-image {
    flex: 0 0 300px;
}

.coach-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0064c8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 3;
}

.coach-photo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Only show placeholder text if no image */
.coach-photo:not(:has(img))::after {
    content: 'Coach Photo';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00d4ff;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 2;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #00d4ff;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    max-width: 600px;
}

/* Mobile Responsive for About Hero */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 100px 0 60px 0;
    }
    
    .about-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }
    
    .about-hero-image {
        flex: none;
    }
    
    .coach-photo {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .coach-photo::before {
        width: 230px;
        height: 230px;
    }
    
    .about-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
}

/* About Page CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #0064c8);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.cta-button.secondary-cta {
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
}

.cta-button.secondary-cta:hover {
    background: #00d4ff;
    color: #0a0a0a;
}

/* --- ABOUT EXPANDED SECTIONS --- */

/* Story Section */
.about-story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.about-story-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: left; /* Changed from center to left for better readability */
}

.about-story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #00d4ff;
    text-align: center; /* Keep title centered */
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 0.9;
}

/* Journey Timeline Section */
.about-journey-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.about-journey-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-journey-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #00d4ff;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00d4ff, #0064c8);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin: 0 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.timeline-description {
    color: #cccccc;
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #00d4ff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px #0a0a0a;
}

/* Philosophy Section */
.about-philosophy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e, #1a1a2e);
}

.about-philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-philosophy-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #00d4ff;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 35px 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.philosophy-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
}

.philosophy-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #4ecdc4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
    border: 3px solid #16213e;
}

.philosophy-icon svg {
    width: 25px;
    height: 25px;
    fill: #0a0a0a;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 15px 0;
    color: #00d4ff;
    font-weight: 700;
}

.philosophy-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Number indicator */
.card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 212, 255, 0.1);
    line-height: 1;
}

/* Credentials Section */
.about-credentials-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.about-credentials-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-credentials-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #00d4ff;
    text-align: center;
}

.credentials-grid {
    position: relative;
    padding-left: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.credentials-grid::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #4ecdc4, #00d4ff);
}

.credential-item {
    position: relative;
    margin-bottom: 35px;
    padding-left: 30px;
}

.credential-item::before {
    content: '✓';
    position: absolute;
    left: -32px;
    top: 5px;
    width: 24px;
    height: 24px;
    background: #4ecdc4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #0a0a0a;
    font-weight: bold;
}

.credential-item h4 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.credential-item div {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.5;
}

/* Mobile Responsive for About Sections */
@media (max-width: 768px) {
    .about-story-content,
    .about-journey-content,
    .about-philosophy-content,
    .about-credentials-content {
        padding: 0 20px;
    }

    .about-story-content h2,
    .about-journey-content h2,
    .about-philosophy-content h2,
    .about-credentials-content h2 {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        margin-left: 40px;
    }

    .timeline-content {
        margin: 0;
    }

    .timeline-dot {
        left: 20px;
    }

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

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}