/* ===================================
   Variables et Reset
   =================================== */
:root {
    --primary-color: #FF8E06;
    --primary-dark: #FF8E06;
    --secondary-color: #0000FF;
    --accent-color: #FF8E06;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #0000FF;
    --overlay: rgba(0, 0, 255, 0.7);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 142, 6, 0.3);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 3s ease-in-out infinite;
}

.cta-button-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button-nav:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-nav:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 142, 6, 0.6), 0 0 30px rgba(255, 142, 6, 0.3);
}

.cta-button-nav:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 142, 6, 0.4);
}

.cta-button-nav i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta-button-nav:hover i {
    transform: translateX(3px);
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 142, 6, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 142, 6, 0.5);
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.hero-main {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-date {
    display: inline-block;
    background: rgba(255, 142, 6, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-color);
}

.hero-date i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.cta-button-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 142, 6, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    animation: buttonGlow 2s ease-in-out infinite;
}

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

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

.cta-button-hero:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 142, 6, 0.7), 0 0 40px rgba(255, 142, 6, 0.4);
}

.cta-button-hero:active {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 142, 6, 0.5);
}

.cta-button-hero i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.cta-button-hero:hover i {
    transform: translateX(5px) scale(1.1);
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 142, 6, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 142, 6, 0.6);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* ===================================
   Container & Sections
   =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

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

.section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-tag.light {
    background: var(--text-light);
    color: var(--primary-color);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-title.light {
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.8);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto;
    border-radius: 2px;
}

.title-underline.light {
    background: linear-gradient(135deg, var(--text-light), var(--primary-color));
}

/* ===================================
   Présentation Section
   =================================== */
.presentation {
    background: linear-gradient(135deg, var(--secondary-color), #0000FF);
    color: var(--text-light);
}

.presentation .section-title {
    color: var(--text-light);
}

.presentation .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.content-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.expertise-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.expertise-icon i {
    font-size: 2rem;
    color: white;
}

.expertise-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.expertise-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   Why Section
   =================================== */
.why-section {
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.9), rgba(0, 0, 255, 0.9));
    color: var(--text-light);
}

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

.why-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 142, 6, 0.35);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.why-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(255, 142, 6, 0.2);
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

/* ===================================
   Countdown Section
   =================================== */
.countdown-section {
    background: var(--bg-light);
}

.countdown-wrapper {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.countdown-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 140px;
}

.countdown-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    color: #666;
    font-weight: 600;
}

.countdown-separator {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.urgency-message {
    text-align: center;
    background: linear-gradient(135deg, #FF0016, #FF0016);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(255, 0, 22, 0.3);
}

.urgency-message i {
    margin-right: 0.5rem;
}

/* ===================================
   Program Section
   =================================== */
.program-section {
    background: white;
}

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

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.program-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 142, 6, 0.9), rgba(255, 142, 6, 0.9));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.program-card:hover .program-overlay {
    opacity: 1;
}

.program-number {
    font-size: 5rem;
    font-weight: 800;
    color: white;
    font-family: 'Playfair Display', serif;
}

.program-content {
    padding: 2rem;
}

.program-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.program-content p {
    color: #666;
    line-height: 1.7;
}

/* ===================================
   Call Reservation Section
   =================================== */
.call-section {
    background: linear-gradient(135deg, var(--secondary-color), #0000FF);
    padding: 4rem 0;
}

.call-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.call-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.call-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

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

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

.call-form .form-group input,
.call-form .form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.call-form .form-group input:focus,
.call-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 142, 6, 0.1);
}

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

.call-form .submit-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
    box-shadow: 0 8px 25px rgba(255, 142, 6, 0.4);
    position: relative;
    overflow: hidden;
}

.call-form .submit-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.call-form .submit-button:hover::after {
    width: 400px;
    height: 400px;
}

.call-form .submit-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 142, 6, 0.6), 0 0 30px rgba(255, 142, 6, 0.3);
}

.call-form .submit-button:active {
    transform: translateY(-1px) scale(1.02);
}

.call-form .submit-button i {
    transition: transform 0.3s ease, rotate 0.3s ease;
    display: inline-block;
}

.call-form .submit-button:hover i {
    transform: translateX(3px) rotate(15deg);
}

/* ===================================
   Form Section
   =================================== */
.form-section {
    background: linear-gradient(135deg, var(--secondary-color), #0000FF);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 142, 6, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
}

.checkbox-label {
    display: flex;
    align-items: start;
    cursor: pointer;
    gap: 0.8rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 1.3rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    box-shadow: 0 8px 25px rgba(255, 142, 6, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-button::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;
}

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

.submit-button:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 15px 40px rgba(255, 142, 6, 0.7), 0 0 35px rgba(255, 142, 6, 0.4);
}

.submit-button:active {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 142, 6, 0.5);
}

.submit-button i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.submit-button:hover i {
    transform: translateX(5px) scale(1.15) rotate(5deg);
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

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

.form-message.error {
    background: rgba(255, 0, 22, 0.1);
    color: #FF0016;
    border: 1px solid rgba(255, 0, 22, 0.3);
    display: block;
}

/* ===================================
   Conditions Section
   =================================== */
.conditions-section {
    background: var(--bg-light);
}

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

.condition-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.condition-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.condition-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.condition-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.condition-card.highlight .condition-icon {
    background: white;
}

.condition-icon i {
    font-size: 2rem;
    color: white;
}

.condition-card.highlight .condition-icon i {
    color: var(--primary-color);
}

.condition-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.condition-card.highlight h3 {
    color: white;
}

.condition-card p {
    color: #666;
    line-height: 1.6;
}

.condition-card.highlight p {
    color: rgba(255, 255, 255, 0.95);
}

.condition-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.condition-region {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.condition-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.8rem 0;
}

.condition-card.highlight .condition-highlight {
    color: white;
    font-size: 1.6rem;
}

.condition-note {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.condition-urgent {
    font-weight: 600;
    line-height: 1.6;
}

/* ===================================
   Coach Section
   =================================== */
.coach-section {
    background: white;
}

.coach-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.coach-image-wrapper {
    position: relative;
}

.coach-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.coach-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 142, 6, 0.4);
    white-space: nowrap;
}

.coach-badge span {
    display: block;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.coach-badge small {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.2rem;
    opacity: 0.9;
}

.coach-message {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.coach-message p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.coach-message p:last-of-type {
    margin-bottom: 2rem;
}

.coach-signature {
    text-align: right;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.final-cta {
    text-align: center;
}

.cta-button-large {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(255, 142, 6, 0.4);
    position: relative;
    overflow: hidden;
    animation: buttonShine 3s ease-in-out infinite;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.cta-button-large:hover::before {
    animation: buttonShineMove 0.8s ease-in-out;
}

.cta-button-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
}

.cta-button-large:hover::after {
    width: 500px;
    height: 500px;
}

.cta-button-large:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 50px rgba(255, 142, 6, 0.8), 0 0 50px rgba(255, 142, 6, 0.5);
}

.cta-button-large:active {
    transform: translateY(-2px) scale(1.07);
    box-shadow: 0 12px 35px rgba(255, 142, 6, 0.6);
}

.cta-button-large i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.cta-button-large:hover i {
    transform: translateX(8px) scale(1.2) rotate(10deg);
}

@keyframes buttonShine {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 142, 6, 0.4);
    }
    50% {
        box-shadow: 0 10px 35px rgba(255, 142, 6, 0.6);
    }
}

@keyframes buttonShineMove {
    0% {
        left: -50%;
        top: -50%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 150%;
        top: 150%;
        opacity: 0;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    font-size: 0.95rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-main {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .coach-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .coach-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .cta-button-nav {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .content-box {
        padding: 2rem;
    }
    
    .expertise-grid,
    .why-grid,
    .program-grid,
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .call-form-wrapper {
        padding: 2rem;
    }
    
    .call-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 2rem;
    }
    
    .countdown-grid {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1.5rem;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .cta-button-hero,
    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-main {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .urgency-message {
        font-size: 0.95rem;
        padding: 1rem;
    }
}