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

:root {
    /* Blue to Green Gradient Colors */
    --primary-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --secondary-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --accent-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --success-gradient: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --light-gradient: linear-gradient(135deg, #e3f2fd 0%, #b3e5fc 100%);
    
    /* Solid Colors */
    --primary-blue: #4facfe;
    --primary-cyan: #00f2fe;
    --primary-green: #43e97b;
    --primary-teal: #38f9d7;
    --dark-bg: #0f0f23;
    --card-bg: rgba(255, 255, 255, 0.1);
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --text-white: #ffffff;
    
    /* Modern Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --glow: 0 0 20px rgba(79, 172, 254, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 60%, #0d4f3c 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0f0f23;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.8rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.nav-link:hover {
    background: var(--primary-gradient);
    -webkit-text-fill-color: var(--white);
    background-clip: border-box;
    transform: translateY(-2px);
    box-shadow: var(--glow);
    text-shadow: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: calc(100vh - 180px); /* further reduced overall height */
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 60%, #0d4f3c 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 172, 254, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(79, 172, 254, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(79, 172, 254, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: transparent;
}

.carousel-slide.active {
    opacity: 1;
}







.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(79, 172, 254, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Ensure the CTA button is further down on all screen sizes */
.hero .cta-button {
    margin-top: 6rem;
    margin-bottom: 0; /* remove space above indicators */
}

.cta-button {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    min-width: 220px;
    text-decoration: none;
    max-width: 100%;
    box-sizing: border-box;
}

.cta-button::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.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--glow);
    text-decoration: none;
}

.cta-button.large {
    padding: 1.4rem 3.5rem;
    font-size: 1.2rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem; /* reduce gap below CTA */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary-gradient);
    transform: scale(1.3);
    box-shadow: var(--glow);
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

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

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0d4f3c 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    display: flex;
    justify-content: center;
}

.coach-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    position: relative;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 3px solid transparent;
    background-clip: padding-box;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
}

.coach-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--primary-gradient);
    border-radius: 50%;
    z-index: -1;
}

.coach-photo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

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

.coach-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.coach-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.4;
}

.coach-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl), var(--glow);
}

.coach-image:hover .photo-placeholder {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl), var(--glow);
}

.coach-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.coach-image:hover .coach-photo-img {
    transform: scale(1.05);
}

.coach-photo-direct {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.coach-photo-direct:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* About Page Intro Layout */
.intro-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin: 3rem 0;
}

.intro-image {
    width: 350px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
}

.intro-image-photo {
    width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.intro-image-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.intro-text {
    width: 600px;
    flex-shrink: 0;
    padding-left: 1rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* GRIT Section */
.grit-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0d4f3c 100%);
    position: relative;
}

.grit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.grit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 100%;
    overflow: hidden;
}

.grit-explanation p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.grit-quote-section {
    margin: 3rem 0;
    text-align: center;
}

.grit-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: #ffffff;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(79, 172, 254, 0.3);
    margin: 0 0 2rem 0;
    padding: 2rem;
    border-left: 4px solid #4facfe;
    border-radius: 15px;
    background-color: rgba(79, 172, 254, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.grit-quote::before {
    content: '"';
    font-size: 4rem;
    color: #4facfe;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}

.grit-quote::after {
    content: '"';
    font-size: 4rem;
    color: #4facfe;
    position: absolute;
    bottom: -20px;
    right: 20px;
    opacity: 0.3;
    font-family: serif;
}

.coaching-explanation {
    max-width: 800px;
    margin: 0 auto;
}

.coaching-explanation p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-align: left;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}




.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 4px;
    animation: fillProgress 2.5s ease-in-out forwards;
    box-shadow: var(--glow);
}

.progress-bar[data-percentage="85"]::after {
    background: var(--secondary-gradient);
    animation-delay: 0.2s;
}

.progress-bar[data-percentage="90"]::after {
    background: var(--accent-gradient);
    animation-delay: 0.4s;
}

.progress-bar[data-percentage="88"]::after {
    background: var(--success-gradient);
    animation-delay: 0.6s;
}

.progress-bar[data-percentage="92"]::after {
    background: var(--primary-gradient);
    animation-delay: 0.8s;
}

.progress-value {
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    display: block;
    text-align: right;
}

@keyframes fillProgress {
    0% { width: 0; }
    100% { 
        width: var(--target-width, 0%); 
    }
}

/* Specific percentage animations */
.progress-bar[data-percentage="85"]::after {
    animation: fillProgress85 2.5s ease-in-out forwards;
    animation-delay: 0.2s;
}

.progress-bar[data-percentage="90"]::after {
    animation: fillProgress90 2.5s ease-in-out forwards;
    animation-delay: 0.4s;
}

.progress-bar[data-percentage="88"]::after {
    animation: fillProgress88 2.5s ease-in-out forwards;
    animation-delay: 0.6s;
}

.progress-bar[data-percentage="92"]::after {
    animation: fillProgress92 2.5s ease-in-out forwards;
    animation-delay: 0.8s;
}

@keyframes fillProgress85 {
    0% { width: 0; }
    100% { width: 85%; }
}

@keyframes fillProgress90 {
    0% { width: 0; }
    100% { width: 90%; }
}

@keyframes fillProgress88 {
    0% { width: 0; }
    100% { width: 88%; }
}

@keyframes fillProgress92 {
    0% { width: 0; }
    100% { width: 92%; }
}

/* Coaching Section */
.coaching-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0d4f3c 100%);
    position: relative;
}

.coaching-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(67, 233, 123, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.coaching-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.coaching-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--success-gradient);
}

.coaching-content h3 {
    font-size: 2.5rem;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

.coaching-benefits {
    list-style: none;
    margin-bottom: 3rem;
}

.coaching-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.coaching-benefits li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.coaching-benefits i {
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 1.5rem;
    font-size: 1.3rem;
}

.coaching-details {
    display: flex;
    justify-content: space-around;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Always center the primary CTA in the coaching card on all screens */
.coaching-content .cta-button {
    display: block;
    margin: 2rem auto 0;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.detail-item i {
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.detail-item span {
    font-weight: 600;
    color: var(--text-white);
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0d4f3c 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(67, 233, 123, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-summary {
    position: relative;
    z-index: 2;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--glow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-gradient);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--glow);
}

.highlight-quote {
    margin-bottom: 2rem;
}

.highlight-quote i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.highlight-quote p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.highlight-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.highlight-author strong {
    font-size: 1.2rem;
    color: var(--text-white);
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
}

.highlight-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-gradient);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--glow);
}

.testimonial-content p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Compass Section */
.compass-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0d4f3c 100%);
    position: relative;
}

.compass-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 80%, rgba(56, 249, 215, 0.15) 0%, transparent 50%);
    z-index: 1;
}

/* Compass Content Layout */
.compass-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Left Side - Compass */
.compass-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Compass Cards Layout */
.compass-cards-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    height: 100%;
    padding: 2rem;
}

/* Left and Right Column Cards */
.left-column-cards,
.right-column-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Individual Compass Cards */
.compass-card {
    width: 180px;
    height: 200px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.compass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.compass-card:hover::before {
    left: 100%;
}

.compass-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Center Identity Card */
.center-identity-card {
    width: 180px;
    height: 432px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.center-identity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.8s ease;
}

.center-identity-card:hover::before {
    left: 100%;
}

.center-identity-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Card Icons */
.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.card-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.center-identity-card .card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.center-identity-card .card-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.card-icon i {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.center-identity-card .card-icon i {
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Card Labels */
.card-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.card-label:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.center-identity-card .card-label {
    font-size: 1.1rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

/* Progress Bars */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-value {
    height: 100%;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 50%, #4facfe 100%);
    border-radius: 4px;
    transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.4);
}

.progress-value::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-percentage {
    display: none;
}

/* Right Side - Description Cards */
.compass-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Description Text */
.compass-descriptions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.desc-item {
    text-align: left;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.desc-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 172, 254, 0.3);
    transform: translateY(-2px);
}

.desc-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4facfe;
    margin-bottom: 0.5rem;
}

.desc-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0d4f3c 0%, #1a5f4a 30%, #2d7a5f 60%, #0f3d2e 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(67, 233, 123, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
    color: #ffffff !important;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8), 0 0 80px rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.final-cta .cta-button {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-xl);
}

.final-cta .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 60%, #0d4f3c 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 5px;
}

.footer-links a:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .grit-content {
        gap: 2rem;
    }
    
}

@media (max-width: 1024px) {
    .grit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Ensure GRIT explanation appears first, followed by quote/coaching */
    .grit-explanation {
        order: 1;
    }
    .grit-quote-section {
        order: 2;
    }
    
    .grit-framework {
        order: 1;
    }
}

/* Responsive adjustments for medium screens */
@media (max-width: 1024px) {
    .compass-cards-layout {
        gap: 2rem;
    }
    
    .compass-card {
        width: 150px;
        height: 170px;
        padding: 1.2rem;
    }
    
    .center-identity-card {
        width: 150px;
        height: 370px;
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .center-identity-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .center-identity-card .card-icon i {
        font-size: 1.8rem;
    }
    
    .card-label {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .center-identity-card .card-label {
        font-size: 1.1rem;
    }
    
    .progress-bar {
        height: 7px;
        margin-bottom: 0.6rem;
    }
    
    .progress-percentage {
        font-size: 0.9rem;
    }
}

/* Compass Mobile Responsive */
@media (max-width: 768px) {
    .compass-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .compass-cards-layout {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .left-column-cards,
    .right-column-cards {
        flex-direction: row;
        gap: 1.2rem;
        justify-content: center;
    }
    
    .compass-card {
        width: 140px;
        height: 160px;
        padding: 1.2rem;
    }
    
    .center-identity-card {
        width: 120px;
        height: 300px;
        order: -1; /* Move identity to top on mobile */
        padding: 1.2rem;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }
    
    .center-identity-card .card-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.2rem;
    }
    
    .card-icon i {
        font-size: 1.3rem;
    }
    
    .center-identity-card .card-icon i {
        font-size: 1.6rem;
    }
    
    .card-label {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .center-identity-card .card-label {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .progress-bar {
        height: 6px;
        margin-bottom: 0.5rem;
    }
    
    .progress-percentage {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        /* Increase opacity for mobile menu so items don't blend with hero text */
        background-color: rgba(15, 15, 35, 0.9);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 1000;
        border-radius: 0 0 20px 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem;
        display: block;
        font-size: 1.1rem;
        color: var(--text-white);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateX(10px);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .grit-content {
        grid-template-columns: 1fr;
    }
    
    .coaching-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .compass-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .compass-cards-layout {
        flex-direction: column;
        gap: 1rem;
    }
    
    .left-column-cards,
    .right-column-cards {
        flex-direction: row;
        gap: 1rem;
    }
    
    .compass-card {
        width: 120px;
        height: 140px;
        padding: 1rem;
    }
    
    .center-identity-card {
        width: 120px;
        height: 140px;
        order: -1;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .center-identity-card .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }
    
    .card-icon i {
        font-size: 1.4rem;
    }
    
    .center-identity-card .card-icon i {
        font-size: 1.6rem;
    }
    
    .card-label {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .center-identity-card .card-label {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .progress-bar {
        height: 4px;
        margin-bottom: 0.3rem;
    }
    
    .progress-percentage {
        font-size: 0.6rem;
    }
    
    .compass-descriptions {
        max-width: 100%;
        gap: 1rem;
    }
    
    .desc-item {
        padding: 1rem;
    }
    
    .desc-item h4 {
        font-size: 1rem;
    }
    
    .desc-item p {
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-highlights {
        grid-template-columns: 1fr;
    }
    
}



/* About Page Styles */
.about-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 60%, #0d4f3c 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 172, 254, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(79, 172, 254, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.about-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.nav-link.active {
    background: var(--primary-gradient);
    -webkit-text-fill-color: var(--white);
    background-clip: border-box;
}

.intro-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0d4f3c 100%);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.intro-text h2 {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0d4f3c 100%);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.philosophy-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0d4f3c 100%);
    position: relative;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(67, 233, 123, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.philosophy-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: var(--text-white) !important;
    margin: 2rem 0 !important;
}

.work-with-me-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0d4f3c 100%);
    position: relative;
}

.work-with-me-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(67, 233, 123, 0.15) 0%, transparent 50%);
    z-index: 1;
}

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

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.experience-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--glow);
}

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

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

.experience-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.experience-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.approach-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--success-gradient);
}

.approach-section h3 {
    font-size: 1.8rem;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.approach-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.approach-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.approach-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.approach-item span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.belief-text {
    font-size: 1.3rem !important;
    text-align: center !important;
    margin-top: 2rem !important;
}

.giving-back-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0d4f3c 100%);
    position: relative;
}

.giving-back-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 80%, rgba(56, 249, 215, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.giving-back-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.giving-back-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.personal-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0d4f3c 100%);
    position: relative;
}

.personal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.personal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.personal-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.personal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-gradient);
}

.personal-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--glow);
}

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

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

.personal-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.personal-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .personal-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .personal-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-list {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Page Styles */
.testimonials-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 60%, #0d4f3c 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 172, 254, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(79, 172, 254, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.testimonials-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0d4f3c 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--card-bg), var(--card-bg)) padding-box,
                var(--primary-gradient) border-box;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--glow);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

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

.testimonial-content blockquote {
    margin: 0;
    padding: 0;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content p:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-weight: 500;
}

.author-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.outcomes-section {
    margin: 6rem 0;
    position: relative;
    z-index: 2;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.outcome-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.outcome-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--success-gradient);
}

.outcome-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--glow);
}

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

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

.outcome-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.outcome-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}


.cta-content h2 {
    font-size: 2.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Testimonials Page Responsive */
@media (max-width: 768px) {
    .testimonials-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    /* Position CTA right above dots on mobile */
    .hero .cta-button {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        position: relative;
        top: 8rem;
    }
    /* Force line break for specific word on mobile */
    .break-on-mobile {
        display: block;
    }
}

/* Force line break for specific word on all screen sizes */
.break-on-mobile {
    display: block;
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        min-width: auto;
        white-space: normal;
        line-height: 1.3;
    }
    /* Position CTA right above dots on small mobile */
    .hero .cta-button {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        position: relative;
        top: 6rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
        min-width: auto;
        white-space: normal;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .coaching-card {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .coach-photo-direct {
        width: 250px;
        height: 250px;
    }
    
    .intro-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-image {
        width: 100%;
        justify-content: center;
    }
    
    .intro-image-photo {
        width: 300px;
        border-radius: 15px;
    }
    
    .intro-text {
        width: 100%;
        padding-left: 0;
    }
}
