/* ===================================
   ShriJeet Sports & Coaching Management - Design System
   =================================== */

:root {
    /* Color Palette - Sports Theme */
    --primary-color: #ff6b35;
    --primary-dark: #e85a2b;
    --primary-light: #fff5f2;
    --secondary-color: #004e89;
    --accent-gold: #f7b801;
    --accent-green: #2a9d8f;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #e85a2b 100%);
    --gradient-secondary: linear-gradient(135deg, #004e89 0%, #003a66 100%);
    --gradient-gold: linear-gradient(135deg, #f7b801 0%, #f4a261 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(0, 78, 137, 0.8) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Roboto', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.logo-img {
    height: 100px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: var(--primary-light);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.nav-link.active::before {
    display: none;
}

/* Book a Coach Button in Nav */
.nav-btn-book {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--secondary-color);
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.4s ease;
    z-index: 0;
}

.nav-btn-book:hover {
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 78, 137, 0.4);
}

.nav-btn-book:hover::before {
    left: 0;
}

.nav-btn-book i {
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.nav-btn-book span {
    position: relative;
    z-index: 1;
}

.nav-btn-book:hover i {
    transform: translateX(3px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

/* ===================================
   PREMIUM HERO SECTION
   =================================== */

.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('images/home/football.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 80px;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.82) 0%, rgba(26, 26, 26, 0.80) 40%, rgba(21, 21, 21, 0.81) 70%, rgba(15, 15, 15, 0.82) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-premium-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 78, 137, 0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

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

.hero-animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.05;
    animation: float 70s ease-in-out infinite;
}

.shape-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-primary);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-square {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    top: 30%;
    right: -5%;
    transform: rotate(45deg);
    animation-delay: 5s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 350px solid var(--accent-gold);
    bottom: -20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(30px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) translateX(-30px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(-60px) rotate(270deg);
    }
}

.hero-premium-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-premium-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.25);
}

.hero-premium-badge i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-premium-title {
    font-size: clamp(1.6rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -1.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    margin-bottom: 5px;
}

.title-line-1 {
    animation-delay: 0.2s;
    color: rgba(255, 255, 255, 0.9);
}

.title-line-2 {
    animation-delay: 0.4s;
    color: rgba(255, 255, 255, 0.95);
}

.title-line-3 {
    animation-delay: 0.6s;
    font-size: clamp(2rem, 7vw, 4rem);
    padding-bottom: 5px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 5px;
    background: var(--gradient-gold);
    border-radius: 10px;
    animation: expandWidth 1s ease-out 1s forwards;
    width: 0;
    box-shadow: 0 2px 12px rgba(247, 184, 1, 0.4);
}

@keyframes expandWidth {
    to { width: 80%; }
}

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

.hero-premium-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-premium-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.35);
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

.cta-primary .btn-icon {
    transition: transform 0.4s ease;
}

.cta-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover .btn-shine {
    left: 100%;
}

.cta-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(0, 78, 137, 0.35);
    font-weight: 700;
}

.cta-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 78, 137, 0.6);
}

.cta-outline {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.2);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.scroll-link:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.scroll-link:hover .scroll-mouse {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.scroll-mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 22px;
    position: relative;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, 14px);
        opacity: 0.2;
    }
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===================================
   SECTIONS
   =================================== */

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    scroll-margin-top: 80px;
    overflow-x: hidden;
}

.section-alt {
    background: var(--off-white);
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px dashed var(--primary-color);
    border-radius: 50px;
}

.section-subtitle i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
}

/* ===================================
   ABOUT US SECTION
   =================================== */

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    overflow: visible;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-header {
    position: relative;
}

.about-header .section-subtitle {
    margin-bottom: 1rem;
}

.about-header .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-header .section-description {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.about-footer {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.about-cta-btn .btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.about-cta-btn:hover .btn-icon {
    transform: translateX(5px);
}

.about-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info span {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.contact-info a {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-normal);
}

.contact-info a:hover {
    color: var(--primary-dark);
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.about-image-wrapper {
    position: relative;
    width: 70%;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-main-image {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.about-overlay-image {
    position: absolute;
    top: 40px;
    left: -60px;
    width: 50%;
    max-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 2;
    border: 5px solid var(--white);
    animation: floatOverlay 4s ease-in-out infinite;
}

.about-overlay-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -60px;
    background: var(--primary-color);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.5);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
}

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

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

.experience-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    border-right: 3px solid rgba(255, 255, 255, 0.3);
    padding-right: 1.5rem;
}

.experience-text {
    display: flex;
    flex-direction: column;
}

.experience-text span {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.experience-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-subtitle {
    margin: 0 auto 1rem;
}

.services-header .section-title {
    margin-bottom: 1rem;
}

.services-header .section-description {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(0, 78, 137, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.15) rotate(5deg);
}

/* Different colors for each service */
.service-card:nth-child(1) .service-icon i {
    background: linear-gradient(135deg, #ff6b35 0%, #f77f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:nth-child(2) .service-icon i {
    background: linear-gradient(135deg, #2a9d8f 0%, #06d6a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:nth-child(3) .service-icon i {
    background: linear-gradient(135deg, #004e89 0%, #0077b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:nth-child(4) .service-icon i {
    background: linear-gradient(135deg, #f7b801 0%, #ffc300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:nth-child(5) .service-icon i {
    background: linear-gradient(135deg, #9d4edd 0%, #c77dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:nth-child(6) .service-icon i {
    background: linear-gradient(135deg, #e63946 0%, #f07167 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.service-card:visited .service-name {
    color: var(--black);
}

.service-decoration {
    position: relative;
    margin-top: 2rem;
}

.dots-pattern {
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.dots-pattern::before {
    content: '• • • • • • • • • •';
    color: var(--medium-gray);
    opacity: 0.3;
    font-size: 0.8rem;
    letter-spacing: 0.5rem;
    line-height: 1.5;
}

.service-line {
    width: 60%;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    transition: width 0.4s ease;
}

.service-card:hover .service-line {
    width: 80%;
}

/* Different line colors for each card */
.service-card:nth-child(1) .service-line {
    background: linear-gradient(90deg, #ff6b35 0%, #f77f00 100%);
}

.service-card:nth-child(2) .service-line {
    background: linear-gradient(90deg, #2a9d8f 0%, #06d6a0 100%);
}

.service-card:nth-child(3) .service-line {
    background: linear-gradient(90deg, #004e89 0%, #0077b6 100%);
}

.service-card:nth-child(4) .service-line {
    background: linear-gradient(90deg, #f7b801 0%, #ffc300 100%);
}

.service-card:nth-child(5) .service-line {
    background: linear-gradient(90deg, #9d4edd 0%, #c77dff 100%);
}

.service-card:nth-child(6) .service-line {
    background: linear-gradient(90deg, #e63946 0%, #f07167 100%);
}

/* ===================================
   STATS/IMPACT SECTION
   =================================== */

.stats-section {
    position: relative;
    background: linear-gradient(135deg, #ff6b35 0%, #e85a2b 40%, #004e89 70%, #003a66 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.4;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title-white {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.section-description-white {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.stats-header .section-subtitle {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.stats-header .section-subtitle i {
    color: var(--accent-gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(360deg);
    background: rgba(255, 255, 255, 0.25);
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.stat-number::after {
    content: '+';
    font-size: 3rem;
    margin-left: 0.25rem;
}

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

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-header .section-subtitle {
    margin: 0 auto 1rem;
}

.why-choose-header .section-title {
    margin-bottom: 1rem;
}

.why-choose-header .section-description {
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.4s ease;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.why-choose-card:hover::before {
    height: 100%;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 78, 137, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(-5deg);
}

.why-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.why-choose-card:hover .why-icon i {
    color: var(--white);
}

.why-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.why-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   TARGET AUDIENCE SECTION
   =================================== */

.target-header {
    text-align: center;
    margin-bottom: 4rem;
}

.target-header .section-subtitle {
    margin: 0 auto 1rem;
}

.target-header .section-title {
    margin-bottom: 1rem;
}

.target-header .section-description {
    margin: 0 auto;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.target-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    transition: height 0.4s ease;
    z-index: 0;
}

.target-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.target-card:hover::before {
    height: 100%;
}

.target-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.target-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.target-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    opacity: 0;
    transition: all 0.4s ease;
}

.target-card:hover .target-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.target-card:hover .target-icon::before {
    opacity: 1;
    transform: rotate(-360deg);
}

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

.target-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.target-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.target-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.target-features li {
    padding: 0.75rem 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--light-gray);
}

.target-features li:last-child {
    border-bottom: none;
}

.target-features i {
    color: var(--accent-green);
    font-size: 1rem;
    flex-shrink: 0;
}

.target-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    /* background: var(--gradient-primary); */
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.target-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.target-btn::after {
    content: '→';
    font-size: 1.2rem;
    margin-left: 0.25rem;
    transition: all 0.4s ease;
}

.target-btn:hover {
    background: var(--gradient-secondary);
    border-color: transparent;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 45px rgba(0, 78, 137, 0.5);
    color: var(--white);
}

.target-btn:hover::before {
    left: 100%;
}

.target-btn:hover::after {
    transform: translateX(8px) scale(1.2);
    animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(8px) scale(1.2);
    }
    50% {
        transform: translateX(12px) scale(1.2);
    }
}

/* ===================================
   WHAT WE OFFER SECTION
   =================================== */

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 78, 137, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.offer-card:hover .offer-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
}

.offer-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.offer-card:hover .offer-icon i {
    color: var(--white);
}

.offer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.offer-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   WHO WE SERVE SECTION
   =================================== */

.who-we-serve-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    overflow: hidden;
}

.who-we-serve-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 78, 137, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.who-serve-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.who-serve-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
}

.who-serve-subtitle i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.who-serve-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.who-serve-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.who-serve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.who-serve-card {
    perspective: 1000px;
    height: 100%;
}

.who-serve-card-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.who-serve-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.who-serve-card:hover .who-serve-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.who-serve-card:hover .who-serve-card-inner::before {
    transform: scaleX(1);
}

.who-serve-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 78, 137, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
    position: relative;
}

.who-serve-card:hover .who-serve-icon-wrapper {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
}

.who-serve-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: color 0.5s ease;
}

.who-serve-card:hover .who-serve-icon-wrapper i {
    color: var(--white);
}

.who-serve-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.who-serve-card-text {
    font-size: 1.05rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.who-serve-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.who-serve-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.who-serve-features li i {
    color: var(--accent-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header .section-subtitle {
    margin: 0 auto 1rem;
}

.testimonials-header .section-title {
    margin-bottom: 1rem;
}

.testimonials-header .section-description {
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* ===================================
   CTA SECTION (NEED HELP)
   =================================== */

.need-help-section {
    padding: 4rem 0;
    position: relative;
    z-index: 5;
}

.need-help-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.need-help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%), 
                radial-gradient(circle at 80% 70%, rgba(0, 78, 137, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.need-help-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.need-help-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.need-help-card .help-options {
    position: relative;
    z-index: 1;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.help-option {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.help-option:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.help-option:hover::before {
    left: 100%;
}

.help-option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.help-option-call .help-option-icon {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.help-option-whatsapp .help-option-icon {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.help-option:hover .help-option-icon {
    transform: scale(1.1) rotate(10deg);
}

.help-option-call:hover .help-option-icon {
    background: var(--primary-color);
    color: var(--white);
}

.help-option-whatsapp:hover .help-option-icon {
    background: #25D366;
    color: var(--white);
}

.help-option-content {
    flex: 1;
    min-width: 0;
}

.help-option-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.help-option-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.help-option-number {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.help-option-whatsapp .help-option-number {
    color: #25D366;
}

.help-option-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.help-option:hover .help-option-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* ===================================
   SECTION HEADER
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header .section-subtitle {
    margin-bottom: 1rem;
    text-align: center;
}

.section-header .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.section-header .section-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ===================================
   ABOUT MODERN SECTION
   =================================== */

.about-modern-section {
    padding: 6rem 0;
}

.about-modern-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-modern-image {
    position: relative;
}

.about-image-modern-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 8px;
}

.about-modern-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    min-height: 600px;
}

.about-modern-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-modern-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-modern-header .section-subtitle {
    margin-bottom: 1rem;
}

.about-modern-header .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-modern-header .section-description {
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
}

.about-modern-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-block-modern {
    line-height: 1.8;
}

.lead-text-modern {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1.9;
    margin-bottom: 0;
}

.text-block-modern p {
    font-size: 1.05rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin: 0;
}

.text-block-modern strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   OUR APPROACH SECTION
   =================================== */

.approach-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.approach-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.approach-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.approach-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

.approach-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    z-index: 3;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.approach-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.approach-description {
    font-size: 1.05rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   BECOME A COACH SECTION
   =================================== */

.become-coach-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.become-coach-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    z-index: 0;
}

.become-coach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.95) 0%, rgba(0, 58, 102, 0.95) 100%);
    z-index: 1;
}

.become-coach-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.become-coach-content {
    display: flex;
    flex-direction: column;
    /* gap: 3rem; */
}

/* Override objectives styles for become-coach section on blue background */
.become-coach-content .objectives-section-header {
    text-align: left;
}

.become-coach-content .objectives-subtitle {
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.become-coach-content .objectives-subtitle i {
    color: var(--accent-gold);
}

.become-coach-content .objectives-title {
    color: var(--white);
}

.become-coach-content .objectives-description {
    color: rgba(255, 255, 255, 0.9);
}

.coach-benefits {
    margin-top: 1rem;
}

.benefits-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 2rem 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 0.5rem 0;
}

.benefit-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.become-coach-cta {
    position: sticky;
    top: 100px;
}

.coach-cta-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.cta-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem 0;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

.cta-requirements {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 12px;
}

.cta-requirements h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 1rem 0;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--dark-gray);
}

.requirements-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Coach Application Form Styles */
.coach-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.coach-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.coach-application-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coach-application-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coach-application-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.coach-application-form .form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--black);
    background: var(--white);
    transition: all 0.3s ease;
}

.coach-application-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.coach-application-form .form-control.error {
    border-color: #dc3545;
}

.coach-application-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.coach-application-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.coach-application-form .error-message {
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

.coach-application-form .form-group.error .form-control {
    border-color: #dc3545;
}

.coach-application-form .btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.coach-application-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.coach-application-form .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.coach-application-form .btn-loader {
    display: none;
}

.coach-application-form .form-message {
    display: none;
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.coach-application-form .success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.coach-application-form .error-message-box {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.coach-application-form .form-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   COACHING PROGRAMS SECTION
   =================================== */

.coaching-program-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.coaching-program-section:last-child {
    margin-bottom: 0;
}

.coaching-program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
    transition: all 0.4s ease;
    overflow: hidden;
}

.coaching-program-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.coaching-card-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 100%;
}

.coaching-program-image {
    width: 400px;
    min-width: 400px;
    height: auto;
    overflow: visible;
    position: relative;
    flex-shrink: 0;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    align-self: center;
}

.coaching-program-image::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(0, 123, 255, 0.08) 100%);
    border-radius: var(--radius-lg);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.coaching-program-card:hover .coaching-program-image::before {
    opacity: 1;
}

.coaching-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 400px;
    border-radius: var(--radius-md);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    border: 4px solid rgba(255, 255, 255, 0.95);
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

.coaching-program-card:hover .coaching-img {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.18),
        0 10px 20px rgba(0, 0, 0, 0.12),
        0 0 0 2px var(--primary-color),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    filter: brightness(1.05) contrast(1.08) saturate(1.15);
}

.coaching-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-self: center;
}

.coaching-program-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 3rem 3rem 2rem 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
    text-align: left;
}

.coaching-icon-wrapper {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 78, 137, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.coaching-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.coaching-icon-wrapper i {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.coaching-program-card:hover .coaching-icon-wrapper {
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.coaching-program-card:hover .coaching-icon-wrapper::before {
    opacity: 1;
}

.coaching-title-wrapper {
    flex: 1;
    text-align: left;
}

.coaching-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    text-align: left;
}

.coaching-subtitle {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin: 0;
    text-align: left;
}

.coaching-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 3rem 3rem 3rem;
    flex: 1;
}

.coaching-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin: 0;
}

.coaching-features {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border-left: none;
}

.coaching-features h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1.25rem 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.features-list li i {
    color: var(--dark-gray);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.coaching-cta {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.btn-book-coach {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-book-coach:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    color: var(--white);
}

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

.btn-book-coach i {
    font-size: 1.1rem;
    transition: transform 0.4s ease;
}

.btn-book-coach:hover i {
    transform: translateX(3px);
}

/* ===================================
   OBJECTIVES SECTION
   =================================== */

.objectives-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.objectives-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Section: Objectives, Vision, Mission */
.objectives-left {
    display: flex;
    flex-direction: column;
    /* gap: 3rem; */
}

.objectives-section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.objectives-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px dashed var(--primary-color);
    border-radius: 50px;
}

.objectives-subtitle i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.objectives-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin: 0 0 1rem 0;
    text-align: left;
}

.objectives-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.objective-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.objective-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin: 0;
}

.vision-mission-wrapper {
    display: flex;
    flex-direction: column;
    /* gap: 2rem; */
    margin-top: 1rem;
}

.vm-item {
    padding: 1.5rem 0;
}

.vm-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.vm-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin: 0;
}

/* Right Section: Key Functions */
.objectives-right {
    position: relative;
}

.key-functions-box {
    background: var(--gradient-secondary);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 80px rgba(0, 78, 137, 0.3);
    position: sticky;
    top: 100px;
}

.key-functions-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.key-functions-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 2.5rem;
}

.key-functions-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
}

.key-functions-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.key-function-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.key-function-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.kf-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.kf-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: white;
    margin: 0;
    line-height: 1.5;
}

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('images/page-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(0, 78, 137, 0.85) 100%);
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.breadcrumb-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--accent-gold);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: var(--accent-gold);
    font-weight: 600;
}

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

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.contact-info-card h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

/* Book Coach Background Section */
.book-coach-bg-section {
    position: relative;
    background-image: url('images/section-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.book-coach-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.80) 100%);
    z-index: 0;
}

.book-coach-bg-section .container {
    position: relative;
    z-index: 1;
}

.book-coach-bg-section .section-header {
    position: relative;
    z-index: 1;
}

.book-coach-bg-section .section-subtitle {
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.book-coach-bg-section .section-subtitle i {
    color: var(--accent-gold);
}

.book-coach-bg-section .section-title {
    color: var(--white);
}

.book-coach-bg-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-gray);
    position: relative;
    z-index: 1;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--off-white);
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background: var(--white);
}

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

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 2.5rem;
}

.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: none;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    display: none;
    animation: slideDown 0.3s ease;
}

.form-message.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.success-message i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #28a745;
}

.error-message-box {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.error-message-box i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.form-message h4 {
    margin: 0.5rem 0;
    font-size: 1.3rem;
}

.form-message p {
    margin: 0;
    font-size: 1rem;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    min-height: 0;
}

.form-group.error .form-control {
    border-color: #e74c3c;
    background: #fff5f5;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error .error-message:empty {
    display: none;
}

.form-group.error .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    cursor: pointer;
    text-decoration: none;
    display: block;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: var(--radius-lg);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    filter: brightness(1);
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(0.9);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-lg);
    z-index: 2;
    backdrop-filter: blur(5px);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.3) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1) rotate(0deg);
}

/* Gallery Animation Keyframes */
@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-item {
    animation: galleryFadeIn 0.6s ease-out backwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }
.gallery-item:nth-child(7) { animation-delay: 0.4s; }
.gallery-item:nth-child(8) { animation-delay: 0.45s; }
.gallery-item:nth-child(9) { animation-delay: 0.5s; }
.gallery-item:nth-child(10) { animation-delay: 0.55s; }
.gallery-item:nth-child(11) { animation-delay: 0.6s; }
.gallery-item:nth-child(12) { animation-delay: 0.65s; }
.gallery-item:nth-child(13) { animation-delay: 0.7s; }
.gallery-item:nth-child(14) { animation-delay: 0.75s; }
.gallery-item:nth-child(15) { animation-delay: 0.8s; }
.gallery-item:nth-child(16) { animation-delay: 0.85s; }
.gallery-item:nth-child(17) { animation-delay: 0.9s; }
.gallery-item:nth-child(18) { animation-delay: 0.95s; }
.gallery-item:nth-child(19) { animation-delay: 1s; }
.gallery-item:nth-child(20) { animation-delay: 1.05s; }
.gallery-item:nth-child(21) { animation-delay: 1.1s; }
.gallery-item:nth-child(22) { animation-delay: 1.15s; }
.gallery-item:nth-child(23) { animation-delay: 1.2s; }
.gallery-item:nth-child(24) { animation-delay: 1.25s; }
.gallery-item:nth-child(25) { animation-delay: 1.3s; }
.gallery-item:nth-child(26) { animation-delay: 1.35s; }
.gallery-item:nth-child(27) { animation-delay: 1.4s; }
.gallery-item:nth-child(28) { animation-delay: 1.45s; }
.gallery-item:nth-child(29) { animation-delay: 1.5s; }
.gallery-item:nth-child(30) { animation-delay: 1.55s; }
.gallery-item:nth-child(31) { animation-delay: 1.6s; }
.gallery-item:nth-child(32) { animation-delay: 1.65s; }
.gallery-item:nth-child(33) { animation-delay: 1.7s; }
.gallery-item:nth-child(34) { animation-delay: 1.75s; }
.gallery-item:nth-child(35) { animation-delay: 1.8s; }
.gallery-item:nth-child(36) { animation-delay: 1.85s; }
.gallery-item:nth-child(37) { animation-delay: 1.9s; }
.gallery-item:nth-child(38) { animation-delay: 1.95s; }
.gallery-item:nth-child(39) { animation-delay: 2s; }

/* GLightbox Customization */
.glightbox-clean .gslide-description {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 1rem;
    font-size: 0.95rem;
    text-align: center;
}

.glightbox-clean .gslide-media {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ===================================
   FOOTER
   =================================== */

.footer-new {
    position: relative;
    width: 100%;
    margin-top: 20px;
    z-index: 1;
}

.footer-main {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    border-radius: 60px 60px 0 0;
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 78, 137, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.footer-social h5 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.footer-links-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 0;
}

.footer-links-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-links-col ul li a:hover::after {
    width: 100%;
}

.footer-contact .contact-list li {
    display: flex;
    gap: 12px;
}

.contact-icon-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact .contact-list li a {
    word-break: break-word;
    display: inline-block;
    position: relative;
}

.footer-contact .contact-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-contact .contact-list li a:hover {
    color: var(--accent-gold);
}

.footer-contact .contact-list li a:hover::after {
    width: 100%;
}

.footer-actions {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-actions h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.action-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-list li {
    display: flex;
}

.action-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.action-list li a i {
    color: var(--accent-gold);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.action-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.action-list li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.action-list li a:hover i {
    transform: scale(1.1);
}

.action-list li a:hover::after {
    width: 100%;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    margin: 50px 0 30px 0;
}

.footer-credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
}

.footer-credits p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 15px;
}

.footer-credits p a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.footer-credits .made-by {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.footer-credits .made-by a {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credits .made-by a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* ===================================
   FLOATING BUTTONS
   =================================== */

.singhal-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.singhal-whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7);
    }
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.6);
}

/* ===================================
   ANIMATIONS
   =================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-image-wrapper {
        width: 85%;
    }
    
    /* Coaching Programs - Tablet */
    .coaching-program-image {
        width: 350px;
        min-width: 350px;
        padding: 2rem;
    }
    
    .coaching-img {
        min-height: 350px;
    }
    
    .coaching-program-header {
        padding: 2.5rem 2.5rem 1.75rem 2.5rem;
    }
    
    .coaching-content {
        padding: 0 2.5rem 2.5rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
    
    .about-modern-section {
        padding: 4rem 0;
    }
    
    .about-modern-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-modern-image {
        order: 1;
    }
    
    .about-modern-content {
        order: 2;
    }
    
    .about-modern-img {
        min-height: 450px;
    }
    
    .about-modern-content {
        gap: 2rem;
    }
    
    .lead-text-modern {
        font-size: 1.1rem;
    }
    
    .text-block-modern p {
        font-size: 1rem;
    }
    
    .objectives-section {
        padding: 4rem 0;
    }
    
    .objectives-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .objectives-left {
        order: 1;
    }
    
    .objectives-right {
        order: 2;
    }
    
    .objectives-section-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .objectives-title {
        text-align: center;
    }
    
    .approach-section {
        padding: 4rem 0;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .approach-card {
        padding: 2rem 1.5rem;
    }
    
    .become-coach-section {
        padding: 4rem 0;
    }
    
    .become-coach-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .become-coach-content {
        order: 1;
    }
    
    .become-coach-cta {
        position: relative;
        top: 0;
        order: 2;
    }
    
    .coaching-program-section {
        margin-bottom: 3rem;
    }
    
    .coaching-card-wrapper {
        flex-direction: column;
    }
    
    .coaching-program-image {
        width: 100%;
        min-width: 100%;
        height: auto;
        padding: 1.5rem;
    }
    
    .coaching-img {
        min-height: 300px;
        height: 300px;
        width: 100%;
    }
    
    .coaching-program-header {
        padding: 2rem 2rem 1.5rem 2rem;
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .coaching-content {
        padding: 0 2rem 2rem 2rem;
        gap: 1.5rem;
    }
    
    .coaching-icon-wrapper {
        width: 75px;
        height: 75px;
        min-width: 75px;
        font-size: 1.9rem;
    }
    
    .coaching-title-wrapper {
        text-align: left;
    }
    
    .coaching-title {
        font-size: 1.75rem;
        text-align: left;
    }
    
    .coaching-subtitle {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .coaching-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .coaching-features h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .features-list li {
        font-size: 0.95rem;
        gap: 0.625rem;
    }
    
    .features-list li i {
        font-size: 0.8rem;
    }
    
    .become-coach-content .objectives-section-header {
        text-align: center;
    }
    
    .become-coach-content .objectives-title {
        text-align: center;
    }
    
    .key-functions-box {
        position: relative;
        top: 0;
        padding: 2.5rem 2rem;
    }
    
    .key-functions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .key-functions-title {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
    }
    
    .service-icon {
        width: 100px;
        height: 100px;
    }
    
    .service-name {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-section {
        padding: 4rem 0;
    }
    
    .stats-header {
        margin-bottom: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-card {
        padding: 2rem 1.5rem;
    }
    
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .target-card {
        padding: 2rem 1.5rem;
    }
    
    .target-icon {
        width: 80px;
        height: 80px;
    }
    
    .target-icon i {
        font-size: 2rem;
    }
    
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .offer-card {
        padding: 2rem 1.5rem;
    }
    
    .offer-icon {
        width: 70px;
        height: 70px;
    }
    
    .offer-icon i {
        font-size: 1.75rem;
    }
    
    .offer-title {
        font-size: 1.2rem;
    }
    
    .offer-description {
        font-size: 0.95rem;
    }
    
    .who-we-serve-section {
        padding: 4rem 0;
    }
    
    .who-serve-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .who-serve-card-inner {
        padding: 2.5rem 2rem;
    }
    
    .who-serve-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .who-serve-icon-wrapper i {
        font-size: 2.25rem;
    }
    
    .who-serve-card-title {
        font-size: 1.5rem;
    }
    
    .who-serve-card-text {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    .gallery-overlay i {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .need-help-section {
        padding: 3rem 0;
    }
    
    .need-help-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .need-help-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .need-help-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .help-options {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .help-option {
        padding: 1.25rem;
        border-radius: 14px;
    }
    
    .help-option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .help-option-title {
        font-size: 1rem;
    }
    
    .help-option-desc {
        font-size: 0.85rem;
    }
    
    .help-option-number {
        font-size: 0.9rem;
    }
    
    .help-option-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .page-header {
        padding: 150px 0 80px;
        min-height: 400px;
    }
    
    .page-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .breadcrumb-nav {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .nav-container {
        padding: 0.5rem 1.5rem;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .nav-menu {
        position: fixed;
        top: 95px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 95px);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: var(--transition-normal);
        overflow-y: auto;
        gap: 0.5rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        justify-content: flex-start;
        border-radius: var(--radius-md);
    }
    
    .nav-btn-book {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        margin-top: 0.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .menu-toggle.active span {
        background: var(--white);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-premium {
        padding: 180px 0 100px;
        min-height: auto;
        background-attachment: scroll;
    }
    
    .hero-premium-content {
        padding: 0 0.5rem;
    }
    
    .hero-premium-badge {
        font-size: 0.8rem;
        padding: 0.7rem 1.3rem;
        margin-bottom: 2rem;
    }
    
    .hero-premium-title {
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
    }
    
    .hero-premium-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
        line-height: 1.8;
    }
    
    .hero-premium-cta {
        flex-direction: column;
        width: 100%;
        margin-bottom: 3rem;
        gap: 0.85rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1.05rem 1.75rem;
        font-size: 1rem;
    }
    
    .floating-shape {
        display: none;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        width: 100%;
    }
    
    .about-main-image {
        min-height: 400px;
    }
    
    .about-overlay-image {
      top: 20px;
      left: -20px;
      max-width: 150px;
    }
    
    .about-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .about-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .experience-badge {
        bottom: -40px;
        left: 20px;
        padding: 1.5rem 2rem;
    }
    
    .experience-number {
        font-size: 2.5rem;
        padding-right: 1rem;
    }
    
    .experience-text span {
        font-size: 1.1rem;
    }
    
    .footer-main {
        border-radius: 40px 40px 0 0;
        padding: 60px 0 0;
    }
    
    .footer-company {
        padding-bottom: 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .singhal-whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 1.75rem;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 90px;
        right: 25px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .about-modern-section {
        padding: 3rem 0;
    }
    
    .about-modern-wrapper {
        gap: 2.5rem;
    }
    
    .about-modern-img {
        min-height: 400px;
    }
    
    .about-modern-content {
        gap: 1.5rem;
    }
    
    .lead-text-modern {
        font-size: 1rem;
    }
    
    .text-block-modern p {
        font-size: 0.95rem;
    }
    
    .objectives-section {
        padding: 3rem 0;
    }
    
    .objectives-wrapper {
        gap: 2.5rem;
    }
    
    .objectives-section-header {
        margin-bottom: 2rem;
    }
    
    .objectives-title {
        font-size: 1.75rem;
    }
    
    .objectives-description {
        font-size: 1rem;
    }
    
    .key-functions-box {
        padding: 2rem 1.5rem;
    }
    
    .key-functions-title {
        font-size: 1.5rem;
    }
    
    /* Coaching Programs - Mobile */
    .coaching-program-section {
        margin-bottom: 2.5rem;
    }
    
    .coaching-card-wrapper {
        flex-direction: column;
    }
    
    .coaching-program-image {
        width: 100%;
        min-width: 100%;
        height: auto;
        padding: 1rem;
    }
    
    .coaching-program-image::before {
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }
    
    .coaching-img {
        min-height: 250px;
        height: 250px;
        width: 100%;
        border: 3px solid rgba(255, 255, 255, 0.95);
    }
    
    .coaching-program-header {
        padding: 1.5rem 1.5rem 1.25rem 1.5rem;
        flex-direction: row;
        text-align: left;
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .coaching-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
        gap: 1.25rem;
    }
    
    .coaching-icon-wrapper {
        width: 65px;
        height: 65px;
        min-width: 65px;
        font-size: 1.6rem;
    }
    
    .coaching-title-wrapper {
        text-align: left;
    }
    
    .coaching-title {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
        text-align: left;
    }
    
    .coaching-subtitle {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .coaching-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .coaching-features {
        margin-top: 0.5rem;
    }
    
    .coaching-features h4 {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 0.625rem;
    }
    
    .features-list li {
        font-size: 0.9rem;
        gap: 0.5rem;
        line-height: 1.5;
    }
    
    .features-list li i {
        font-size: 0.75rem;
    }
    
    .objective-item {
        gap: 1rem;
    }
    
    .objective-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.8rem;
    }
    
    .objective-item p {
        font-size: 1rem;
    }
    
    .vm-title {
        font-size: 1.3rem;
    }
    
    .vm-text {
        font-size: 1rem;
    }
    
    .kf-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.3rem;
    }
    
    .kf-text {
        font-size: 1rem;
    }
    
    .approach-section {
        padding: 3rem 0;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .approach-card {
        padding: 1.75rem 1.5rem;
    }
    
    .approach-icon {
        width: 70px;
        height: 70px;
    }
    
    .approach-icon i {
        font-size: 1.75rem;
    }
    
    .approach-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .approach-title {
        font-size: 1.3rem;
    }
    
    .approach-description {
        font-size: 1rem;
    }
    
    .become-coach-section {
        padding: 3rem 0;
    }
    
    .become-coach-wrapper {
        gap: 2.5rem;
    }
    
    .coach-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .coach-form-header {
        margin-bottom: 1.5rem;
    }
    
    .cta-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .coach-application-form {
        gap: 1.25rem;
    }
    
    .coach-application-form .btn-submit {
        padding: 1.1rem 1.75rem;
        font-size: 1rem;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
    }
    
    .benefit-content h4 {
        font-size: 1.1rem;
    }
    
    .benefit-content p {
        font-size: 0.95rem;
    }
    
    .btn-apply,
    .btn-call {
        padding: 1.1rem 1.75rem;
        font-size: 1rem;
    }
    
    
    .services-header {
        margin-bottom: 3rem;
    }
    
    .services-grid {
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 2rem 1.25rem;
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
    }
    
    .service-name {
        font-size: 1.2rem;
    }
    
    .stats-section {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .stat-card {
        padding: 1.75rem 1.25rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-number::after {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .why-choose-header,
    .target-header {
        margin-bottom: 3rem;
    }
    
    .why-choose-grid {
        gap: 1.25rem;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .why-choose-card,
    .target-card {
        padding: 1.75rem 1.25rem;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-icon i {
        font-size: 1.75rem;
    }
    
    .why-title {
        font-size: 1.2rem;
    }
    
    .target-icon {
        width: 70px;
        height: 70px;
    }
    
    .target-icon i {
        font-size: 1.75rem;
    }
    
    .target-title {
        font-size: 1.3rem;
    }
    
    .target-features li {
        font-size: 0.9rem;
        padding: 0.65rem 0;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .offer-card {
        padding: 1.75rem 1.25rem;
    }
    
    .offer-icon {
        width: 60px;
        height: 60px;
    }
    
    .offer-icon i {
        font-size: 1.5rem;
    }
    
    .offer-title {
        font-size: 1.1rem;
    }
    
    .offer-description {
        font-size: 0.9rem;
    }
    
    .who-we-serve-section {
        padding: 3rem 0;
    }
    
    .who-serve-header {
        margin-bottom: 3rem;
    }
    
    .who-serve-subtitle {
        font-size: 0.8rem;
        padding: 0.625rem 1.25rem;
    }
    
    .who-serve-title {
        font-size: 1.75rem;
    }
    
    .who-serve-description {
        font-size: 1rem;
    }
    
    .who-serve-grid {
        gap: 1.5rem;
    }
    
    .who-serve-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .who-serve-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .who-serve-icon-wrapper i {
        font-size: 2rem;
    }
    
    .who-serve-card-title {
        font-size: 1.3rem;
        margin-bottom: 0.875rem;
    }
    
    .who-serve-card-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .who-serve-features {
        gap: 0.625rem;
    }
    
    .who-serve-features li {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
    
    .testimonials-header {
        margin-bottom: 3rem;
    }
    
    .testimonials-grid {
        gap: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 0.75rem;
        left: 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .author-info h5 {
        font-size: 0.95rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    .need-help-section {
        padding: 2.5rem 0;
    }
    
    .need-help-card {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }
    
    .need-help-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .need-help-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .help-option {
        padding: 1rem;
        gap: 1rem;
    }
    
    .help-option-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .help-option-title {
        font-size: 0.95rem;
    }
    
    .help-option-desc {
        font-size: 0.8rem;
    }
    
    .help-option-number {
        font-size: 0.85rem;
    }
    
    .help-option-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .page-header {
        padding: 120px 0 60px;
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .breadcrumb-nav {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .contact-info-grid {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem 1.25rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.5rem;
    }
    
    .book-coach-bg-section {
        background-attachment: scroll;
    }
    
    .form-row {
        gap: 1rem;
    }
    
    .btn-submit {
        padding: 1.1rem 1.75rem;
        font-size: 1rem;
    }
    
    .hero-premium {
        padding: 180px 0 100px;
    }
    
    .hero-premium-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.1rem;
        gap: 0.5rem;
    }
    
    .hero-premium-subtitle {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .footer-main {
        border-radius: 30px 30px 0 0;
        padding: 50px 0 0;
    }
    
    .footer-company {
        padding-bottom: 30px;
        align-items: flex-start;
        text-align: left;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-separator {
        margin: 40px 0 25px 0;
    }
    
    .footer-credits {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-bottom: 30px;
    }
}

/* ===================================
   FOUNDER STORY SECTION
   =================================== */

.founder-story-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.founder-organizations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0 4rem;
    padding: 0;
}

.org-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
}

.org-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

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

.founder-story-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.story-block:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.story-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.story-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.3;
}

.story-text {
    line-height: 1.9;
}

.story-text p {
    font-size: 1.05rem;
    color: var(--medium-gray);
    margin: 0 0 1.5rem 0;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.story-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.founder-quote {
    margin: 2rem 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 78, 137, 0.08) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--black);
    line-height: 1.8;
    position: relative;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.highlight-quote {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(0, 78, 137, 0.12) 100%);
    border-left-width: 5px;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 2.5rem 3rem;
}

.pillars-block {
    padding: 3.5rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.pillar-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 78, 137, 0.05) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 78, 137, 0.08) 100%);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.pillar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1.25rem 0;
    line-height: 1.4;
}

.pillar-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

.pillars-summary {
    text-align: center;
    font-size: 1.15rem;
    color: var(--black);
    margin: 2.5rem 0 0 0;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--radius-md);
    border: 2px dashed var(--primary-color);
}

.road-ahead-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.road-ahead-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--medium-gray);
    line-height: 1.8;
    padding: 1rem 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.road-ahead-list li:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(10px);
}

.road-ahead-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.message-block {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 78, 137, 0.08) 100%);
    border: 2px solid var(--primary-color);
    padding: 4rem 3.5rem;
}

.founder-message {
    text-align: center;
}

.founder-message-quote {
    margin: 0 0 2rem 0;
    padding: 2.5rem 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--black);
    line-height: 1.9;
    position: relative;
    box-shadow: var(--shadow-md);
    border: none;
}

.founder-message-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.message-signature {
    font-size: 1.15rem;
    color: var(--black);
    font-weight: 600;
    margin: 0;
    font-style: italic;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
}

/* Responsive Styles for Founder Story Section */
@media (max-width: 992px) {
    .founder-organizations {
        flex-direction: column;
        align-items: stretch;
    }
    
    .org-item {
        justify-content: center;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-block {
        padding: 2.5rem 2rem;
    }
    
    .pillars-block {
        padding: 2.5rem 2rem;
    }
    
    .message-block {
        padding: 3rem 2rem;
    }
    
    .founder-message-quote {
        padding: 2rem 2.5rem;
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .founder-story-section {
        padding: 4rem 0;
    }
    
    .founder-organizations {
        gap: 1.5rem;
        margin: 2rem 0 3rem;
    }
    
    .org-item {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .story-block {
        padding: 2rem 1.5rem;
    }
    
    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .story-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .story-title {
        font-size: 1.5rem;
    }
    
    .founder-quote {
        padding: 1.5rem 2rem;
        font-size: 1.05rem;
    }
    
    .highlight-quote {
        padding: 2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .pillar-card {
        padding: 2rem 1.5rem;
    }
    
    .pillar-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .pillar-title {
        font-size: 1.2rem;
    }
    
    .founder-message-quote {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
    
    .message-signature {
        font-size: 1rem;
        padding: 1.25rem;
    }
}

