/* Custom Properties */
/* Mobile Fix Applied - 2025-07-08 */
:root {
    --primary-color: #39cccc;
    --secondary-color: #3f3a36;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.15s ease;
}

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

/* Remove default text selection highlighting */
::selection {
    background: transparent;
}

::-moz-selection {
    background: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(57, 204, 204, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 204, 204, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 249, 250, 0.9) 0%,
        rgba(57, 204, 204, 0.05) 25%,
        rgba(248, 249, 250, 0.95) 50%,
        rgba(63, 58, 54, 0.03) 75%,
        rgba(248, 249, 250, 0.9) 100%
    );
    animation: gradientShift 15s ease-in-out infinite;
}

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

@keyframes gradientShift {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.7; }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #2db3b3);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Enhanced divider between sections */
.section-divider {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(57, 204, 204, 0.3) 20%, 
        rgba(57, 204, 204, 0.6) 50%, 
        rgba(57, 204, 204, 0.3) 80%, 
        transparent 100%);
}

.section-divider::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #2db3b3);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(57, 204, 204, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-image {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

/* Remove logo hover effects */
.nav-logo .nav-link {
    text-decoration: none;
    background: none !important;
    color: inherit !important;
    transform: none !important;
    padding: 0;
    border-radius: 0;
    transition: none;
    outline: none !important;
}

.nav-logo .nav-link:hover {
    background: none !important;
    color: inherit !important;
    transform: none !important;
}

.nav-logo .nav-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

.logo-image {
    transition: none;
}

.logo-image:hover {
    transform: scale(1.05);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

/* Mobile Navigation */
.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-button span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.close-button {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

@media (max-width: 768px) {
    .menu-button {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
    }

    .menu-toggle:checked ~ .nav-menu {
        right: 0;
    }

    .close-button {
        display: block;
    }

    .brand-tagline {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background: transparent;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(57, 204, 204, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(57, 204, 204, 0.3);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-subtitle p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle i {
    color: var(--primary-color);
    width: 16px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(57, 204, 204, 0.3);
}

.cta-button.primary:hover {
    background: #2db3b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 204, 204, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out 0.5s;
}

.image-container.loaded .floating-elements {
    opacity: 1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(57, 204, 204, 0.3);
}

.floating-icon:nth-child(1) {
    top: 20%;
    right: 10%;
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(2) {
    bottom: 30%;
    left: 5%;
    animation: float 3s ease-in-out 1s infinite;
}

.floating-icon:nth-child(3) {
    top: 60%;
    right: 20%;
    animation: float 3s ease-in-out 2s infinite;
}

.main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
}

.hero-photo {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(63, 58, 54, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.hero-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(57, 204, 204, 0.15), rgba(63, 58, 54, 0.1));
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.hero-fitness-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: pulse 4s ease-in-out infinite;
    transform: scale(1.1);
}

.hero-photo:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(63, 58, 54, 0.4);
}

.hero-photo:hover .hero-fitness-image {
    transform: scale(1.05);
}

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

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

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-cta {
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
        justify-content: center;
    }

    .cta-button {
        flex: 1;
        max-width: 160px;
    }

    .hero-stats {
        gap: 1rem;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.6rem;
    }
    
    .main-image {
        width: 320px;
        height: 320px;
    }
    
    .hero-photo {
        border-radius: 15px;
    }
    
    .hero-photo::before {
        border-radius: 15px;
    }
    
    .hero-fitness-image {
        border-radius: 15px;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .image-container {
        width: 320px;
        height: 320px;
        margin-bottom: 2rem;
    }

    /* On mobile: increase bottom margin of hero and top margin of next section */
    .hero {
        margin-bottom: 2rem;
    }

    .about {
        padding-top: 1.5rem;
    }

    /* Enhanced mobile divider styling */
    .section-divider {
        margin: 2.5rem 0;
    }

    .section-divider::after {
        width: 80px;
        height: 4px;
    }

    /* Reset CTA buttons for tablet - keep normal positioning */
    .hero-cta {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        background: transparent;
        backdrop-filter: none;
        border-top: none;
        padding: 0 1rem;
        z-index: auto;
        box-shadow: none;
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 3rem;
        margin-top: 2rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: auto;
        flex: 1;
    }

    main {
        padding-bottom: 0;
    }

    .trainer-silhouette {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Smaller mobile devices and larger phones like S25 Ultra */
@media (max-width: 480px) {
    .main-image {
        width: 290px;
        height: 290px;
    }
    
    .hero-photo {
        border-radius: 12px;
    }
    
    .hero-photo::before {
        border-radius: 12px;
    }
    
    .hero-fitness-image {
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }

    .image-container {
        width: 290px;
        height: 290px;
        margin-bottom: 2rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .option-card {
        margin: 0;
    }

    /* Hero CTA will be conditionally rendered by JavaScript */

    .hero-cta .cta-button {
        flex: 1;
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 12px;
        text-align: center;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        min-height: 48px;
        white-space: nowrap;
    }

    .hero-cta .cta-button.primary {
        background: var(--primary-color);
        color: white;
        box-shadow: 0 4px 15px rgba(57, 204, 204, 0.3);
        border: none;
    }

    .hero-cta .cta-button.primary:hover {
        background: #2db3b3;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(57, 204, 204, 0.4);
    }

    .hero-cta .cta-button.secondary {
        background: transparent;
        color: var(--secondary-color);
        border: 2px solid var(--secondary-color);
    }

    .hero-cta .cta-button.secondary:hover {
        background: var(--secondary-color);
        color: white;
        transform: translateY(-2px);
    }
}

/* Mobile styles that should only apply to small screens */
@media (max-width: 768px) {
    /* Add padding to main content to avoid sticky buttons */
    main {
        padding-bottom: 120px;
    }
    
    /* Reduce expectations cards for mobile */
    .expectations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .expectation-item {
        padding: 1rem 0.8rem;
        text-align: left;
    }

    .expectation-header {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 0.4rem;
    }

    .expectation-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .expectation-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0;
        line-height: 1.2;
        flex: 1;
    }

    .expectation-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .card-header {
        padding: 1.5rem 1.5rem 1rem;
        flex-wrap: wrap;
    }

    .option-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .expand-indicator {
        align-self: center;
    }

    .card-description {
        padding: 0 1.5rem 1rem;
    }

    .card-features {
        padding: 0 1.5rem 1.5rem;
    }

    .gym-partners {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .testimonial-controls {
        gap: 1rem;
    }

    .testimonial-btn {
        width: 40px;
        height: 40px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .reviews-widget-container {
        margin: 0 1rem 2rem;
        padding: 1.5rem;
    }
    
    .gym-logo-image {
        max-width: 110px;
        max-height: 55px;
    }
    
    .gym-logo {
        height: 110px;
        width: 120px;
        padding: 0.6rem;
    }
    
    .gym-partners {
        grid-template-columns: repeat(2, 120px);
        gap: 0.8rem;
    }
    
    /* Fix training options alignment */
    .training-options {
        padding: 4rem 0;
    }
    
    .training-options .container {
        padding: 0 1rem;
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    
    .option-card {
        width: 100%;
        margin: 0 auto;
        max-width: none;
        box-sizing: border-box;
    }
    
    /* Fix hero section alignment for very small screens */
    .hero {
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero .container {
        padding: 0;
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0;
    }
    
    .hero-title {
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }
    
    /* Fix all section containers for very small screens */
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    section .container {
        padding: 0;
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }
}

/* Large mobile devices (Samsung Galaxy S25 Ultra, etc.) */
@media (max-width: 600px) {
    .footer {
        padding: 2rem 1rem 6rem 1rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Ultra-small screens (iPhone SE, Galaxy S24 Ultra) */
@media (max-width: 375px) {
    /* Global container fix - minimal padding for small screens */
    .container {
        padding: 0 1rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Hero section specific fixes */
    .hero {
        padding-top: 120px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-content {
        padding: 0;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .hero-subtitle p {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    /* Training options fixes */
    .training-options {
        padding: 3rem 1rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin: 0;
        padding: 0;
    }
    
    .option-card {
        margin: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Section headers */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
        padding: 0;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        text-align: center;
        padding: 0;
    }
    
    /* Typography adjustments for better fit */
    .card-description {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1.2rem 1rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .card-header {
        padding: 1.2rem 1.2rem 0.8rem;
    }
    
    .option-card h3 {
        font-size: 1.1rem;
    }
    
    /* Footer fixes for very small screens */
    .footer {
        padding: 1.5rem 0.5rem 6rem 0.5rem;
    }
    
    .footer-content {
        padding: 0 0.5rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
        line-height: 1.3;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* About section */
    .about-section {
        padding: 4rem 1rem;
    }
    
    /* Coach section */
    .coach-section {
        padding: 4rem 1rem;
    }
    
    /* Contact section */
    .contact-section {
        padding: 4rem 1rem;
    }
    
    /* Ensure proper spacing for all sections */
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Coach text should match other sections */
    .coach-text p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1.2rem;
    }
    
    /* About text should match other sections */
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1.2rem;
    }
    
    /* Card features alignment */
    .card-features {
        padding: 0 1.2rem 1.2rem;
    }
}
}
}

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

.about-intro {
    margin-bottom: 4rem;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.trainer-photo {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    margin: 0 auto;
}

.philosophy {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.grid-image {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .about-content,
    .philosophy-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .trainer-photo {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .grid-image {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
}

/* Training Options Section */
.training-options {
    padding: 8rem 0;
    background: var(--bg-white);
    position: relative;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.option-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(57, 204, 204, 0.1);
    position: relative;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.option-card.expandable {
    cursor: pointer;
}

.card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #2db3b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(57, 204, 204, 0.3);
}

.option-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 1rem 0 1.5rem;
    flex: 1;
}

.expand-indicator {
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.option-card.expanded .expand-indicator {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.card-description {
    padding: 0 2rem 1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05rem;
}

.card-features {
    padding: 0 2rem 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.option-card.expanded .card-features {
    max-height: 500px;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.feature-list {
    display: grid;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-light);
    min-height: 24px;
}

.feature-item i {
    width: 18px;
    min-width: 18px;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-align: center;
    flex-shrink: 0;
}

.feature-item span {
    flex: 1;
    line-height: 1.4;
}

.gym-locations {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.gym-locations h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.gym-partners {
    display: grid;
    grid-template-columns: repeat(2, 140px);
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
}

.gym-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    height: 120px;
    width: 140px;
    justify-content: space-between;
}

.gym-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(57, 204, 204, 0.2);
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #2db3b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(57, 204, 204, 0.3);
}

.gym-logo-image {
    max-width: 130px;
    max-height: 65px;
    width: auto;
    height: auto;
    transition: var(--transition);
    object-fit: contain;
    flex-shrink: 0;
}

/* Create consistent logo containers */
.gym-logo {
    min-height: 140px;
}

/* Remove white background from Synergy logo */
.gym-logo[data-gym="synergy-training"] .gym-logo-image {
    background: transparent;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
}

.gym-logo p {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    font-weight: 600;
}

.location-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
}

.location-link:hover {
    text-decoration: underline;
}

/* Coach Section */
.coach-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.coach-photo {
    width: 250px;
    height: 250px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    margin: 0 auto;
}

.coach-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .coach-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .coach-photo {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
    display: none !important; /* Hidden until real reviews are available */
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.reviews-widget-container {
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(57, 204, 204, 0.1);
}

/* Style the Featurable widget */
#featurable-37a0b471-2e25-4a70-82b8-b4f678ef7205 {
    width: 100%;
    min-height: 400px;
}

.google-reviews-link {
    text-align: center;
    margin-top: 2rem;
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: var(--transition);
}

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

/* Expectations Section */
.expectations {
    padding: 8rem 0;
    background: var(--bg-white);
}

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

.expectation-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-30px);
}

.expectation-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.expectation-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.expectation-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.expectation-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.expectation-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FORCE MOBILE STYLES FOR TESTING */
.expectation-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}



@media (max-width: 480px) {
    .expectations-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.8rem !important;
    }
    
    .expectation-item {
        padding: 1rem 0.6rem !important;
        text-align: left !important;
    }
    
    .expectation-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .expectation-item h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0 !important;
        line-height: 1.2 !important;
        flex: 1 !important;
    }
    
    .expectation-item p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.contact-info {
    margin-bottom: 3rem;
}

.contact-info h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form {
    text-align: left;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.submit-button:hover {
    background: #2db3b3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.submit-button:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

/* hCaptcha styling */
.h-captcha {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

/* Floating Action Buttons for Desktop */
.floating-actions {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.floating-actions.show {
    display: flex;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: white;
    position: relative;
}

.fab-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.fab-primary {
    background: var(--primary-color);
}

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

.fab-top {
    background: linear-gradient(135deg, var(--primary-color), #2db3b3);
}

.fab-primary:hover {
    background: #2db3b3;
}

.fab-secondary:hover {
    background: #2f2a26;
}

.fab-top:hover {
    background: linear-gradient(135deg, #2db3b3, var(--primary-color));
}

/* Tooltip styling with brand colors */
.fab-button::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(57, 204, 204, 0.3);
}

.fab-button::after {
    content: '';
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--primary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

/* Individual tooltip colors matching button colors */
.fab-primary::before {
    background: var(--primary-color);
}

.fab-primary::after {
    border-left-color: var(--primary-color);
}

.fab-secondary::before {
    background: var(--secondary-color);
}

.fab-secondary::after {
    border-left-color: var(--secondary-color);
}

.fab-top::before {
    background: linear-gradient(135deg, var(--primary-color), #2db3b3);
}

.fab-top::after {
    border-left-color: var(--primary-color);
}

.fab-button:hover::before,
.fab-button:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Hide floating actions on mobile */
@media (max-width: 768px) {
    .floating-actions {
        display: none !important;
    }
}

/* Sticky CTA Buttons for Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.85rem;
    display: none; /* default hidden */
    justify-content: center;
    align-items: center;
    z-index: 999;
    gap: 0.75rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    display: flex !important;
}

.sticky-cta .cta-button {
    flex: 1;
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Hide sticky CTA on screens wider than 768px (i.e., tablets/desktops) */
@media (min-width: 769px) {
    .sticky-cta {
        display: none !important;
    }
}

/* Also hide on any screen that's not mobile portrait */
@media (orientation: landscape) and (min-height: 500px) {
    .sticky-cta {
        display: none !important;
    }
}

/* Add padding to main content to avoid sticky buttons on mobile */
@media (max-width: 768px) {
    main {
        padding-bottom: 120px;
    }
    
    /* Ensure no content is cut off on mobile */
    .container {
        padding: 0 1rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Fix section padding for mobile */
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Ensure text doesn't overflow */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: invert(1) hue-rotate(180deg) brightness(1.2);
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 6rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-logo-image {
        height: 40px;
    }
    
    .footer-text {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    margin: 20px;
    animation: slideIn 0.3s ease;
}

.modal-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.modal-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-button:hover {
    background: #2db3b3;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2db3b3;
}

/* Utility Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}
