/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #d58c47;
    --dark-orange: #b8753a;
    --grey: #383838;
    --brown: #4b3d32;
    --black: #161616;
    --dark-gray: #78766f;
    --light-gray: #a9a9a9;
    --white: #ffffff;
    --bg-dark: #383838;
    --bg-light: #f6f6f6;
    --text-dark: #0a0000;
    --text-light: #f5f2f2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    background-color: #383838;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.063em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-orange);
}

.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    white-space: nowrap;
}

.dropdown-caret {
    display: inline-block;
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.nav-item-dropdown:hover .dropdown-caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    list-style: none;
    padding: 12px 0;
    margin: 8px 0 0 0;
    min-width: 260px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.063em;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.dropdown-link:hover {
    color: var(--primary-orange);
    background-color: rgba(213, 140, 71, 0.05);
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.dropdown-link:hover::before {
    width: 4px;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    filter: brightness(0) saturate(100%);
}

.page-hero-icon {
    width: 100px;
    height: 100px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    filter: brightness(0) saturate(100%) invert(69%) sepia(47%) saturate(1000%) hue-rotate(349deg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%),
                url('images/google-reviews/reviews-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, rgba(22, 22, 22, 0.8) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 984px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: 'Righteous', serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--primary-orange);
    margin-bottom: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0 4px 20px rgba(213, 140, 71, 0.3),
                 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta-group .btn-primary {
    animation: none;
}

.classpass-link-container {
    align-items: center;
    justify-content: center;
    display: flex;
    transition: opacity 0.3s ease;
    margin-top: 20px;
}

.classpass-link-container:hover {
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    min-height: 56px;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--black);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--dark-orange);
    color: var(--black);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(213, 140, 71, 0.5),
                0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-map {
    background-color: var(--primary-orange);
    color: var(--black);
    margin-top: 16px;
}

.btn-map:hover {
    background-color: var(--dark-orange);
    color: var(--white);
}

.btn-text {
    background: none;
    color: var(--white);
    text-decoration: underline;
    padding: 8px 16px;
    min-height: auto;
}

.btn-text:hover {
    color: var(--light-gray);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 2px 8px rgba(188, 24, 136, 0.25);
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.35);
}

.btn-instagram .instagram-logo {
    flex-shrink: 0;
}

/* Section Styles */
section {
    padding: 56px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.section-title-light {
    color: var(--white);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 30%, var(--dark-orange) 50%, var(--primary-orange) 70%, transparent 100%);
    box-shadow: 0 2px 8px rgba(213, 140, 71, 0.3);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(213, 140, 71, 0.2) 50%, transparent 100%);
}

/* Coach Profile Card */
.coach-profile-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(213, 140, 71, 0.1);
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.coach-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border-radius: 24px 0 0 24px;
    box-shadow: 2px 0 10px rgba(213, 140, 71, 0.3);
}

.coach-profile-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%) rotate(-15deg);
    width: 400px;
    height: 400px;
    background-image: url('images/Logos/Main-Logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.coach-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(213, 140, 71, 0.2);
}

.coach-image-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.coach-image {
    width: 100%;
    height: auto;
    aspect-ratio: 0.75;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2),
                0 0 0 3px rgba(213, 140, 71, 0.15),
                0 8px 30px rgba(213, 140, 71, 0.1);
    display: block;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.coach-profile-card:hover .coach-image {
    box-shadow: 0 20px 60px rgba(213, 140, 71, 0.25),
                0 0 0 4px rgba(213, 140, 71, 0.2),
                0 12px 40px rgba(213, 140, 71, 0.15);
    transform: scale(1.02);
}

.coach-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.coach-logo-badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: -8px;
}

.coach-logo {
    height: 100px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding-right: 20px;
    filter: drop-shadow(0 2px 4px rgba(213, 140, 71, 0.2));
}

.coach-profile-card:hover .coach-logo {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(213, 140, 71, 0.3));
}

.coach-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 0;
    line-height: 1.2;
    position: relative;
    padding-bottom: 16px;
}

.coach-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border-radius: 2px;
}

.coach-bio {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Featured Articles Styles (inside coach card) */
.featured-articles {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(213, 140, 71, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.featured-articles-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-basis: 100%;
}

.featured-articles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-article-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 140px;
}

.featured-article-item:hover {
    transform: translateY(-2px);
    /* background: rgba(213, 140, 71, 0.1); */
}

.featured-article-badge {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.featured-article-item:hover .featured-article-badge {
    transform: scale(1.05);
}

.featured-article-link-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-article-item:hover .featured-article-link-text {
    color: var(--dark-orange);
}

.coach-bio strong {
    font-weight: 700;
    color: var(--primary-orange);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Instagram Reels Sections */
.instagram-reels-container {
    margin-top: 60px;
    width: 100%;
}

.reels-section {
    margin-bottom: 60px;
}

.reels-section:last-child {
    margin-bottom: 0;
}

.reels-section-title {
    font-family: 'Righteous', serif;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reels-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border-radius: 2px;
}

.reels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
    max-width: 500px;
}

.reel-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    background: #fff;
    min-height: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border: 1px solid rgba(213, 140, 71, 0.1);
}

.reel-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(213, 140, 71, 0.25),
                0 0 0 1px rgba(213, 140, 71, 0.2);
}

.reel-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 16px;
}

.reel-loading {
    color: var(--primary-orange);
    font-size: 16px;
    font-weight: 600;
    opacity: 0.7;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.reel-item .instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: transparent !important;
    box-shadow: none !important;
}

.reel-item .instagram-media iframe {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px !important;
}

@media (max-width: 968px) {
    .coach-profile-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
        max-width: 600px;
    }
    
    .coach-profile-card::after {
        width: 300px;
        height: 300px;
        right: -30px;
    }
    
    .coach-image-container {
        max-width: 280px;
    }
    
    .coach-logo-badge {
        justify-content: center;
    }
    
    .coach-logo {
        height: 45px;
    }
    
    .coach-name {
        font-size: 32px;
        text-align: center;
    }
    
    .coach-name::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .coach-bio {
        font-size: 17px;
        text-align: center;
    }

    .featured-articles {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 56px 0;
    }
    
    .coach-profile-card {
        padding: 32px 24px;
        gap: 32px;
    }
    
    .coach-profile-card::after {
        width: 250px;
        height: 250px;
        right: -20px;
        opacity: 0.02;
    }
    
    .coach-image-container {
        max-width: 250px;
    }
    
    .coach-logo {
        height: 40px;
    }
    
    .coach-name {
        font-size: 28px;
    }
    
    .coach-bio {
        font-size: 16px;
        line-height: 1.7;
    }

    .featured-articles-title {
        font-size: 16px;
    }

    .featured-article-badge {
        height: 40px;
    }

    .featured-article-link-text {
        font-size: 13px;
    }

    .featured-article-item {
        flex: 1 1 100%;
        min-width: 0;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--black);
    padding: 56px 0;
    position: relative;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

/* Star rating styles for individual reviews */
.star {
    font-size: 20px;
    color: var(--light-gray);
    line-height: 1;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s ease;
}

.star.filled {
    color: var(--primary-orange);
    text-shadow: 0 0 8px rgba(213, 140, 71, 0.6);
}

.star:hover {
    transform: scale(1.2);
}

.star.half-filled {
    color: var(--primary-orange);
    position: relative;
}

.star.half-filled::after {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
    min-height: 400px;
    align-items: stretch;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Removed quote mark */

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-card.error-message {
    grid-column: 1 / -1;
    text-align: center;
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.testimonial-header-wrapper {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-left {
    flex-shrink: 0;
    width: 120px;
}

.testimonial-right {
    flex: 1;
    min-width: 0;
}

.testimonial-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(213, 140, 71, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    display: block;
    background-color: rgba(255, 255, 255, 0.05);
}

.testimonial-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(213, 140, 71, 0.5);
    border-color: rgba(213, 140, 71, 0.6);
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(213, 140, 71, 0.4);
    border-color: rgba(213, 140, 71, 0.6);
}

/* Image Lightbox/Modal Styles */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.image-lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--primary-orange);
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    color: var(--primary-orange);
    transform: rotate(90deg);
    background-color: rgba(213, 140, 71, 0.2);
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonial-card.loading {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-skeleton {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.testimonial-author-name {
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 8px;
    padding: 8px 0;
}

.testimonial-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial-rating .star {
    font-size: 18px;
}

.testimonial-text-container {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    width: 100%;
    padding-left: 0;
    flex: 1;
}

.review-image-container {
    width: 100%;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-image {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(213, 140, 71, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

.review-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(213, 140, 71, 0.4);
    border-color: rgba(213, 140, 71, 0.6);
}

.testimonial-button-container {
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
}

.testimonial-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.google-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
}

.google-reviews-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.testimonial-view-button:hover {
    background-color: #f0f0f0;
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    border-color: #f0f0f0;
}

.google-reviews-link {
    text-align: center;
    margin-top: 40px;
}

.google-reviews-link .btn {
    background-color: var(--white);
    color: var(--black);
}

.google-reviews-link .btn:hover {
    background-color: #f0f0f0;
    color: var(--black);
}

.google-reviews-link .btn:hover {
    background-color: var(--dark-orange);
    color: var(--white);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 48px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(213, 140, 71, 0.15);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-method:hover {
    background: var(--white);
    box-shadow: 0 12px 32px rgba(213, 140, 71, 0.15);
    color: var(--text-dark);
    transform: translateY(-4px);
    border-color: rgba(213, 140, 71, 0.3);
}

.contact-method:visited {
    color: var(--text-dark);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(213, 140, 71, 0.12);
    border-radius: 50%;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
}

.contact-method-icon-instagram {
    background: linear-gradient(135deg, rgba(240, 148, 51, 0.15), rgba(188, 24, 136, 0.15)) !important;
}

.contact-method-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.contact-method-value {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.contact-form-col {
    display: flex;
    flex-direction: column;
}

.contact-form-mobile {
    display: none;
}

/* Contact page: form always visible */
.contact-page .contact-form-desktop,
.contact-form-always-visible {
    display: block !important;
}

.contact-page .contact-form-mobile {
    display: none !important;
}

.contact-form-lead {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.contact-hero-cta {
    margin-top: 24px;
    display: inline-block;
    text-decoration: none;
}

.contact-hero-cta:hover {
    transform: translateY(-2px);
}

.contact-form-desktop {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(213, 140, 71, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form h4 {
    color: var(--black);
    font-size: 24px;
    margin-bottom: 28px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.contact-form h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--black);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(213, 140, 71, 0.1);
}

.form-date-section {
    display: none;
    margin-bottom: 16px;
}

.form-date-section .form-group {
    margin-bottom: 12px;
}

.form-date-section .form-group:last-of-type {
    margin-bottom: 0;
}

.form-hint {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
    margin-top: 6px;
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--black);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(213, 140, 71, 0.1);
    background-color: var(--white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.contact-form .btn-text {
    color: var(--black);
    text-decoration: underline;
    background: transparent;
    border: none;
}

.contact-form .btn-text:hover {
    color: var(--dark-gray);
}

.contact-map {
    position: relative;
    min-height: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(213, 140, 71, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map iframe:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--grey) 0%, var(--dark-gray) 100%);
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.map-placeholder p {
    font-size: 18px;
    margin-bottom: 8px;
}

.map-address {
    font-size: 16px;
    color: var(--light-gray);
    margin-bottom: 16px;
}

/* Social Section */
.social {
    background-color: var(--grey);
    padding: 56px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.social-link {
    color: var(--primary-orange);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    transform: scale(1.1);
    color: var(--dark-orange);
}

.social-link svg {
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #161616 50%, #0a0a0a 100%);
    padding: 24px 0;
    position: relative;
    border-top: 3px solid var(--primary-orange);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 50%, transparent 100%);
    opacity: 0.5;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-text:hover {
    color: var(--primary-orange);
}

.footer-social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social-links .social-link {
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.footer-social-links .social-link:hover {
    transform: scale(1.1);
    color: var(--primary-orange);
}

.footer-social-links .social-link svg {
    display: block;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 80px);
        padding: 48px 24px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile: Make nav links visible on white menu background - no hover animations */
    .nav-menu .nav-link {
        color: var(--black);
        padding: 12px 0;
        font-size: 15px;
        display: block;
        width: 100%;
        transition: none;
        transform: none;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        color: var(--primary-orange);
        transform: none;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    /* Mobile: Flatten menu - show all links individually, hide dropdown toggles */
    .nav-item-dropdown {
        width: 100%;
        margin-bottom: 8px;
    }

    .nav-item-dropdown .dropdown-toggle {
        display: none;
    }

    .dropdown-caret {
        display: none;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        background-color: transparent;
        max-height: none;
        overflow: visible;
        list-style: none;
        transition: none !important;
    }

    .nav-item-dropdown .dropdown-menu li {
        margin: 0;
    }

    .dropdown-link {
        display: flex;
        align-items: center;
        padding: 12px 0;
        font-size: 15px;
        font-weight: 600;
        color: var(--black);
        width: 100%;
        transition: none;
        transform: none;
    }

    .dropdown-link:hover,
    .dropdown-link:active {
        color: var(--primary-orange);
        transform: none;
        background-color: transparent;
    }

    .dropdown-link::before {
        display: none;
    }

    .dropdown-link .dropdown-icon {
        margin-right: 8px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .reels-grid {
        max-width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-map iframe {
        min-height: 350px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-form-mobile {
        display: block;
    }

    .contact-form-desktop {
        display: none;
    }

    .contact-form-desktop.active {
        display: block;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    /* Quote mark removed */
    
    .testimonial-header-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-left {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 16px;
    }
    
    .testimonial-right {
        width: 100%;
        text-align: center;
    }
    
    .testimonial-image {
        max-width: 100px;
    }
    
    .testimonial-rating {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 70vh;
        padding: 100px 16px 60px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 16px;
    }

    .hero-classpass-link img {
        max-width: 160px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-social-links {
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .reels-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reels-section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .reel-item {
        min-height: 500px;
    }

    .instagram-reels-container {
        margin-top: 40px;
    }

    .reels-section {
        margin-bottom: 40px;
    }

    section {
        padding: 40px 0;
    }

    .coach-profile-card,
    .contact-content {
        gap: 32px;
    }

    .reels-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reels-section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .reel-item {
        min-height: 500px;
    }

    .instagram-reels-container {
        margin-top: 40px;
    }

    .reels-section {
        margin-bottom: 40px;
    }

    .social-links {
        gap: 24px;
    }

    .social-link svg {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .testimonial-card {
        min-height: 300px;
    }
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 38px;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 62px;
    }

    .section-title {
        font-size: 44px;
    }
}

@media (min-width: 1536px) {
    .hero-title {
        font-size: 64px;
    }

    .section-title {
        font-size: 48px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-container,
.coach-profile-card,
.testimonial-card,
.contact-content {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll behavior */
html {
    scroll-padding-top: 100px;
}

/* Page Hero Styles for Service Pages */
.page-hero {
    background: linear-gradient(135deg, var(--grey) 0%, var(--brown) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.page-hero-container {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-family: 'Righteous', serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--primary-orange);
    margin-bottom: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0 4px 20px rgba(213, 140, 71, 0.3),
                 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== FAQ Page ===== */
.faq-hero .page-hero-subtitle {
    max-width: 600px;
}

.faq-content {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.faq-grid {
    display: grid;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-orange);
    transition: box-shadow 0.3s ease;
}

.faq-category:hover {
    box-shadow: 0 12px 40px rgba(213, 140, 71, 0.12);
}

.faq-category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(213, 140, 71, 0.2);
}

.faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0 0 0 0;
}

.faq-answer ul {
    margin: 12px 0 0 20px;
    padding: 0;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer .btn {
    display: inline-block;
    margin-top: 8px;
    text-decoration: none;
}

.faq-cta {
    text-align: center;
    margin-top: 64px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(213, 140, 71, 0.08) 0%, rgba(75, 61, 50, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(213, 140, 71, 0.2);
}

.faq-cta p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .faq-category {
        padding: 28px 24px;
    }

    .faq-category-title {
        font-size: 20px;
    }

    .faq-question {
        font-size: 16px;
    }
}

/* ===== Services Page Hero (compact) ===== */
.services-hero {
    position: relative;
    padding: 100px 0 48px;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #2d2520 0%, #1f1a17 50%, #252019 100%);
    z-index: 0;
}

.services-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(213, 140, 71, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.services-hero-title {
    font-family: 'Righteous', serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 400;
    color: var(--primary-orange);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(16px);
    animation: servicesHeroFade 0.7s ease-out 0.1s forwards;
}

.services-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    animation: servicesHeroFade 0.7s ease-out 0.25s forwards;
}

.services-hero-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.services-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(213, 140, 71, 0.2);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    animation: servicesHeroFade 0.6s ease-out forwards;
}

.services-hero-icon:nth-child(1) { animation-delay: 0.4s; }
.services-hero-icon:nth-child(2) { animation-delay: 0.48s; }
.services-hero-icon:nth-child(3) { animation-delay: 0.56s; }
.services-hero-icon:nth-child(4) { animation-delay: 0.64s; }

.services-hero-icon:hover {
    transform: translateY(-4px);
    background: rgba(213, 140, 71, 0.15);
    border-color: rgba(213, 140, 71, 0.4);
}

.services-hero-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(69%) sepia(47%) saturate(1000%) hue-rotate(349deg);
    transition: filter 0.3s ease;
}

.services-hero-icon:hover img {
    filter: brightness(0) saturate(100%) invert(69%) sepia(47%) saturate(800%) hue-rotate(349deg) brightness(1.1);
}

@keyframes servicesHeroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .services-hero {
        padding: 88px 0 40px;
    }

    .services-hero-subtitle {
        font-size: 15px;
    }

    .services-hero-icon {
        width: 40px;
        height: 40px;
    }

    .services-hero-icon img {
        width: 20px;
        height: 20px;
    }
}

/* Meal Plans Section */
.meal-plans-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    overflow: visible;
}

.meal-plans-section .container {
    overflow: visible;
}

.meal-plans-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Meal Plans section - intro matching other services */
.mp-services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.mp-services-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(213, 140, 71, 0.15);
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(213, 140, 71, 0.3);
}

.mp-services-title {
    font-family: 'Righteous', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.mp-services-accent {
    color: var(--primary-orange);
}

.mp-services-copy {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-dark);
}

.mp-services-copy em {
    font-style: normal;
    color: var(--primary-orange);
    font-weight: 600;
}

.mp-services-cta {
    text-align: center;
    margin-top: 48px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-top: 24px;
}

.meal-plans-scroll-container {
    position: relative;
    margin-bottom: 60px;
    background: transparent;
    overflow: visible;
}

.meal-plans-grid {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: auto;
    padding: 100px 60px;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: transparent;
    will-change: scroll-position;
    transform: translateZ(0);
}

.meal-plans-grid::-webkit-scrollbar {
    display: none;
}

.meal-plans-grid.scrolling {
    scroll-behavior: auto;
}

.meal-plans-grid.paused {
    scroll-behavior: auto;
}

.meal-plans-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(213, 140, 71, 0.9);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.meal-plans-scroll-arrow:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(213, 140, 71, 0.4);
}

.meal-plans-scroll-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.meal-plans-scroll-arrow-left {
    left: 0;
}

.meal-plans-scroll-arrow-right {
    right: 0;
}

.meal-plans-scroll-arrow svg {
    width: 24px;
    height: 24px;
}

.meal-plan-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease,
                z-index 0.3s ease;
    border: 1px solid rgba(213, 140, 71, 0.1);
    flex: 0 0 350px;
    min-width: 350px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.meal-plan-card:hover {
    transform: scale(1.15) translateY(-10px);
    box-shadow: 0 20px 60px rgba(213, 140, 71, 0.4);
    z-index: 10;
}

.meal-plan-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.meal-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.meal-plan-card:hover .meal-plan-image img {
    transform: scale(1.1);
}

.meal-plan-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.meal-plan-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.meal-plan-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 0;
}

.meal-plan-ingredients {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    flex: 1;
}

.meal-plan-ingredients li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid rgba(213, 140, 71, 0.1);
}

.meal-plan-ingredients li:last-child {
    border-bottom: none;
}

.meal-plan-ingredients li::before {
    content: '•';
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 8px;
}

.meal-plan-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px solid rgba(213, 140, 71, 0.2);
}

.keyword-pill {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--brown);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.keyword-pill:hover {
    background-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(75, 61, 50, 0.3);
}

.keyword-pill-spicy {
    background-color: #dc2626 !important;
    color: var(--white);
}

.keyword-pill-spicy:hover {
    background-color: #b91c1c !important;
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.4);
}

.fire-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(10000%) hue-rotate(0deg);
}

.keyword-pill-gluten-free {
    background-color: var(--primary-orange) !important;
    color: var(--white);
}

.keyword-pill-gluten-free:hover {
    background-color: var(--dark-orange) !important;
    box-shadow: 0 4px 8px rgba(213, 140, 71, 0.4);
}

.wheat-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(1000%) hue-rotate(15deg);
}

.keyword-pill-low-carb {
    background-color: var(--dark-gray) !important;
    color: var(--white);
}

.keyword-pill-low-carb:hover {
    background-color: #3d3027 !important;
    box-shadow: 0 4px 8px rgba(75, 61, 50, 0.4);
}

.bread-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    filter: brightness(0) invert(1);
}

.meal-plan-calories {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: right;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid rgba(213, 140, 71, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.meal-plans-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(213, 140, 71, 0.05) 0%, rgba(75, 61, 50, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(213, 140, 71, 0.2);
}

.meal-plans-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.meal-plans-cta p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services page - subsection previews */
.services-subsection {
    border-top: 1px solid rgba(213, 140, 71, 0.15);
}

/* ===== Personal Training Section (Services page) ===== */
.pt-services-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.pt-services-section.services-subsection {
    border-top: none;
}

.pt-services-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2520 40%, #1f1f1f 100%);
    z-index: 0;
}

.pt-services-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(213, 140, 71, 0.12) 0%, transparent 50%);
    z-index: 1;
}

.pt-services-section .container {
    position: relative;
    z-index: 2;
}

.pt-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.pt-services-images {
    position: relative;
    min-height: 400px;
}

.pt-services-img-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 4/3;
    max-width: 100%;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.pt-services-img-main.pt-animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.pt-services-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pt-services-img-main:hover img {
    transform: scale(1.05);
}

.pt-services-img-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 4px rgba(213, 140, 71, 0.3);
    aspect-ratio: 4/3;
    z-index: 2;
    opacity: 0;
    transform: translate(20px, 20px);
    transition: opacity 0.7s ease-out 0.2s, transform 0.7s ease-out 0.2s;
}

.pt-services-img-accent.pt-animate-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.pt-services-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pt-services-img-accent:hover img {
    transform: scale(1.05);
}

.pt-services-content {
    color: var(--white);
}

.pt-services-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(213, 140, 71, 0.25);
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(213, 140, 71, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pt-services-badge.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-services-title {
    font-family: 'Righteous', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pt-services-title.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-services-accent {
    color: var(--primary-orange);
}

.pt-services-copy {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pt-services-copy.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-services-copy em {
    font-style: normal;
    color: var(--primary-orange);
    font-weight: 600;
}

.pt-services-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pt-services-stats.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-stat {
    display: flex;
    flex-direction: column;
}

.pt-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1.1;
}

.pt-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pt-services-cta-wrap {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pt-services-cta-wrap.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-services-cta-wrap .pt-services-cta {
    margin-bottom: 12px;
}

.pt-services-learn {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pt-services-learn:hover {
    color: var(--primary-orange);
}

.pt-services-cta:hover {
    background: var(--white) !important;
    color: var(--black) !important;
}

@media (max-width: 1023px) {
    .pt-services-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pt-services-images {
        min-height: 320px;
        order: 1;
    }

    .pt-services-content {
        order: 2;
    }

    .pt-services-img-accent {
        bottom: -16px;
        right: -16px;
        width: 50%;
    }
}

@media (max-width: 767px) {
    .pt-services-section {
        padding: 64px 0;
    }

    .pt-services-images {
        min-height: 260px;
    }

    .pt-services-img-accent {
        width: 55%;
        bottom: -12px;
        right: -12px;
    }

    .pt-services-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .pt-stat-number {
        font-size: 28px;
    }
}

/* ===== Group Classes Section (Services page) ===== */
.gc-services-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.gc-services-section.services-subsection {
    border-top: none;
}

.gc-services-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 40%, #fffbf7 100%);
    z-index: 0;
}

.gc-services-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(213, 140, 71, 0.08) 0%, transparent 55%);
    z-index: 1;
}

.gc-services-section .container {
    position: relative;
    z-index: 2;
}

.gc-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.gc-services-content {
    order: 1;
}

.gc-services-images {
    position: relative;
    min-height: 400px;
    order: 2;
}

.gc-services-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(213, 140, 71, 0.15);
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(213, 140, 71, 0.3);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gc-services-badge.gc-animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.gc-services-title {
    font-family: 'Righteous', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gc-services-title.gc-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.gc-services-accent {
    color: var(--primary-orange);
}

.gc-services-copy {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gc-services-copy.gc-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.gc-services-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gc-services-benefits.gc-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.gc-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.gc-benefit-icon {
    font-size: 22px;
    line-height: 1;
}

.gc-services-cta-wrap {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gc-services-cta-wrap.gc-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.gc-services-cta-wrap .gc-services-cta {
    margin-bottom: 12px;
}

.gc-services-learn {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
    opacity: 0.8;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.gc-services-learn:hover {
    color: var(--primary-orange);
    opacity: 1;
}

.gc-services-cta:hover {
    background: var(--dark-orange) !important;
    color: var(--black) !important;
}

/* GC Images - main on right, accent overlapping bottom-left */
.gc-services-img-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/3;
    max-width: 100%;
    margin-left: auto;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.gc-services-img-main.gc-animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.gc-services-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gc-services-img-main:hover img {
    transform: scale(1.05);
}

.gc-services-img-accent {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(255, 255, 255, 0.9);
    aspect-ratio: 4/3;
    z-index: 2;
    opacity: 0;
    transform: translate(-20px, 20px);
    transition: opacity 0.7s ease-out 0.2s, transform 0.7s ease-out 0.2s;
}

.gc-services-img-accent.gc-animate-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.gc-services-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gc-services-img-accent:hover img {
    transform: scale(1.05);
}

@media (max-width: 1023px) {
    .gc-services-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .gc-services-content {
        order: 2;
    }

    .gc-services-images {
        order: 1;
        min-height: 320px;
    }

    .gc-services-img-main {
        margin-left: 0;
    }

    .gc-services-img-accent {
        bottom: -16px;
        left: -16px;
        width: 50%;
    }
}

@media (max-width: 767px) {
    .gc-services-section {
        padding: 64px 0;
    }

    .gc-services-images {
        min-height: 260px;
    }

    .gc-services-img-accent {
        width: 55%;
        bottom: -12px;
        left: -12px;
    }

    .gc-services-benefits {
        grid-template-columns: 1fr;
    }
}

/* ===== Virtual Training Section (Services page) ===== */
.vt-services-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.vt-services-section.services-subsection {
    border-top: none;
}

.vt-services-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #252119 40%, #1f1f1f 100%);
    z-index: 0;
}

.vt-services-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(213, 140, 71, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.vt-services-section .container {
    position: relative;
    z-index: 2;
}

.vt-services-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.vt-services-content {
    color: var(--white);
}

.vt-services-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(213, 140, 71, 0.25);
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(213, 140, 71, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.vt-services-badge.vt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.vt-services-title {
    font-family: 'Righteous', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.vt-services-title.vt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.vt-services-accent {
    color: var(--primary-orange);
}

.vt-services-copy {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.vt-services-copy.vt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.vt-services-copy em {
    font-style: normal;
    color: var(--primary-orange);
    font-weight: 600;
}

.vt-services-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.vt-services-highlights.vt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.vt-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.vt-highlight-icon {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 18px;
}

.vt-services-cta-wrap {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.vt-services-cta-wrap.vt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.vt-services-cta-wrap .vt-services-cta {
    margin-bottom: 12px;
}

.vt-services-learn {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vt-services-learn:hover {
    color: var(--primary-orange);
}

.vt-services-cta:hover {
    background: var(--white) !important;
    color: var(--black) !important;
}

/* VT Images */
.vt-services-images {
    position: relative;
    min-height: 360px;
}

.vt-img-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 4/3;
    max-width: 100%;
}

.vt-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.vt-img-main:hover img {
    transform: scale(1.05);
}

.vt-img-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 4px rgba(213, 140, 71, 0.3);
    aspect-ratio: 4/3;
    z-index: 2;
}

.vt-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.vt-img-accent:hover img {
    transform: scale(1.05);
}

@media (max-width: 1023px) {
    .vt-services-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .vt-services-content {
        order: 1;
    }

    .vt-services-images {
        order: 2;
    }

    .vt-img-accent {
        bottom: -16px;
        right: -16px;
        width: 50%;
    }
}

@media (max-width: 767px) {
    .vt-services-section {
        padding: 64px 0;
    }

    .vt-services-images {
        min-height: 300px;
    }

    .vt-img-accent {
        width: 55%;
        bottom: -12px;
        right: -12px;
    }
}

.services-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-preview-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.services-preview-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-preview-points p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
}

.services-preview-points strong {
    color: var(--primary-orange);
    font-weight: 700;
}

.services-gallery-compact {
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-features-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 60px;
}

@media (max-width: 1023px) {
    .services-preview {
        grid-template-columns: 1fr;
    }

    .services-preview-image {
        order: 1;
    }

    .services-preview-points {
        order: 2;
    }

    .services-features-compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .service-gallery.services-gallery-compact {
        grid-template-columns: 1fr;
    }
}

/* Service Page Styles */
.service-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-intro {
    text-align: center;
    margin-bottom: 60px;
}

.service-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 24px;
}

.service-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Service Gallery Styles */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 4 / 3;
    background: var(--grey);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(213, 140, 71, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-feature {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-orange);
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(213, 140, 71, 0.15);
}

.service-feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.service-feature p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(213, 140, 71, 0.05) 0%, rgba(75, 61, 50, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(213, 140, 71, 0.2);
}

.service-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.service-cta p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for Service Pages */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .page-hero-subtitle {
        font-size: 18px;
    }

    .service-gallery {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .meal-plans-grid {
        gap: 24px;
        padding: 15px 50px;
    }

    .meal-plan-card {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .meal-plan-card:hover {
        transform: scale(1.1) translateY(-5px);
    }

    .meal-plans-scroll-arrow {
        width: 40px;
        height: 40px;
    }

    .meal-plans-scroll-arrow svg {
        width: 20px;
        height: 20px;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .meal-plans-cta h2,
    .service-cta h2 {
        font-size: 28px;
    }
}

/* ===== Personal Training Page ===== */
.pt-value {
    padding: 60px 0;
    background: var(--white);
}

.pt-value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.pt-value-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pt-value-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
    transform: translateY(30px);
}

.pt-value-image.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-value-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pt-value-item {
    text-align: left;
    padding: 24px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(213, 140, 71, 0.05) 0%, rgba(75, 61, 50, 0.05) 100%);
    border: 1px solid rgba(213, 140, 71, 0.15);
    transition: opacity 0.6s ease-out, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.pt-value-item.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(213, 140, 71, 0.2);
    border-color: rgba(213, 140, 71, 0.3);
}

.pt-value-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.pt-value-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pt-who {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.pt-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
}

.pt-section-title.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.pt-section-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
}

.pt-section-subtitle.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out 0.1s both;
}

.pt-who-image {
    margin-bottom: 48px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
    transform: translateY(30px);
}

.pt-who-image.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-who-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pt-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pt-who-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: opacity 0.6s ease-out, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.pt-who-card.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-who-card:nth-child(1).pt-animate-visible { transition-delay: 0.1s; }
.pt-who-card:nth-child(2).pt-animate-visible { transition-delay: 0.2s; }
.pt-who-card:nth-child(3).pt-animate-visible { transition-delay: 0.3s; }
.pt-who-card:nth-child(4).pt-animate-visible { transition-delay: 0.4s; }

.pt-who-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(213, 140, 71, 0.2);
}

.pt-who-card-highlight {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pt-who-card-highlight h3,
.pt-who-card-highlight p {
    color: var(--white) !important;
}

.pt-who-icon {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1;
}

.pt-who-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.pt-who-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.pt-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pt-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pt-feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: opacity 0.6s ease-out, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.pt-feature-card.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-feature-card:nth-child(1).pt-animate-visible { transition-delay: 0.05s; }
.pt-feature-card:nth-child(2).pt-animate-visible { transition-delay: 0.1s; }
.pt-feature-card:nth-child(3).pt-animate-visible { transition-delay: 0.15s; }
.pt-feature-card:nth-child(4).pt-animate-visible { transition-delay: 0.2s; }
.pt-feature-card:nth-child(5).pt-animate-visible { transition-delay: 0.25s; }
.pt-feature-card:nth-child(6).pt-animate-visible { transition-delay: 0.3s; }

.pt-feature-card:hover {
    transform: translateY(-6px) translateX(4px);
    box-shadow: 0 12px 40px rgba(213, 140, 71, 0.15);
}

.pt-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.pt-feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.pt-feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.pt-testimonial {
    padding: 80px 0;
    background: var(--grey);
}

.pt-testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary-orange);
    opacity: 0;
    transform: translateY(30px);
}

.pt-testimonial-card.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.pt-testimonial-card blockquote {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 24px;
}

.pt-testimonial-card cite {
    font-size: 16px;
    color: var(--primary-orange);
    font-style: normal;
    font-weight: 600;
}

.pt-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
}

.pt-cta-content {
    text-align: center;
    padding: 60px 40px;
    opacity: 0;
    transform: translateY(30px);
}

.pt-cta-content.pt-animate-visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.pt-cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.pt-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}

.pt-cta-content .btn-primary {
    background: var(--white);
    color: var(--black);
}

.pt-cta-content .btn-primary:hover {
    background: var(--black);
    color: var(--white);
}

@media (max-width: 1023px) {
    .pt-value-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pt-value-stats {
        order: 2;
    }

    .pt-value-image {
        order: 1;
    }

    .pt-who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt-who-card:nth-child(1).pt-animate-visible,
    .pt-who-card:nth-child(2).pt-animate-visible,
    .pt-who-card:nth-child(3).pt-animate-visible,
    .pt-who-card:nth-child(4).pt-animate-visible {
        transition-delay: 0.1s;
    }

    .pt-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pt-who-grid {
        grid-template-columns: 1fr;
    }

    .pt-features-grid {
        grid-template-columns: 1fr;
    }

    .pt-cta-content h2 {
        font-size: 28px;
    }
}
