/* ThriveWell Holistic Health Coaching - Style Sheet */

/* Design System & CSS Variables */
:root {
    --primary: #e67e22; /* Calming saffron */
    --primary-hover: #d35400;
    --secondary: #112d24; /* Calming forest green */
    --accent: #ffd700; /* Warm gold */
    --bg-light: #f4f7f6; /* Soft sage grey */
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #ffffff;
    --success: #10b981;
    --error: #ef4444;
    
    /* Layout */
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px -2px rgba(17, 45, 36, 0.08);
    --shadow-hover: 0 10px 30px -5px rgba(17, 45, 36, 0.15);
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography & Mobile Scaling */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.25;
}

/* Scaled headings for responsive screen sizes using clamp */
h1 {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3vw + 0.8rem, 2.5rem);
    position: relative;
    padding-bottom: 12px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

h2.left-align::after {
    left: 0;
    transform: none;
}

h3 {
    font-size: clamp(1.2rem, 2vw + 0.6rem, 1.8rem);
}

p {
    font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.1rem);
    color: var(--text-muted);
}

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

a:hover {
    color: var(--primary-hover);
}

/* Buttons with mobile-optimized text scaling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: clamp(10px, 2vw + 6px, 14px) clamp(20px, 3vw + 10px, 32px);
    font-size: clamp(0.85rem, 0.5vw + 0.8rem, 1.05rem);
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #e67e22 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d35400 0%, var(--primary) 100%);
    box-shadow: 0 6px 18px rgba(230, 126, 34, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: #0b1f19;
    box-shadow: 0 6px 18px rgba(17, 45, 36, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #ffd700 100%);
    color: var(--secondary);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #ffc800 0%, var(--accent) 100%);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

/* Common Layout Components */
.section {
    padding: clamp(60px, 8vw, 100px) 20px;
    position: relative;
}

.section-bg-white {
    background-color: var(--bg-white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

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

.section-header p {
    margin-top: 15px;
}

/* Glassmorphism utility */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85); /* Semi-transparent white background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(17, 45, 36, 0.05);
    padding: 15px 20px;
    transition: var(--transition);
}

/* Scrolled state */
.navbar.scrolled {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95) !important; /* Solid-ish white when scrolled */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary) !important; /* Dark green brand logo text */
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-brand span {
    background: linear-gradient(135deg, #ff9f43 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header Social Media Links beside Brand Name */
.header-social-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: auto; /* Push navigation links to the right, keeping socials close to logo */
    margin-left: 15px;
}

.header-social-links a {
    display: inline-block;
    transition: transform 0.2s ease;
    line-height: 1;
}

.header-social-links a:hover {
    transform: scale(1.2);
}

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

.nav-link {
    font-weight: 700;
    color: var(--secondary) !important; /* Dark green navigation links */
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

.mobile-only-cta {
    display: none !important;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-cta {
        display: none; /* Hide CTA button on small screen navbar, keep in menu */
    }
    
    .mobile-only-cta {
        display: inline-flex !important;
        margin-top: 15px;
        width: 100%;
        max-width: 250px;
    }
}

/* Hero Section (Video Container) */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
    overflow: hidden;
}

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

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 0.85;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* 16:9 Hero Video Card */
.hero-video-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.video-wrapper-16-9 {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Enforces 16:9 ratio */
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper-16-9 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper-portrait {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.video-wrapper-portrait video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Credentials / Profile Section */
.profile-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

.profile-image-container {
    position: relative;
}

.profile-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    border: 8px solid var(--bg-white);
    display: block;
    margin: 0 auto;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
    text-align: center;
    border: 2px solid var(--accent);
}

.experience-badge h4 {
    font-size: 24px;
    color: var(--accent);
}

.experience-badge p {
    font-size: 12px;
    color: white;
}

.qualification-list {
    list-style: none;
    margin-top: 25px;
}

.qualification-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(17, 45, 36, 0.1);
}

.qualification-item:last-child {
    border-bottom: none;
}

.qualification-item i {
    color: var(--primary);
    margin-top: 4px;
}

.qualification-item h4 {
    font-size: 17px;
    color: var(--secondary);
}

.qualification-item p {
    font-size: 14px;
    margin-top: 3px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(17, 45, 36, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(230, 126, 34, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(230, 126, 34, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: white;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    flex-grow: 1;
}

/* Certifications & Achievements Section */
.certs-slider-container {
    position: relative;
    padding: 0 10px;
    margin-top: 30px;
}

.certs-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    padding: 10px 0;
    scroll-behavior: smooth;
}

.certs-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.cert-slide {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: white;
    cursor: pointer;
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .cert-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .cert-slide {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }
}

.cert-slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Cert card for separate page grid gallery */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.cert-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: white;
    cursor: pointer;
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cert-image-box {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f7f7f7;
    position: relative;
}

.cert-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cert-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 45, 36, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
}

.cert-slide:hover .cert-zoom-overlay,
.cert-card:hover .cert-zoom-overlay {
    opacity: 1;
}

/* General Slider Dot Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(17, 45, 36, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

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

/* For reviews inside dark section */
.reviews-section .dot {
    background-color: rgba(255, 255, 255, 0.3);
}

.reviews-section .dot.active {
    background-color: var(--accent);
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    transform: scale(1.05);
}

/* Reviews Slider Section */
.reviews-section {
    background-color: var(--secondary);
    color: white;
    overflow: hidden;
}

.reviews-section h2 {
    color: white;
}

.reviews-slider-container {
    position: relative;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 15px 0;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 330px;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .reviews-track {
        gap: 0;
    }
    .review-card {
        flex: 0 0 100% !important;
        scroll-snap-align: center;
        margin: 0;
    }
}

.review-text-container {
    overflow: hidden;
    position: relative;
    flex-grow: 1;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* Limits lines */
    -webkit-box-orient: vertical;
}

.review-card.expanded .review-text {
    display: block;
    overflow: visible;
}

.btn-readmore {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    outline: none;
}

.btn-readmore:hover {
    color: white;
}

.review-author {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
}

.review-stars {
    color: var(--accent);
}

/* Audio & Video Reviews Custom Players */
.media-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .media-reviews-grid {
        grid-template-columns: 1fr;
    }
}

.media-player-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.media-player-card h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Custom Audio Player */
.custom-audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 10px 20px;
    width: 100%;
}

.audio-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.audio-play-btn:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

.audio-timeline-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.audio-progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.audio-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: var(--accent);
    border-radius: 3px;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

/* Multi-step Registration Wizard */
.wizard-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: clamp(20px, 4vw, 40px);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--card-border);
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.wizard-steps::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #e2e8f0;
    z-index: 1;
}

.wizard-progress-bar {
    position: absolute;
    top: 24px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--primary);
    z-index: 2;
    transition: var(--transition);
}

.step-indicator {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 25%;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 3px solid #e2e8f0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: var(--transition);
}

.step-indicator.active .step-circle {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
}

.step-indicator.completed .step-circle {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.step-label {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.step-indicator.active .step-label,
.step-indicator.completed .step-label {
    color: var(--secondary);
}

.form-step-panel {
    display: none;
}

.form-step-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.wizard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.wizard-group {
    margin-bottom: 20px;
}

.wizard-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--secondary);
}

.wizard-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 15px;
    background-color: #fff;
    transition: var(--transition);
    outline: none;
}

.wizard-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
}

textarea.wizard-control {
    min-height: 100px;
    resize: vertical;
}

/* Checkboxes grid style */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-light);
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(17, 45, 36, 0.05);
}

.checkbox-card:hover {
    border-color: var(--primary);
    background-color: rgba(230, 126, 34, 0.02);
}

.checkbox-card input[type="checkbox"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.checkbox-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.wizard-navigation {
    margin-top: 40px;
    border-top: 1px solid var(--card-border);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
}

/* Success Form Box */
.success-message-box {
    text-align: center;
    padding: 40px 20px;
}

.success-message-box i {
    color: var(--success);
    margin-bottom: 20px;
}

.success-message-box h3 {
    margin-bottom: 12px;
}

/* Contact Info cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.contact-info-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(17, 45, 36, 0.02);
}

.contact-info-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-info-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary);
}

.contact-info-card p {
    font-size: 15px;
}

/* Footer Section */
.footer {
    background-color: #0b1f19;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 20px 30px 20px;
    font-size: 14px;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 30px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fab-pulse 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes fab-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 31, 25, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    backdrop-filter: blur(8px);
}

.lightbox-content {
    max-width: 900px;
    max-height: 80vh;
    position: relative;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    border: 4px solid white;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: white;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-download {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lightbox-download:hover {
    background-color: var(--primary-hover);
    color: white;
}

/* Scroll-based animation utility classes */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Typography & Branding Utils */
.text-orange-gradient {
    background: linear-gradient(135deg, #ff9f43 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@media (min-width: 768px) {
    .profile-content h2 {
        white-space: nowrap;
    }
}

/* Typewriter blink cursor */
#typewriter-dynamic {
    border-right: 2.5px solid var(--accent);
    padding-right: 3px;
    animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {
    from, to { border-color: transparent }
    50% { border-color: var(--accent); }
}

/* Infinite Scrolling Services Marquee */
.infinite-marquee {
    background: linear-gradient(90deg, var(--secondary) 0%, #1e4d3c 100%);
    border-top: 2.5px solid var(--accent);
    border-bottom: 2.5px solid var(--accent);
    color: white;
    overflow: hidden;
    display: flex;
    padding: 14px 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-move 35s linear infinite;
}

.marquee-list {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    padding: 0 20px;
}

.marquee-list span {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.marquee-list span i {
    color: var(--accent);
    font-size: 12px;
}

@keyframes marquee-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.qualification-list-bottom {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Social icons next to coach name */
.social-icons-name {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}
.social-icons-name a {
    display: inline-block;
    transition: transform 0.2s ease;
}
.social-icons-name a:hover {
    transform: scale(1.2);
}

/* Mobile Sticky Footer Container (Hidden by default on desktop) */
.mobile-sticky-footer {
    display: none;
}

/* Mobile Overrides (Viewport <= 768px) */
@media (max-width: 768px) {
    /* Hide WhatsApp Floating Action Button on mobile (redundant due to sticky bar) */
    .whatsapp-fab {
        display: none !important;
    }

    /* Reverted flat sticky footer layout, designed to be smaller and slimmer */
    .mobile-sticky-footer {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 50px !important; /* Slimmer height */
        background-color: var(--secondary) !important; /* Brand dark forest green */
        border-top: 2px solid var(--accent) !important; /* Saffron top border */
        z-index: 9999 !important;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2) !important;
    }

    .sticky-btn {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        color: white !important;
        text-decoration: none !important;
        font-size: 10px !important; /* Smaller text size */
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        transition: background-color 0.2s ease !important;
        gap: 2px !important; /* Smaller gap */
    }

    .sticky-btn i {
        font-size: 15px !important; /* Smaller icon size */
    }

    .sticky-register {
        background-color: var(--primary) !important; /* Saffron warm color */
    }

    .sticky-call {
        background-color: var(--secondary) !important;
        border-left: 1px solid rgba(255,255,255,0.15) !important;
        border-right: 1px solid rgba(255,255,255,0.15) !important;
    }

    .sticky-whatsapp {
        background-color: #25d366 !important; /* Official WhatsApp Green */
    }

    .sticky-btn:active {
        filter: brightness(0.9) !important;
    }

    body {
        padding-bottom: 50px !important; /* Spacing matching the slimmer height */
    }

    /* Reduce infinite marquee height & text size on mobile */
    .infinite-marquee {
        padding: 8px 0 !important;
    }
    
    .marquee-list span {
        font-size: 11px !important;
        gap: 6px !important;
    }
    
    .marquee-list span i {
        font-size: 9px !important;
    }

    /* Close the gap between marquee and founder image on mobile */
    #about {
        padding-top: 25px !important; /* Replaces large top padding to prevent weird whitespace */
    }

    /* Stack bottom credentials on mobile */
    .profile-bottom-credentials {
        margin-top: 20px !important;
        padding-top: 20px !important;
    }

    .qualification-list-bottom {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Hero Section 16:9 aspect ratio on mobile starting behind transparent header */
    .hero {
        margin-top: 0 !important; /* Starts behind header */
        height: calc(56.25vw + 75px) !important; /* Strict 100vw * 9/16 + 75px header offset = 16:9 aspect ratio */
        min-height: unset !important;
        max-height: unset !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important; /* Align content to the bottom of the video */
        align-items: center !important;
        overflow: hidden !important;
    }

    .hero-container {
        padding: 75px 15px 15px 15px !important; /* Elegant bottom padding for the 16:9 container */
        max-width: 100% !important;
        width: 100% !important;
        margin-top: auto !important; /* Push container content to the bottom */
    }

    .hero-video-bg {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        min-width: unset !important;
        min-height: unset !important;
        opacity: 0.98 !important; /* Increased mobile video opacity to 98% */
    }

    /* Hero Title & Tagline Scaling */
    .hero-content h1 {
        font-size: clamp(1.4rem, 4.5vw + 0.4rem, 1.8rem) !important;
        margin-bottom: 4px !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
    }
    
    .hero-tagline {
        font-size: clamp(0.85rem, 2.5vw + 0.3rem, 1.1rem) !important;
        margin-bottom: 12px !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
    }

    .hero-desc {
        display: none !important; /* Hide long description paragraph on mobile */
    }

    .hero-buttons {
        display: none !important; /* Hide hero section buttons on mobile viewports */
    }
}

/* Premium Brand Preloader Overlay */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary); /* Brand dark forest green #112d24 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000; /* Ensure it stays above everything, including sticky footers */
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    max-width: 400px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.preloader-logo-wrapper {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    animation: preloader-pulse 2s infinite ease-in-out;
}

.preloader-logo-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.preloader-logo-icon {
    font-size: 70px;
    color: var(--primary); /* Saffron brand color */
}

.preloader-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: preloader-fade-up 0.8s forwards 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(15px);
    animation: preloader-fade-up 0.8s forwards 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader-bar {
    width: 180px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.preloader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #ff9f43, var(--primary));
    border-radius: 4px;
    animation: preloader-loading-fill 2.0s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes preloader-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(254, 150, 0, 0));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 15px rgba(254, 150, 0, 0.4));
    }
}

@keyframes preloader-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes preloader-loading-fill {
    to {
        width: 100%;
    }
}

/* Specific Health Issues Grid */
.health-issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.issue-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(17, 45, 36, 0.03);
    transition: var(--transition);
    text-align: center;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(254, 150, 0, 0.2);
}

.issue-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(254, 150, 0, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.issue-card:hover .issue-icon {
    background-color: var(--accent);
    color: white;
    transform: rotateY(360deg);
}

.issue-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.issue-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Award Card Grid responsive layout */
@media (max-width: 768px) {
    .award-card {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 25px 20px !important;
    }
}
