/* ============================================
   Zalev Fitness - Stylesheet
   ============================================ */

/* AOS Custom Animations & Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Custom AOS Easing */
[data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Ensure AOS elements are visible after library loads */
html:not(.aos-ready) [data-aos] {
    opacity: 0;
    visibility: hidden;
}

html.aos-ready [data-aos] {
    visibility: visible;
}

/* Scale-up animation for hero images */
.hero-image[data-aos="zoom-in"] {
    transform-origin: center center;
}

/* Stagger animation for child elements */
.training-list .training-item[data-aos],
.value-grid .value-card[data-aos] {
    transition-delay: calc(var(--aos-delay, 0) * 0.1s);
}

/* CSS Variables */
:root {
    --primary-orange: #FF5722;
    --primary-dark: #333333;
    --wellness-green: #4CAF50;
    --motivational-orange: #FF5722;
    --text-dark: #333;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--motivational-orange);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0 0.25rem 0;
    transition: padding 0.3s ease;
}

.navbar.navbar-scrolled {
    padding: 0.25rem 0 0.125rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    position: relative;
    left: 0;
    transform: none;
    z-index: 1;
    display: flex;
    align-items: center;
}

.nav-brand a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}

.welcome-free-trial {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    margin-top: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), 0px 0px 15px rgba(0, 0, 0, 0.5), 0px 0px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.trial-item {
    white-space: nowrap;
}

.trial-separator {
    white-space: nowrap;
}

.learn-more-link {
    font-size: 14px;
    color: #d3d3d3;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-shadow: 
        -0.5625px -0.5625px 0 black,
        0.5625px -0.5625px 0 black,
        -0.5625px 0.5625px 0 black,
        0.5625px 0.5625px 0 black,
        0 0 1.125px black,
        0 0 2.25px black,
        1.6875px 1.6875px 3.375px rgba(0, 0, 0, 0.6), 
        0px 0px 8.4375px rgba(0, 0, 0, 0.5), 
        0px 0px 14.0625px rgba(0, 0, 0, 0.4);
    display: inline-block;
    padding: 0.25rem 0.5rem;
}

.learn-more-link:hover {
    color: var(--primary-orange);
    text-shadow: 
        -0.5625px -0.5625px 0 black,
        0.5625px -0.5625px 0 black,
        -0.5625px 0.5625px 0 black,
        0.5625px 0.5625px 0 black,
        0 0 1.125px black,
        0 0 2.25px black,
        0 0 5.625px rgba(255, 87, 34, 0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 17px;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-orange);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

/* Desktop-specific hero styles */
@media (min-width: 769px) {
    .hero {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 42px;
        margin-bottom: 3rem;
    }
    
    .hero-subtitle {
        font-size: 24px;
        margin: 3rem 0;
    }
    
    .hero-image {
        margin: 3rem auto;
    }
    
    .hero p {
        font-size: 20px;
        max-width: 900px;
        margin: 2.5rem auto;
    }
    
    .hero h2 {
        font-size: 36px;
        margin-top: 4rem;
        margin-bottom: 3rem;
    }
    
    .certifications-container {
        gap: 3rem;
        margin: 0 0 3rem 0;
    }
    
    .certifications-container .progress-image {
        max-width: 500px;
    }
}

.hero-title {
    font-size: 36.5px;
    color: var(--primary-orange);
    margin-bottom: 2rem;
}

.hero h2 {
    text-align: center;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    margin-top: 3rem;
    font-size: 32px;
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin: 2rem 0;
    line-height: 1.4;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.hero-subtitle .kinetic-text {
    white-space: normal;
    display: inline-block;
}

/* Desktop-specific hero styles (769px and above) */
@media (min-width: 769px) {
    .hero {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 42px;
        margin-bottom: 3rem;
    }
    
    .hero-subtitle {
        font-size: 24px;
        margin: 3rem 0;
    }
    
    .hero-image {
        margin: 3rem auto;
        max-width: 900px;
    }
    
    .hero p {
        font-size: 20px;
        max-width: 900px;
        margin: 2.5rem auto;
        line-height: 1.7;
    }
    
    .hero h2 {
        font-size: 36px;
        margin-top: 4rem;
        margin-bottom: 3rem;
    }
    
    .certifications-container {
        gap: 3rem;
        margin: 0 0 3rem 0;
    }
    
    .certifications-container .progress-image {
        max-width: 500px;
    }
    
    .btn {
        font-size: 18px;
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 15px;
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 15px;
        margin: 1rem 0;
    }
}

/* Typewriter Typography */
.kinetic-text {
    display: inline-block;
    overflow: visible;
}

.kinetic-text .typewriter-char {
    display: inline-block;
    opacity: 0;
    animation: typewriterChar 0.1s ease-in forwards;
}

@keyframes typewriterChar {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Blinking cursor */
.kinetic-text .typewriter-cursor {
    display: inline-block;
    opacity: 0;
    animation: typewriterCursor 0.1s ease-in forwards, cursorBlink 1s infinite 0.5s;
    color: var(--primary-orange);
    font-weight: 300;
    margin-left: 2px;
}

@keyframes typewriterCursor {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes cursorBlink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Hide original text until animation starts */
.kinetic-text:not(.animated) {
    visibility: hidden;
}

.kinetic-text.animated {
    visibility: visible;
}

/* Mobile optimizations for typewriter animation */
@media (max-width: 768px) {
    .kinetic-text .typewriter-char {
        animation-duration: 0.08s; /* Slightly faster on mobile */
    }
    
    .kinetic-text .typewriter-cursor {
        animation-duration: 0.08s;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .kinetic-text .typewriter-char,
    .kinetic-text .typewriter-cursor {
        animation: none;
        opacity: 1;
    }
    .kinetic-text:not(.animated) {
        visibility: visible;
    }
    
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

.hero-image {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Page Header */
.page-header {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--bg-light);
}

.page-header h1 {
    color: var(--primary-orange);
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: var(--white);
}

/* Reduce padding between Mission and Credentials sections by 50% */
.mission-section {
    padding-bottom: 2rem;
}

.about + .about {
    padding-top: 2rem;
}

.about h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 0px 0px 5px rgba(0, 0, 0, 0.15);
}

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

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.about-paragraph-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 2.5rem 0;
}

.about-paragraph-with-image + p {
    margin-top: 0.5rem;
}

.about-paragraph-reverse + p {
    margin-top: 1rem;
}

.about-text-left,
.about-text-right {
    text-align: left;
}

.about-text-left p,
.about-text-right p {
    margin: 0;
}

.progress-image-side {
    margin: 0;
}

.progress-image-side img {
    max-width: 80%;
}

@media (max-width: 768px) {
    .about-paragraph-with-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-text-left,
    .about-text-right {
        text-align: center;
    }
    
    .about-paragraph-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .certifications-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }

    .certifications-container .progress-image {
        max-width: 100%;
    }

    .lifestyle-images {
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
    }

    .lifestyle-image-item {
        max-width: 100% !important;
    }
    
    .lifestyle-carousel-container {
        margin: 2rem 0 !important;
    }
    
    .carousel-btn {
        font-size: 2rem !important;
        width: 40px !important;
        height: 40px !important;
    }
}

.progress-image {
    margin: 2.5rem 0;
    text-align: center;
}

.certifications-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
}

.certifications-container .progress-image {
    margin: 0;
    flex: 0 1 auto;
    max-width: 450px;
}

.certifications-container .progress-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.progress-image + p {
    margin-top: 1rem;
}

.progress-image img {
    max-width: 100%;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.image-caption {
    margin-top: 0.75rem;
    font-size: 14px;
    color: var(--text-dark);
    font-style: italic;
}

.progress-image-intro img {
    max-width: 280px;
}

.certification-pdf {
    margin: 2.5rem 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Client Value Section */
.client-value {
    padding: 4rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.client-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/photos/IMG_2997.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.client-value h2 {
    text-align: center;
    font-size: 28px;
    color: var(--primary-orange);
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 0px 0px 5px rgba(0, 0, 0, 0.15);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.value-card ul {
    list-style: none;
    text-align: center;
}

.value-card ul li {
    padding: 0.5rem 0;
    padding-left: 0;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.value-card ul li::before {
    content: '✓';
    position: static;
    flex-shrink: 0;
    color: var(--wellness-green);
    font-weight: bold;
}

/* Training Types Section */
/* Fitness Journey Section - Infographic Style */
.fitness-journey {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.fitness-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/backgrounds/Pic1.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.rotating-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 500%;
    height: 100%;
    animation: carouselMove 23.4s linear infinite;
    will-change: transform;
}

@media (min-width: 769px) {
    .carousel-track {
        animation-duration: 32.292s;
    }
}

.bg-slide {
    flex: 0 0 20%;
    width: 20%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.bg-slide-1 {
    background-image: url('../images/carousel/IMG_2972.JPG');
}

.bg-slide-2 {
    background-image: url('../images/carousel/IMG_3016.JPG');
}

.bg-slide-3 {
    background-image: url('../images/carousel/IMG_3031.JPG');
}

.bg-slide-4 {
    background-image: url('../images/carousel/IMG_3094.JPG');
}

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

.welcome-section {
    padding: 7.5rem 0 11.25rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 769px) {
    .welcome-section {
        padding: 10.828125rem 0 16.2421875rem 0;
    }
}

.video-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.video-section .hero-image iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Desktop: Show iframe, hide thumbnail */
.youtube-embed-desktop {
    display: block;
}

.youtube-thumbnail-mobile {
    display: none;
}

/* Mobile: Hide iframe, show thumbnail */
@media (max-width: 768px) {
    .youtube-embed-desktop {
        display: none;
    }
    
    .youtube-thumbnail-mobile {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }
    
    .youtube-thumbnail-link {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
    }
    
    .play-button-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        transition: transform 0.3s ease;
    }
    
    .youtube-thumbnail-link:hover .play-button-overlay,
    .youtube-thumbnail-link:active .play-button-overlay {
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .youtube-thumbnail-link img {
        filter: brightness(0.9);
        transition: filter 0.3s ease;
    }
    
    .youtube-thumbnail-link:hover img,
    .youtube-thumbnail-link:active img {
        filter: brightness(1);
    }
}

.welcome-header {
    text-align: center;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), 0px 0px 15px rgba(0, 0, 0, 0.5), 0px 0px 25px rgba(0, 0, 0, 0.4);
}

/* Hide line break on desktop - make it one horizontal line */
.welcome-header br {
    display: none;
}

.journey-title {
    text-align: center;
    font-size: 24px;
    color: var(--primary-orange);
    margin-bottom: 4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 0px 0px 5px rgba(0, 0, 0, 0.15);
}

.fitness-journey .container {
    position: relative;
    z-index: 2;
}

.journey-timeline {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    z-index: 1;
    align-items: center;
}

/* Desktop: Horizontal Layout */
@media (min-width: 769px) {
    .journey-timeline {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .journey-connector-line {
        display: none !important;
    }
    
    /* Hide mobile toggle buttons on desktop */
    .journey-mobile-toggle {
        display: none !important;
    }
    
    /* Show desktop badges, hide mobile badges */
    .journey-desktop-badge {
        display: flex !important;
    }
    
    .journey-mobile-badge {
        display: none !important;
    }
    
    /* Show step content on desktop */
    .journey-step {
        max-height: none !important;
        opacity: 1 !important;
        padding: 2.5rem 2rem !important;
        margin: 0 !important;
    }
}

.journey-step-wrapper {
    position: relative;
    margin-bottom: 0;
    flex: 0 1 auto;
    min-width: 0;
}

/* Mobile Dropdown Toggle Button - Hidden on desktop */
.journey-mobile-toggle {
    display: none;
}

/* Mobile Badge - Hidden on desktop */
.journey-mobile-badge {
    display: none;
}

/* Desktop Badge - Always visible */
.journey-desktop-badge {
    display: flex;
}

/* Desktop: Horizontal step wrapper */
@media (min-width: 769px) {
    .journey-step-wrapper {
        flex: 0 1 450px;
        max-width: 450px;
        min-width: 400px;
        display: flex;
        flex-direction: column;
    }
}

.journey-step {
    background-color: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Desktop: Adjust step sizing for horizontal layout */
@media (min-width: 769px) {
    .journey-step {
        padding: 2rem 2.5rem;
        height: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
}

.journey-step-completed {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    border: 2px solid #E8E8E8;
    opacity: 0.9;
}

.journey-step-active {
    background: linear-gradient(135deg, var(--white) 0%, #FFF5F2 100%);
    border: 3px solid var(--primary-orange);
    box-shadow: 0 12px 40px rgba(255, 87, 34, 0.25), 0 0 0 8px rgba(255, 87, 34, 0.05);
    transform: scale(1.02);
    z-index: 10;
}

.journey-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.journey-step-active:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 87, 34, 0.3), 0 0 0 8px rgba(255, 87, 34, 0.08);
}

/* Desktop: Adjust hover for horizontal layout */
@media (min-width: 769px) {
    .journey-step:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .journey-step-active:hover {
        transform: scale(1.04) translateY(-4px);
    }
}

/* Large Circular Icon Containers */
.journey-icon-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.journey-icon-completed {
    background: linear-gradient(135deg, #E0E0E0 0%, #D0D0D0 100%);
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.journey-icon-active {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #E64A19 100%);
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
    animation-fill-mode: both;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(255, 87, 34, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 32px rgba(255, 87, 34, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
}

.journey-icon-large {
    font-size: 4.5rem;
    line-height: 1;
}

.journey-checkmark-overlay {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 40px;
    height: 40px;
    background: var(--wellness-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    border: 3px solid var(--white);
}

/* Step Number Badge */
.journey-step-number-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 3px solid #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

/* Override base badge positioning for mobile badges */
@media (max-width: 768px) {
    .journey-step-number-badge.journey-mobile-badge {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }
}

/* Desktop: Adjust badge position for horizontal layout */
@media (min-width: 769px) {
    .journey-step-number-badge {
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.journey-number-active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
}

/* Make step number badges orange for completed steps too */
.journey-step-completed .journey-step-number-badge {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
}

/* Step Content */
.journey-step-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.journey-congratulations {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    margin-top: auto;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

/* Desktop: Adjust content width and spacing for wider boxes */
@media (min-width: 769px) {
    .journey-step-content {
        max-width: 100%;
    }
    
    .journey-step-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .journey-step-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .journey-step-active .journey-step-content h3 {
        font-size: 1.75rem;
    }
    
    .journey-status-badge {
        margin-bottom: 1rem;
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .journey-divider {
        margin: 1rem auto;
    }
    
    .journey-icon-circle {
        width: 120px;
        height: 120px;
        margin: 0 auto 1rem;
    }
    
    .journey-icon-large {
        font-size: 4rem;
    }
}

.journey-status-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.journey-congratulations {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    margin-top: auto;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

@media (min-width: 769px) {
    .journey-step-content {
        justify-content: flex-start;
    }
    
    .journey-status-badge,
    .journey-congratulations {
        margin-top: auto;
        margin-bottom: 0;
    }
}

.journey-status-completed {
    background-color: #4CAF50;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.journey-status-active {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #E64A19 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.journey-step-content h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

.journey-step-active .journey-step-content h3 {
    color: var(--primary-orange);
    font-size: 1.9rem;
}

.journey-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E0E0E0, transparent);
    margin: 1.5rem auto;
}

.journey-divider-active {
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    height: 4px;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

.journey-step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.journey-step-completed .journey-step-content p {
    color: #666;
}

.journey-step-content .btn {
    margin-top: 0.5rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
}

/* Connecting Lines */
.journey-connector-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.journey-line {
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #E0E0E0 0%, var(--primary-orange) 50%, #E0E0E0 100%);
    position: relative;
    opacity: 0;
    transition: height 1.5s ease-out, opacity 1.5s ease-out;
}

/* Desktop: Horizontal connector lines */
@media (min-width: 769px) {
    .journey-connector-line {
        display: none !important;
    }
    
    .journey-line {
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #E0E0E0 0%, var(--primary-orange) 50%, #E0E0E0 100%);
        transition: width 1.5s ease-out, opacity 1.5s ease-out;
    }
    
    .journey-connector-line[data-aos].aos-animate .journey-line {
        width: 60px;
        height: 3px;
        opacity: 1;
        animation: line-draw-horizontal 1.5s ease-out forwards;
    }
}

/* Trigger animation when AOS animation completes */
.journey-connector-line[data-aos].aos-animate .journey-line {
    height: 60px;
    opacity: 1;
    animation: line-draw-vertical 1.5s ease-out forwards;
}

@keyframes line-draw-vertical {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 60px;
        opacity: 1;
    }
}

@keyframes line-draw-horizontal {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 60px;
        opacity: 1;
    }
}

.journey-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(
        180deg,
        transparent,
        transparent 8px,
        rgba(255, 255, 255, 0.5) 8px,
        rgba(255, 255, 255, 0.5) 10px
    );
}

.journey-arrow-down {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-top: -5px;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.journey-arrow-right,
.journey-arrow-desktop {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    font-size: 0 !important;
    line-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-indent: -9999px !important;
}

/* Desktop: Show right arrow, hide down arrow */
@media (min-width: 769px) {
    .journey-arrow-mobile {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    .journey-arrow-right,
    .journey-arrow-desktop {
        display: block !important;
        visibility: visible !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
        font-size: 1.5rem !important;
        line-height: normal !important;
        color: var(--primary-orange);
        margin-left: -5px;
        opacity: 0;
        transition: opacity 0.5s ease-out;
    }
    
    .journey-connector-line[data-aos].aos-animate .journey-arrow-right {
        opacity: 1;
        animation: bounce-arrow-horizontal 2s ease-in-out infinite;
        animation-delay: 1.5s;
        animation-fill-mode: both;
    }
}

/* Trigger arrow animation when line animation completes */
.journey-connector-line[data-aos].aos-animate .journey-arrow-down {
    opacity: 1;
    animation: bounce-arrow-vertical 2s ease-in-out infinite;
    animation-delay: 1.5s;
    animation-fill-mode: both;
}

@keyframes bounce-arrow-vertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

@keyframes bounce-arrow-horizontal {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fitness-journey {
        padding: 3rem 0;
    }

    .welcome-header {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        line-height: 1.2;
        text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6), 0px 0px 12px rgba(0, 0, 0, 0.5), 0px 0px 20px rgba(0, 0, 0, 0.4);
    }
    
    /* Show line break on mobile */
    .welcome-header br {
        display: block;
    }
    
    .journey-title {
        font-size: 24px;
        margin-bottom: 3rem;
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4), 0px 0px 7.5px rgba(0, 0, 0, 0.3);
    }

    .client-value h2 {
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4), 0px 0px 7.5px rgba(0, 0, 0, 0.3);
    }

    .journey-timeline {
        padding: 0 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .journey-step-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    /* Hide connector lines on mobile */
    .journey-connector-line {
        display: none !important;
    }
    
    /* Show mobile toggle button */
    .journey-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding: 0.75rem 1rem;
        background-color: var(--white);
        border: 2px solid #E8E8E8;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 0;
        gap: 0;
        text-align: left;
        font-family: var(--font-body);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Ensure badge stays on the left - no gap before it */
    .journey-mobile-toggle .journey-mobile-badge {
        margin-right: 1rem !important;
        margin-left: 0 !important;
        flex-shrink: 0;
    }
    
    /* Title takes remaining space */
    .journey-mobile-toggle .journey-mobile-title {
        flex: 1;
        margin: 0;
    }
    
    /* Ensure arrow stays on the right */
    .journey-mobile-toggle .journey-mobile-arrow {
        margin-left: auto;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .journey-mobile-toggle:hover,
    .journey-mobile-toggle:focus {
        border-color: var(--primary-orange);
        box-shadow: 0 4px 12px rgba(255, 87, 34, 0.15);
        outline: none;
    }
    
    .journey-mobile-toggle[aria-expanded="true"] {
        border-color: var(--primary-orange);
        background-color: #FFF5F2;
    }
    
    /* Mobile badge styling - make all badges orange like step 3 */
    .journey-mobile-badge {
        display: flex !important;
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        flex-shrink: 0;
        margin: 0 !important;
        margin-right: 1rem !important;
        margin-left: 0 !important;
        background: var(--primary-orange) !important;
        border-color: var(--primary-orange) !important;
        color: var(--white) !important;
        box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4) !important;
        position: relative !important;
        order: 1;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Badge number styling */
    .journey-badge-number {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Badge checkmark styling - green checkmark overlay */
    .journey-badge-checkmark {
        position: absolute;
        top: -6px;
        right: -6px;
        width: 24px;
        height: 24px;
        background: var(--wellness-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 0.875rem;
        font-weight: bold;
        box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
        border: 2px solid var(--white);
    }
    
    /* Hide desktop badge on mobile */
    .journey-desktop-badge {
        display: none !important;
    }
    
    /* Mobile title styling */
    .journey-mobile-title {
        flex: 1;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-dark);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left;
        order: 2;
        margin: 0;
    }
    
    /* Mobile arrow styling */
    .journey-mobile-arrow {
        flex-shrink: 0;
        font-size: 1rem;
        color: var(--primary-orange);
        transition: transform 0.3s ease;
        margin-left: auto;
        margin-right: 0;
        order: 3;
    }
    
    .journey-mobile-toggle[aria-expanded="true"] .journey-mobile-arrow {
        transform: rotate(180deg);
    }
    
    /* Hide step content by default on mobile */
    .journey-step {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0;
        margin: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease,
                    padding 0.4s ease,
                    margin 0.4s ease;
    }
    
    /* Show step content when expanded */
    .journey-step-wrapper.active .journey-step {
        max-height: 2000px;
        opacity: 1;
        padding: 2rem 1.5rem;
        margin-top: 0.5rem;
        border-radius: 12px;
        background-color: var(--white);
        border: 2px solid #E8E8E8;
    }
    
    /* Adjust step content for mobile */
    .journey-step-wrapper.active .journey-step-content {
        max-width: 100%;
    }
    
    .journey-arrow-mobile {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
        font-size: 1.5rem !important;
        line-height: normal !important;
    }
    
    .journey-arrow-right,
    .journey-arrow-desktop {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        font-size: 0 !important;
        line-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        text-indent: -9999px !important;
    }

    .journey-step {
        padding: 2rem 1.5rem;
    }

    .journey-icon-circle {
        width: 120px;
        height: 120px;
    }

    .journey-icon-large {
        font-size: 3.5rem;
    }

    .journey-checkmark-overlay {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        top: -5px;
        right: -5px;
    }

    .journey-step-number-badge {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .journey-step-content h3 {
        font-size: 1.4rem;
    }

    .journey-step-active .journey-step-content h3 {
        font-size: 1.5rem;
    }

    .journey-step-content p {
        font-size: 0.95rem;
    }

    .journey-line {
        height: 50px;
    }

    .journey-arrow-down {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 9.91875rem 0 14.878125rem 0; /* 8.625rem * 1.15 = 9.91875rem, 12.9375rem * 1.15 = 14.878125rem */
    }

    .welcome-header {
        font-size: 1.95rem; /* 1.5rem * 1.3 = 1.95rem */
        line-height: 1.2;
        text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6), 0px 0px 12px rgba(0, 0, 0, 0.5), 0px 0px 20px rgba(0, 0, 0, 0.4);
        margin-bottom: 0.5rem;
    }

    .welcome-free-trial {
        font-size: 1.3rem; /* 1rem * 1.3 = 1.3rem */
        margin-top: 1.5rem;
        text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6), 0px 0px 12px rgba(0, 0, 0, 0.5), 0px 0px 20px rgba(0, 0, 0, 0.4);
        flex-direction: column;
        gap: 0.25rem;
    }

    .trial-separator {
        display: none;
    }

    .free-trial-button-mobile {
        margin-top: 3rem;
    }
    
    .journey-title {
        font-size: 20px;
        text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2), 0px 0px 3px rgba(0, 0, 0, 0.15);
    }

    .client-value h2 {
        text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2), 0px 0px 3px rgba(0, 0, 0, 0.15);
    }

    .training-types h2 {
        text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2), 0px 0px 3px rgba(0, 0, 0, 0.15);
    }

    .about h2 {
        text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2), 0px 0px 3px rgba(0, 0, 0, 0.15);
    }

    .section-heading {
        text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2), 0px 0px 3px rgba(0, 0, 0, 0.15);
    }

    .satisfaction-guarantee .section-heading {
        text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2), 0px 0px 3px rgba(0, 0, 0, 0.15);
    }

    .trainerize h2 {
        text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2), 0px 0px 3px rgba(0, 0, 0, 0.15);
    }

    .journey-step {
        padding: 1.5rem 1rem;
    }

    .journey-icon-circle {
        width: 100px;
        height: 100px;
    }

    .journey-icon-large {
        font-size: 3rem;
    }
}

.training-types {
    position: relative;
    padding: 4rem 0;
    background-color: var(--white);
    overflow: hidden;
}

.training-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/backgrounds/Pic1.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.training-types .container {
    position: relative;
    z-index: 1;
}

.training-types h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 0px 0px 5px rgba(0, 0, 0, 0.15);
}

.training-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Trial Programs Container - Side by side boxes */
.trial-programs-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin: 1.5rem 0;
}

@media (min-width: 769px) {
    .trial-programs-container {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .trial-programs-container .training-dropdown {
        flex: 1;
    }
}

/* Desktop: 2 columns */
@media (min-width: 769px) {
    .training-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 800px;
        padding: 0;
        isolation: isolate;
        position: relative;
    }
    
    .training-dropdown {
        contain: layout style paint;
        position: relative;
        z-index: 1;
    }
    
    .training-dropdown.active {
        z-index: 2;
    }
}

.training-dropdown {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: none;
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #E8E8E8;
    min-height: auto;
    display: flex;
    flex-direction: column;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    isolation: isolate;
    pointer-events: auto;
    z-index: 1;
}

.training-dropdown:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.15);
}

.training-dropdown.active {
    border-color: var(--primary-orange);
    background-color: #FFF5F2;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.15);
}

.training-dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem;
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 16px;
    text-align: left;
    flex-shrink: 0;
    min-height: auto;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    gap: 1rem;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.training-dropdown-toggle:hover {
    background-color: transparent;
}

.training-dropdown-toggle:focus {
    outline: none;
}

.training-dropdown.active .training-dropdown-toggle {
    background-color: transparent;
    color: var(--text-dark);
}

.training-dropdown-toggle span:first-child {
    flex: 1;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.dropdown-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: auto;
    flex-shrink: 0;
    color: var(--primary-orange);
    opacity: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.training-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary-orange);
}

/* Dropdown content - hidden by default using max-height (allows smooth transitions) */
.training-dropdown-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    width: 100%;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease,
                visibility 0s linear 0.4s;
}

/* Show dropdown content when active */
.training-dropdown.active .training-dropdown-content {
    max-height: 500px;
    padding: 0 1rem 1rem 1rem;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease 0.1s,
                visibility 0s linear 0s;
}

.training-dropdown-content p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px; /* Matches training type header */
    font-weight: normal;
    text-align: left;
    padding-top: 0.5rem;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .training-types h2 {
        text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2), 0px 0px 3px rgba(0, 0, 0, 0.15);
    }

    .training-list {
        padding: 0;
        gap: 0.75rem;
    }
    
    .training-dropdown {
        min-height: 80px;
    }
    
    .training-dropdown-toggle {
        padding: 1rem;
        min-height: 80px;
    }
    
    .training-dropdown-content {
        padding: 0 1rem;
    }
    
    .training-dropdown.active .training-dropdown-content {
        padding: 0 1rem 1rem 1rem;
    }
    
    .training-dropdown-content p {
        font-size: 16px;
        font-weight: 600;
        font-family: var(--font-body);
    }
}

/* Trainerize App Section */
.trainerize {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.trainerize h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 0px 0px 5px rgba(0, 0, 0, 0.15);
}

.trainerize-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trainerize-text {
    margin-bottom: 3rem;
}

.trainerize-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.trainerize-text h3 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    text-align: center;
}

.trainerize-features {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.trainerize-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.trainerize-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wellness-green);
    font-weight: bold;
    font-size: 20px;
}

.trainerize-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.trainerize-logo {
    text-align: center;
}

.trainerize-logo a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.trainerize-logo a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.trainerize-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.btn-trainerize {
    background-color: #FFD700;
    border: 2px solid #FFD700;
    border-bottom: 3px solid #000000;
    color: #000000;
    font-weight: 700;
    text-align: center;
}

.btn-trainerize:hover {
    background-color: #FFD700;
    border-bottom: 3px solid #000000;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Call to Action */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #E64A19 100%);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--motivational-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #E64A19;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

.btn-free-trial {
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.btn-free-trial:hover {
    background-color: #E64A19;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

/* Ensure button inherits btn styles */
.btn.btn-free-trial {
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Desktop: Show button under Satisfaction Guarantee on home page */
.free-trial-button-desktop {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    display: none;
}

@media (min-width: 769px) {
    .free-trial-button-desktop {
        display: block;
    }
}

/* Mobile: Show button under Accountability & Support */
.free-trial-button-mobile {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    display: block;
}

/* Desktop: Hide mobile button */
@media (min-width: 769px) {
    .free-trial-button-mobile {
        display: none;
    }
}

/* CTA Button Section */
.cta-button-section {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--bg-light);
}

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.required {
    color: var(--motivational-orange);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.form-success {
    background-color: var(--wellness-green);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Rates Section */
.rates {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.rate-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rate-card-fullwidth {
    max-width: 1200px;
    margin: 2rem auto 0;
    width: 100%;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.rate-card.featured {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #E64A19 100%);
    color: var(--white);
}

.rate-card.featured h3,
.rate-card.featured .rate-price {
    color: var(--white);
}

.featured-badge {
    position: static;
    background-color: var(--wellness-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.rate-price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 1.5rem 0;
}

.rate-price span {
    font-size: 18px;
    font-weight: 600;
}

.rate-price-alt {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.rate-card.featured .rate-price-alt {
    color: var(--white);
}

.package-description {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 1rem 0 1.5rem 0;
}

.rate-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.rate-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.rate-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wellness-green);
    font-weight: bold;
}

.rate-card.featured .rate-features li::before {
    color: var(--white);
}

.rates-note {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 5px;
    font-size: 14px;
}

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

.satisfaction-guarantee {
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary-orange);
    scroll-margin-top: 235px;
}

.satisfaction-guarantee .section-heading {
    color: var(--primary-orange);
    margin-bottom: 2rem;
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 0px 0px 5px rgba(0, 0, 0, 0.15);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.guarantee-image {
    flex: 0 0 300px;
    text-align: center;
}

.guarantee-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.guarantee-text:last-of-type {
    margin-bottom: 1rem;
}

.guarantee-note {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 1.5rem 0 0 0;
    font-style: italic;
}

/* Guarantee Dropdown Styles */
.guarantee-dropdown {
    margin-bottom: 3rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--primary-orange);
    overflow: hidden;
    scroll-margin-top: 100px;
}

.guarantee-dropdown-toggle {
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    transition: background-color 0.3s ease;
}

.guarantee-dropdown-toggle:hover {
    background-color: rgba(255, 87, 34, 0.05);
}

.guarantee-dropdown-toggle .section-heading {
    color: var(--primary-orange);
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 0px 0px 5px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.dropdown-arrow {
    font-size: 20px;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.guarantee-dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.guarantee-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 2rem;
}

.guarantee-dropdown-content.active {
    max-height: 2000px;
    padding: 2rem;
}

.guarantee-dropdown-content .guarantee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-dropdown-content .guarantee-text-wrapper {
    flex: 1;
    text-align: left;
}

.guarantee-dropdown-content .guarantee-image {
    flex: 0 0 300px;
    text-align: center;
}

.guarantee-dropdown-content .guarantee-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.guarantee-dropdown-content .guarantee-text:last-of-type {
    margin-bottom: 1rem;
}

.guarantee-dropdown-content .guarantee-note {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mobile responsiveness for dropdown */
@media (max-width: 768px) {
    .guarantee-dropdown-toggle {
        padding: 1.25rem 1.5rem;
    }

    .guarantee-dropdown-toggle .section-heading {
        font-size: 24px;
    }

    .guarantee-dropdown-content.active {
        padding: 1.5rem;
    }

    .guarantee-dropdown-content .guarantee-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .guarantee-dropdown-content .guarantee-image {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .guarantee-dropdown-content .guarantee-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .guarantee-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .guarantee-text-wrapper {
        text-align: center;
    }

    .guarantee-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Rates Comparison Table */
.section-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 0px 0px 5px rgba(0, 0, 0, 0.15);
}

.rates-comparison-table {
    margin-bottom: 3rem;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead {
    background-color: var(--bg-light);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-table thead tr:first-child th {
    border-bottom: none;
}

.comparison-table thead tr:last-child th {
    border-bottom: 2px solid var(--primary-orange);
}

.comparison-table th.featured-column {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #E64A19 100%);
    color: var(--text-dark);
}

.comparison-table th.featured-column .package-name-header h3,
.comparison-table th.featured-column .rate-price {
    color: var(--text-dark);
}

.comparison-table th.featured-column.package-price-header {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #E64A19 100%);
}

.package-name-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 1rem 0;
    justify-content: center;
}

.package-name-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 0;
}

.package-name-header h3 a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.package-name-header h3 a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.package-name-header:has(.featured-badge) h3 {
    font-size: 28px;
}

.package-name-header h3 a[href*="planGUID=e26d7668eb17417583af2cbb13a5dce4"] {
    font-size: 22px;
}

.featured-column .package-name-header h3 {
    color: var(--text-dark);
}

.package-price-header {
    padding: 0.5rem 1rem 1rem 1rem;
    border-top: none;
}

.package-price-header .rate-price {
    margin: 0;
}

.featured-badge {
    background-color: var(--wellness-green);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    align-self: center;
    text-align: center;
    width: fit-content;
    letter-spacing: 0.5px;
}

.badge-spacer {
    height: 38px;
    visibility: hidden;
}

.package-header .rate-price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 0;
}

.package-header .rate-price span {
    font-size: 16px;
    font-weight: 600;
}

.package-header .rate-price span.quote-text {
    font-size: 12px;
    font-weight: 600;
}

.badge-spacer {
    height: 0;
    min-height: 0;
    margin-bottom: 0;
}

.featured-column .package-header .rate-price {
    color: var(--white);
}

.featured-badge {
    background-color: var(--wellness-green);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    width: 100%;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-light);
}

.feature-column {
    text-align: left;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--bg-light);
    width: 25%;
    position: sticky;
    left: 0;
    z-index: 10;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.feature-name {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    position: sticky;
    left: 0;
    background-color: var(--bg-light);
    z-index: 9;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.check-cell {
    text-align: center;
    padding: 1rem;
    font-size: 24px;
    color: var(--wellness-green);
    font-weight: bold;
}

.check-cell:empty::before {
    content: '';
    display: none;
}

.featured-column .check-cell {
    color: var(--text-dark);
}

.featured-column .check-cell:empty::before {
    display: none;
    color: #dc3545;
}

.text-cell {
    text-align: center;
    padding: 1rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    min-width: 150px;
}

.text-cell:empty::before {
    content: '✕';
    color: #dc3545;
    font-size: 14px;
    font-weight: bold;
}

/* Mobile: Remove X marks from empty cells */
@media (max-width: 768px) {
    .comparison-table .text-cell:empty::before {
        content: '' !important;
        display: none !important;
    }
}

.featured-column .text-cell {
    color: var(--text-dark);
}

.featured-column .text-cell:empty::before {
    color: #dc3545;
}

.check-cell.featured,
.text-cell.featured {
    color: var(--text-dark);
}

.check-cell:not(:empty):not(:has(> *)) {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.featured-column .check-cell:not(:empty):not(:has(> *)) {
    color: var(--text-dark);
}

.package-column {
    width: 20%;
    vertical-align: top;
    min-width: 180px;
}

/* Testimonials */
.testimonials-display {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-name-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-demographics {
    font-size: 12px;
    color: #666;
    margin-top: 0.25rem;
    font-style: italic;
}

.testimonial-rating {
    color: #FFC107;
    font-size: 20px;
}

.testimonial-text {
    line-height: 1.8;
    color: var(--text-dark);
}

.testimonial-photo {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 5px;
    margin-top: 1rem;
}

.review-form-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.star-label {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input input[type="radio"]:checked + .star-label,
.star-label:hover,
.star-label:hover ~ .star-label {
    color: #FFC107;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.footer-section a {
    color: #ccc;
    display: inline;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo {
        height: 80px;
        width: auto;
    }
    
    .nav-brand a {
        font-size: 20px;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background-color: var(--white);
        width: 280px;
        max-width: 80%;
        text-align: left;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        padding: 5rem 2rem 2rem;
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 18px;
        padding: 0.75rem 0;
        display: block;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    /* Overlay for mobile menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    h1 {
        font-size: 32px;
    }

    .hero-title {
        font-size: 29px;
    }

    .value-grid,
    .rates-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .training-list {
        grid-template-columns: 1fr;
    }
    
    .trainerize-text p {
        font-size: 16px;
    }

    .trainerize-logo-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        min-height: 44px;
        padding: 0.75rem;
    }

    .checkbox-label {
        min-height: 44px;
        padding: 0.5rem 0;
    }

    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }

    .comparison-table {
        font-size: 9px;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        table-layout: fixed;
        max-height: none;
        overflow-y: visible;
        overflow-x: hidden;
        display: block;
    }
    
    .comparison-table thead {
        display: table;
        width: 100%;
        table-layout: auto;
        position: sticky;
        top: 0;
        z-index: 20;
        background-color: var(--bg-light);
    }
    
    .comparison-table tbody {
        display: block;
        max-height: none;
        overflow-y: visible;
        overflow-x: hidden;
    }
    
    .comparison-table tbody tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .comparison-table {
        table-layout: fixed !important;
    }

    .rates-comparison-table {
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .rates .container {
        padding: 0 8px;
        max-width: 100%;
        width: 100%;
    }

    .rates-comparison-table::-webkit-scrollbar {
        height: 6px;
    }

    .rates-comparison-table::-webkit-scrollbar-track {
        background: var(--bg-light);
        border-radius: 4px;
    }

    .rates-comparison-table::-webkit-scrollbar-thumb {
        background: var(--primary-orange);
        border-radius: 4px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.35rem 0.25rem;
        font-size: 9px;
    }

    .comparison-table .feature-name {
        font-size: 10px;
        padding: 0.35rem 0.4rem;
        line-height: 1.2;
    }

    .comparison-table .package-header h3 {
        font-size: 10px;
        line-height: 1.2;
        writing-mode: horizontal-tb;
        transform: none;
    }

    .comparison-table .package-header .rate-price {
        font-size: 11px;
    }

    /* Ensure ALL table cells align consistently - apply to ALL tbody cells */
    .comparison-table tbody tr td {
        text-align: center !important;
        vertical-align: middle !important;
        padding: 0.35rem 0.25rem !important;
        display: table-cell !important;
    }
    
    /* Override for feature-name cells (first column) */
    .comparison-table tbody tr td.feature-name {
        text-align: left !important;
    }
    
    .comparison-table .check-cell {
        font-size: 11px;
        padding: 0.35rem 0.25rem !important;
        text-align: center !important;
        vertical-align: middle !important;
        width: 22.67% !important;
    }

    .comparison-table .text-cell {
        font-size: 9px;
        padding: 0.35rem 0.25rem !important;
        white-space: normal;
        line-height: 1.2;
        word-break: break-word;
        text-align: center !important;
        vertical-align: middle !important;
        width: 22.67% !important;
    }
    
    /* Ensure empty check-cells are also centered and have same width */
    .comparison-table tbody tr td.check-cell:empty {
        text-align: center !important;
        vertical-align: middle !important;
        padding: 0.35rem 0.25rem !important;
        width: 22.67% !important;
    }
    
    /* Center content within check-cells that contain divs */
    .comparison-table tbody tr td.check-cell div {
        display: inline-flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        vertical-align: middle !important;
    }
    
    /* Keep headers horizontal but compact */
    .comparison-table thead tr:first-child th.package-column {
        height: auto;
        vertical-align: middle;
    }

    .package-header h3 {
        font-size: 10px;
        line-height: 1.2;
    }

    .package-header .rate-price {
        font-size: 11px;
    }
    
    .package-header .rate-price span {
        font-size: 8px;
    }

    .feature-name {
        padding: 0.35rem 0.4rem;
        font-size: 10px;
        line-height: 1.2;
    }

    .check-cell {
        padding: 0.35rem 0.25rem;
        font-size: 11px;
        text-align: center !important;
        vertical-align: middle !important;
    }

    .text-cell {
        font-size: 9px;
        white-space: normal;
        line-height: 1.2;
        word-break: break-word;
        text-align: center !important;
        vertical-align: middle !important;
    }
    
    /* Make feature column uniform width on mobile - all cells same fixed width */
    .comparison-table .feature-column,
    .comparison-table .feature-name {
        width: 160px !important;
        min-width: 160px !important;
        max-width: 160px !important;
        position: sticky !important;
        left: 0 !important;
        background-color: var(--bg-light) !important;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.15) !important;
        padding: 0.35rem 0.4rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
        table-layout: fixed !important;
    }
    
    .comparison-table .feature-column {
        z-index: 10 !important;
    }
    
    .comparison-table .feature-name {
        z-index: 9 !important;
    }
    
    /* Ensure table uses fixed layout for consistent column widths */
    .comparison-table {
        table-layout: fixed !important;
    }
    
    /* Package columns - set specific width */
    .comparison-table .package-column {
        width: 22.67% !important;
        min-width: 0 !important;
        max-width: 22.67% !important;
        text-align: center !important;
        vertical-align: middle !important;
    }
    
    .comparison-table tbody td.package-column {
        text-align: center !important;
        vertical-align: middle !important;
    }

    /* Remove X marks and ensure blank cells stay blank on mobile */
    .comparison-table .check-cell:empty,
    .comparison-table .text-cell:empty {
        content: '' !important;
    }

    .comparison-table .check-cell:empty::before,
    .comparison-table .check-cell:empty::after,
    .comparison-table .text-cell:empty::before,
    .comparison-table .text-cell:empty::after {
        content: '' !important;
        display: none !important;
    }

    /* Ensure empty cells have no content but maintain width */
    .comparison-table td.check-cell:empty,
    .comparison-table td.text-cell:empty {
        padding: 0.35rem 0.25rem !important;
        min-width: 0 !important;
        width: 22.67% !important;
        text-align: center !important;
        vertical-align: middle !important;
    }
    
    /* Table already has table-layout: fixed above */
    
    /* Ensure sticky positioning works in tbody rows */
    .comparison-table tbody tr .feature-column,
    .comparison-table tbody tr .feature-name {
        position: sticky !important;
        left: 0 !important;
    }
    
    .package-name-header {
        padding: 0.4rem 0.2rem;
    }
    
    .package-price-header {
        padding: 0.3rem 0.2rem 0.4rem 0.2rem;
    }
    
    .comparison-table thead tr:first-child th {
        padding: 0.4rem 0.2rem;
    }
    
    .comparison-table thead tr:last-child th {
        padding: 0.3rem 0.2rem;
    }
    
    /* Reduce row height but keep readable */
    .comparison-table tbody tr {
        height: auto;
        min-height: 35px;
    }
    
    /* Hide every other row on very small screens to reduce height */
    @media (max-width: 360px) {
        .comparison-table tbody tr:nth-child(even) {
            display: none;
        }
    }

    /* Mobile-friendly table alternative */
    .rates-comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }
    
    /* Adjust package name headers for mobile */
    .package-name-header h3 {
        font-size: 10px !important;
        line-height: 1.2;
    }
    
    .package-name-header:has(.featured-badge) h3 {
        font-size: 11px !important;
    }
    
    .package-name-header h3 a[href*="planGUID=e26d7668eb17417583af2cbb13a5dce4"] {
        font-size: 10px !important;
    }
    
    .featured-badge {
        font-size: 9px !important;
        padding: 0.25rem 0.4rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .badge-spacer {
        height: 22px !important;
    }
    
    .rate-price {
        font-size: 11px !important;
    }
    
    .rate-price span {
        font-size: 8px !important;
    }
    
    /* Reduce section spacing by 40% */
    .rates {
        padding: 1.8rem 0 !important;
    }
    
    .section-heading {
        font-size: 20px !important;
        margin-bottom: 1.2rem !important;
    }
    
    /* Custom scrollbar for table body */
    .comparison-table tbody::-webkit-scrollbar {
        width: 4px;
    }
    
    .comparison-table tbody::-webkit-scrollbar-track {
        background: var(--bg-light);
    }
    
    .comparison-table tbody::-webkit-scrollbar-thumb {
        background: var(--primary-orange);
        border-radius: 2px;
    }

    /* Mobile optimizations */
    .btn {
        min-height: 44px;
        padding: 0.875rem 2rem;
        font-size: 15px;
        touch-action: manipulation;
    }

    .section-heading {
        font-size: 26px;
        margin-bottom: 1.5rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .about,
    .client-value,
    .trainerize,
    .training-types {
        padding: 1rem 0 2.5rem 0;
    }
    
    .rates {
        padding: 2.5rem 0;
    }

    .rate-card-fullwidth {
        padding: 1.5rem;
    }

    .trainerize-content {
        flex-direction: column;
    }

    .trainerize-text {
        margin-bottom: 2rem;
    }

    .trainerize-features li {
        font-size: 15px;
        margin-bottom: 0.75rem;
    }

    .value-icon {
        font-size: 36px;
        margin-bottom: 0.75rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-card h3 {
        font-size: 16px;
        margin-bottom: 1.125rem;
    }

    .value-card ul {
        font-size: 0.9375rem;
    }

    .value-card ul li {
        font-size: 16px;
        padding: 0.375rem 0;
        padding-left: 1.125rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    .hero-title {
        font-size: 23px;
    }

    .hero-subtitle {
        font-size: 11px;
        margin: 1rem 0;
    }

    .hero h2 {
        margin-top: 1.5rem;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
    }

    .nav-logo {
        height: 100px;
    }

    .navbar {
        padding: 0.5rem 0 0.15rem 0;
    }

    .navbar.navbar-scrolled {
        padding: 0.25rem 0 0.075rem 0;
    }

    .value-card,
    .rate-card {
        padding: 1.125rem;
    }

    .value-icon {
        font-size: 28px;
        margin-bottom: 0.5625rem;
    }

    .value-card h3 {
        font-size: 16px;
        margin-bottom: 0.84375rem;
    }

    .value-card ul li {
        font-size: 16px;
        padding: 0.28125rem 0;
        padding-left: 0.84375rem;
    }

    .form-container {
        padding: 1.25rem;
    }

    .about-content p {
        font-size: 16px;
    }

    .trainerize-logo img {
        max-width: 250px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Lifestyle Carousel */
.lifestyle-carousel-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    min-height: 500px;
    text-align: center;
    display: block;
}


.lifestyle-carousel-container .carousel-track {
    display: flex;
    width: 500%;
    height: 100%;
    animation: carouselMove 23.4s linear infinite;
    will-change: transform;
}

@media (min-width: 769px) {
    .lifestyle-carousel-container .carousel-track {
        animation-duration: 26.91s;
    }
}

.lifestyle-slide-1 {
    background-image: url('../images/lifestyle/EDC.jpg');
}

.lifestyle-slide-2 {
    background-image: url('../images/lifestyle/Football.jpg');
}

.lifestyle-slide-3 {
    background-image: url('../images/lifestyle/Hiking.jpg');
}

.lifestyle-slide-4 {
    background-image: url('../images/lifestyle/Winter hiking.jpg');
}

.lifestyle-slide-5 {
    background-image: url('../images/lifestyle/Tailgate.jpg');
}

.lifestyle-carousel-container .bg-slide {
    flex: 0 0 20%;
    width: 20%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

/* Hide carousel buttons and indicators for automatic sliding carousel */
.lifestyle-carousel-container .carousel-btn,
.lifestyle-carousel-container .carousel-indicators {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-size: 2.5rem;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-orange);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: var(--primary-orange);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .lifestyle-carousel-container {
        max-width: 90%;
        width: 90%;
        padding: 0;
        min-height: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2rem;
        margin-bottom: 2rem;
        display: block;
        text-align: center;
    }
    
    .lifestyle-carousel-container .carousel-track {
        animation-duration: 23.4s;
    }
    
    .video-section .hero-image {
        max-width: 100%;
        margin: 2rem auto;
    }
    
    .video-section .hero-image iframe {
        pointer-events: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .lifestyle-carousel-container {
        min-height: 300px;
        max-width: 95%;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2rem;
        margin-bottom: 2rem;
        display: block;
        text-align: center;
    }
    
    .lifestyle-carousel-container .carousel-track {
        animation-duration: 23.4s;
    }
}

/* ============================================
   Free Resources & PDF Download Styles
   ============================================ */

/* Free Resources Section */
.free-resources-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
    min-height: 60vh;
}

.resource-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--primary-orange);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.resource-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.resource-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* PDF Cover Container */
.pdf-cover-container {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pdf-cover-image-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdf-cover-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pdf-cover-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.pdf-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    pointer-events: none;
}

.pdf-cover-image-wrapper:hover .pdf-cover-overlay {
    opacity: 1;
}

.pdf-cover-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.free-download-btn {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    min-width: 250px;
    background-color: var(--white);
    color: var(--primary-orange);
    border: 2px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.free-download-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.resource-note {
    margin-top: 1.5rem;
    color: var(--white);
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Email Form Container - Appears directly on page */
.email-form-container {
    margin-top: 3rem;
    width: 100%;
    animation: fadeInUp 0.5s ease-out;
}

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

.email-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-orange);
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    text-align: center;
}

.form-description {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.form-privacy-note {
    margin-top: 1.5rem;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

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

.modal-container {
    background-color: var(--white);
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    background-color: #f0f0f0;
    color: var(--primary-orange);
    transform: rotate(90deg);
}

.modal-content {
    padding: 3rem 2.5rem 2.5rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    text-align: center;
}

.modal-description {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* PDF Download Form Styles */
.pdf-download-form {
    margin-top: 1.5rem;
}

.pdf-download-form .form-group {
    margin-bottom: 1.5rem;
}

.pdf-download-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.pdf-download-form input[type="email"],
.pdf-download-form input[type="text"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.pdf-download-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.pdf-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 18px;
    margin-top: 1rem;
    position: relative;
}

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

.modal-privacy-note {
    margin-top: 1.5rem;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

.form-success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon-large {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--wellness-green);
    line-height: 1;
}

.form-success-message h3 {
    color: var(--wellness-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.form-success-message p {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Download Page Styles */
.pdf-download-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.download-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.download-success-message {
    background-color: var(--white);
    padding: 4rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.download-success-message .success-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--wellness-green);
    line-height: 1;
}

.download-success-message h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.download-success-message > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.download-button-container {
    margin: 2rem 0;
}

.download-btn {
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
}

.download-backup-text {
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.download-actions {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.back-link {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #E64A19;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .resource-card {
        padding: 2rem 1.5rem;
    }
    
    .resource-content h2 {
        font-size: 2rem;
    }
    
    .pdf-cover-image-wrapper {
        max-width: 100%;
    }
    
    .free-download-btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        min-width: 200px;
    }
    
    .email-form-container {
        margin-top: 2rem;
    }
    
    .email-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .modal-container {
        max-width: 95%;
        margin: 20px;
    }
    
    .modal-content {
        padding: 2.5rem 1.5rem 2rem;
    }
    
    .modal-title {
        font-size: 1.75rem;
    }
    
    .download-success-message {
        padding: 3rem 2rem;
    }
    
    .download-success-message h1 {
        font-size: 2rem;
    }
    
    .download-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .resource-card {
        padding: 1.5rem 1rem;
    }
    
    .modal-content {
        padding: 2rem 1rem 1.5rem;
    }
    
    .download-success-message {
        padding: 2rem 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .nav-toggle,
    .carousel-btn,
    .carousel-indicators {
        display: none;
    }
    
    .carousel-slide {
        display: block !important;
    }
}

