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

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Optimize image rendering */
img[loading="lazy"] {
    content-visibility: auto;
}

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --dark-gray: #2d2d2d;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
    --accent: rgba(255, 255, 255, 0.2);
    --shadow: rgba(0, 0, 0, 0.3);
    --secondary-blue: #A8D5E2;
    --secondary-blue-light: rgba(168, 213, 226, 0.3);
    --secondary-blue-dark: #7FB3D3;
}

/* Image Styles */
.img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Liquid Glass Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.glass-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.5s;
}

/* Feature Cards */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.feature-card:nth-child(1)::after {
    background-image: url('images/feature-1.jpg');
}

.feature-card:nth-child(2)::after {
    background-image: url('images/feature-2.jpg');
}

.feature-card:nth-child(3)::after {
    background-image: url('images/feature-3.jpg');
}

.feature-card:nth-child(4)::after {
    background-image: url('images/feature-4.jpg');
}

.feature-card:hover::after {
    opacity: 0.25;
}

.feature-card .feature-icon,
.feature-card h3,
.feature-card p {
    position: relative;
    z-index: 1;
}

.glass-card:hover::before {
    left: 100%;
    background: linear-gradient(90deg, transparent, var(--secondary-blue-light), transparent);
}

.glass-card:hover {
    border-color: var(--secondary-blue);
}


/* Liquid Shapes Animation */
.liquid-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: liquidMove 20s infinite ease-in-out;
}

.liquid-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.liquid-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    animation-delay: 5s;
}

.liquid-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes liquidMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, 50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 80px) scale(0.9);
    }
    75% {
        transform: translate(80px, -30px) scale(1.05);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: opacity 0.3s;
}

.logo-img:hover {
    opacity: 0.9;
}

.logo i {
    font-size: 1.8rem;
    display: none;
}

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

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    background: var(--secondary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-select {
    background: var(--secondary-blue-dark);
    backdrop-filter: blur(10px);
    border: 1px solid var(--secondary-blue);
    border-radius: 8px;
    color: var(--text-white);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.language-select:hover {
    background: var(--secondary-blue-light);
    border-color: var(--secondary-blue);
}

.language-select option {
    background: var(--secondary-blue-dark);
    color: var(--text-white);
    padding: 0.5rem;
}

.language-select:focus {
    background: var(--secondary-blue-light);
    border-color: var(--secondary-blue);
    outline: none;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background-image: url('images/hero-index.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--text-white);
    color: var(--primary-black);
    border-color: var(--text-white);
}

.btn-primary:hover {
    background: var(--secondary-blue);
    color: var(--primary-black);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--secondary-blue-light);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border-color: var(--glass-border);
}

.btn-secondary:hover {
    background: var(--secondary-blue-light);
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    text-align: center;
    transition: transform 0.3s;
}

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

.feature-card:hover .feature-icon {
    color: var(--secondary-blue);
    transition: color 0.3s;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background-image: url('images/ladies.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

/* About Content */
.about-content {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.about-section p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Unique Section Styles */

/* 1. Hero Section - Full-width image background with overlay text */
.about-hero-section {
    position: relative;
    margin: 0 0 5rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
}

.about-hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.about-hero-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* 2. Split Section - 60/40 or 40/60 layout */
.about-split-section {
    display: grid;
    gap: 3rem;
    align-items: stretch;
    margin-bottom: 5rem;
    padding: 0 20px;
}

.about-split-left {
    grid-template-columns: 0.6fr 1fr;
}

.about-split-right {
    grid-template-columns: 1fr 0.6fr;
}

.about-split-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.about-split-image .about-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.about-split-text {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.about-split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.about-split-text p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* 3. Stack Section - Vertical layout */
.about-stack-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 5rem;
    padding: 0 20px;
}

.about-stack-text {
    padding: 2.5rem;
    width: 100%;
}

.about-stack-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.about-stack-text p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-stack-image {
    width: 100%;
    height: 500px;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
}

.about-stack-image .about-img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* 4. Overlay Section - Image with centered text overlay */
.about-overlay-section {
    margin: 5rem 0;
    padding: 0 20px;
}

.about-overlay-image {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.about-overlay-img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    padding: 3rem;
    text-align: center;
    z-index: 2;
}

.about-overlay-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.about-overlay-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: -1;
    border-radius: 20px;
}

/* Shared Image Styles */
.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    display: block;
}

.about-img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

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

/* Mission Quote Styling */
.mission-quote {
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-white);
    font-style: italic;
    padding: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.mission-quote::before {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--secondary-blue);
    opacity: 0.6;
    font-family: Georgia, serif;
}

.mission-quote::after {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    position: absolute;
    right: 0;
    bottom: 0.5rem;
    color: var(--secondary-blue);
    opacity: 0.6;
    font-family: Georgia, serif;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.coaching-programs-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.value-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Services Content */
.services-content {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    padding: 2.5rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Contact Content */
.contact-content {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--text-white);
    min-width: 30px;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.contact-details p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    background: var(--secondary-blue-light);
    box-shadow: 0 0 0 3px var(--secondary-blue-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 20px;
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-blue);
}

.footer-section i {
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-gray);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .coaching-programs-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    /* Unique Section Styles Responsive */
    .about-hero-section {
        margin: 0 0 3rem;
        margin-left: calc(-50vw + 50%);
        min-height: 500px;
    }

    .about-hero-content {
        margin: 2rem auto;
        padding: 2rem;
    }

    .about-hero-content h2 {
        font-size: 2rem;
    }

    .about-split-section {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-bottom: 3rem;
    }


    .about-split-image {
        height: auto;
    }
    
    .about-split-image .about-image {
        min-height: 300px;
        height: 100%;
    }

    .about-split-text {
        padding: 2rem;
    }

    .about-split-text h2 {
        font-size: 1.8rem;
    }

    .about-stack-section {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .about-stack-text {
        padding: 2rem;
    }

    .about-stack-text h2 {
        font-size: 1.8rem;
    }

    .about-stack-image {
        height: 350px;
    }

    .about-overlay-section {
        margin: 3rem 0;
    }

    .about-overlay-image {
        height: 400px;
    }

    .about-overlay-content {
        padding: 2rem;
        width: 95%;
    }

    .about-overlay-content h2 {
        font-size: 2rem;
    }
}

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

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

    .container {
        padding: 0 15px;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    /* Unique Section Styles Mobile */
    .about-hero-section {
        margin: 0 0 2rem;
        margin-left: calc(-50vw + 50%);
        min-height: 400px;
    }

    .about-hero-content {
        margin: 1.5rem auto;
        padding: 1.5rem;
    }

    .about-hero-content h2 {
        font-size: 1.8rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .about-split-section {
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }


    .about-split-image {
        height: auto;
    }
    
    .about-split-image .about-image {
        min-height: 250px;
        height: 100%;
    }

    .about-split-text {
        padding: 1.5rem;
    }

    .about-split-text h2 {
        font-size: 1.5rem;
    }

    .about-stack-section {
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }

    .about-stack-text {
        padding: 1.5rem;
    }

    .about-stack-text h2 {
        font-size: 1.5rem;
    }

    .about-stack-image {
        height: 300px;
    }

    .about-overlay-section {
        margin: 2rem 0;
        padding: 0 15px;
    }

    .about-overlay-image {
        height: 350px;
    }

    .about-overlay-content {
        padding: 1.5rem;
        width: 95%;
    }

    .about-overlay-content h2 {
        font-size: 1.8rem;
    }

    .about-overlay-content .tagline {
        font-size: 1.1rem;
    }
}

/* Page-specific header images */
.page-header.about-header {
    background-image: url('images/coaching.jpg');
}

.page-header.services-header {
    background-image: url('images/service.jpg');
}

.page-header.contact-header {
    background-image: url('images/contact.jpg');
}

.page-header.privacy-header {
    background-image: url('images/privacy.jpg');
}

.page-header.terms-header {
    background-image: url('images/terms.jpg');
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:nth-child(1)::after {
    background-image: url('images/feature-1.jpg');
}

.feature-card:nth-child(2)::after {
    background-image: url('images/feature-2.jpg');
}

.feature-card:nth-child(3)::after {
    background-image: url('images/feature-3.jpg');
}

.feature-card:nth-child(4)::after {
    background-image: url('images/feature-4.jpg');
}

.page-header {
    background-image: url('images/header-default.jpg');
    background-size: cover;
    background-position: center;
}

.feature-card:hover::after {
    opacity: 0.3;
}

.feature-icon, .feature-card h3, .feature-card p {
    position: relative;
    z-index: 2;
}

/* Coaches Section */
.coaches-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
}

.coaches-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.section-header-with-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.coaches-section .section-title {
    text-align: center;
    margin-bottom: 0;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: var(--text-white);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    animation: pulse-badge 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.15);
    margin-top: 0.5rem;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    }
}

.coaches-section .section-subtitle {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.coach-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
}

.coach-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.5s ease;
}

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

.coach-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.coach-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-white);
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.coach-card:hover .coach-avatar {
    transform: scale(1.1);
    border-color: var(--primary-blue);
}

.coach-card h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.coach-card .coach-role {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coach-card .coach-bio {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.coach-card .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Thank You Section */
.thank-you-section {
    min-height: 90vh;
    padding: 80px 0 100px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.thank-you-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header Section */
.thank-you-header {
    text-align: center;
    margin-bottom: 4rem;
}

.thank-you-icon-wrapper {
    margin-bottom: 2rem;
}

.thank-you-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    border: 3px solid rgba(76, 175, 80, 0.3);
    margin: 0 auto;
    animation: checkmark 0.8s ease-in-out;
    will-change: transform, opacity;
}

.thank-you-icon i {
    font-size: 4rem;
    color: #4caf50;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.thank-you-header h1 {
    color: var(--text-white);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-blue) 50%, var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.thank-you-message {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.thank-you-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Card Styles */
.thank-you-card {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

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

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

.thank-you-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.thank-you-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Coach Card */
.coach-card-info {
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.coach-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coach-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
}

.coach-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    will-change: transform;
}

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

.coach-icon-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: var(--text-white);
    font-size: 5rem;
}

.coach-name {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coach-role {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

/* Next Steps Card */
.next-steps-card {
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.steps-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--secondary-purple);
    transform: translateX(5px);
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

/* Action Buttons */
.thank-you-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.thank-you-actions .btn {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.thank-you-actions .btn i {
    font-size: 1.1rem;
}

.thank-you-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Coming Soon Section */
.coming-soon-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.coming-soon-icon {
    font-size: 5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.coming-soon-content h1 {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coming-soon-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.coming-soon-content .btn {
    margin-top: 2rem;
}

/* Responsive Design for Coaches Section */
@media (max-width: 768px) {
    .coaches-section .section-title {
        font-size: 2rem;
    }
    
    .section-header-with-badge {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .coming-soon-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .coaches-section .section-subtitle {
        margin-bottom: 3rem;
    }
    
    .coaches-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coach-card {
        padding: 1.5rem;
    }
    
    .coach-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .coming-soon-content h1 {
        font-size: 2rem;
    }
    
    .coming-soon-icon {
        font-size: 4rem;
    }
    
    .thank-you-section {
        padding: 60px 0 80px;
    }
    
    .thank-you-header {
        margin-bottom: 3rem;
    }
    
    .thank-you-header h1 {
        font-size: 2.2rem;
    }
    
    .thank-you-icon {
        width: 100px;
        height: 100px;
    }
    
    .thank-you-icon i {
        font-size: 3.5rem;
    }
    
    .thank-you-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .thank-you-card {
        padding: 2rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .thank-you-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .coaches-section {
        padding: 60px 0;
    }
    
    .coming-soon-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }
    
    .coach-card {
        padding: 1.25rem;
    }
    
    .coming-soon-section {
        padding: 60px 0;
    }
    
    .thank-you-section {
        padding: 40px 0 60px;
    }
    
    .thank-you-header {
        margin-bottom: 2rem;
    }
    
    .thank-you-header h1 {
        font-size: 1.8rem;
    }
    
    .thank-you-message {
        font-size: 1rem;
    }
    
    .thank-you-icon {
        width: 80px;
        height: 80px;
    }
    
    .thank-you-icon i {
        font-size: 3rem;
    }
    
    .thank-you-grid {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .thank-you-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .thank-you-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .coach-image-wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
        border-width: 3px;
    }
    
    .coach-icon-fallback {
        font-size: 3rem;
    }
    
    .coach-name {
        font-size: 1.4rem;
    }
    
    .coach-role {
        font-size: 0.95rem;
    }
    
    .steps-list li {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    
    .step-text {
        font-size: 0.95rem;
    }
    
    .thank-you-actions {
        margin-top: 1.5rem;
    }
    
    .thank-you-actions .btn {
        min-width: auto;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

