/* ================================
   RESET & BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Gold, Black & White Theme */
    --primary-color: #ffd700; /* Gold */
    --secondary-color: #ffed4e; /* Light gold */
    --accent-color: #000000; /* Black */
    --highlight-color: #ffd700; /* Gold */
    --highlight-secondary: #ffed4e; /* Light gold */
    --gold: #ffd700; /* Primary gold */
    --white: #ffffff;
    --dark-bg: #000000; /* Pure black */
    --card-bg: #1a1a1a; /* Dark gray */
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-color: #333333;
    --gold-glow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 5%;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    background: var(--dark-bg);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

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

ul {
    list-style: none;
}

/* ================================
   TYPOGRAPHY
   ================================ */
.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    color: var(--white);
    text-shadow: var(--gold-glow);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--highlight-color);
    margin-top: 15px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 0;
    text-align: center;
}

.btn-primary {
    background: var(--highlight-color);
    color: var(--dark-bg);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--highlight-secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-bg);
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--highlight-color);
    color: var(--white);
    border-color: var(--highlight-color);
}

.btn-text {
    background: none;
    color: var(--primary-color);
    padding: 8px 0;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.btn-text:hover {
    color: var(--highlight-color);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: var(--gold-glow);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    color: var(--white);
    position: relative;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    transition: var(--transition-smooth);
}

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

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

.btn-contact {
    background: var(--highlight-color);
    color: var(--dark-bg) !important;
    padding: 10px 28px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-contact:hover {
    background: var(--highlight-secondary);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.btn-contact::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.7)), 
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 52, 54, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.6), 0 0 45px rgba(255, 255, 255, 0.4);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.4);
}

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

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 215, 0, 0.8);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

/* ================================
   POP-UP MODAL
   ================================ */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: var(--card-bg);
    padding: 60px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: scaleIn 0.3s ease;
    border: 1px solid var(--border-color);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.popup-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.popup-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.5);
}

.popup-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ================================
   WHY US SECTION
   ================================ */
.why-us {
    padding: var(--section-padding);
    background: var(--dark-bg);
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    background: var(--card-bg);
    padding: 50px 30px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.35);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
    transition: var(--transition-smooth);
}

.why-card:hover .icon-box {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

.icon-box svg {
    width: 40px;
    height: 40px;
    stroke: var(--dark-bg);
}

.why-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    padding: var(--section-padding);
    background: var(--accent-color);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--card-bg);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.35);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.service-content {
    padding: 35px;
    text-align: left;
}

.service-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================
   PERSONAL TRAINING SECTION
   ================================ */
.personal-training {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.training-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.training-type-card {
    background: var(--card-bg);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    text-align: center;
}

.training-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.35);
}

.training-type-card.editable-content {
    position: relative;
}

.type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
    transition: var(--transition-smooth);
}

.training-type-card:hover .type-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

.type-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--dark-bg);
}

.training-type-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.training-type-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.training-type-card .editable-text {
    border: 2px dashed rgba(255, 215, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
}

.feature-list-small {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.feature-list-small li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-list-small li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
}

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

.trainer-card-link {
    text-decoration: none;
    color: inherit;
}

.trainer-card {
    background: var(--card-bg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.35);
}

.trainer-image {
    height: 400px;
    overflow: hidden;
}

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

.trainer-card:hover .trainer-image img {
    transform: scale(1.05);
}

.trainer-info {
    padding: 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trainer-info h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.trainer-title {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.trainer-specialty {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ================================
   MODAL
   ================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card-bg);
    padding: 50px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    border: 1px solid var(--border-color);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    color: var(--text-secondary);
    background: none;
    border: none;
    transition: var(--transition-fast);
}

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

.modal-body h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.modal-body h3 {
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 30px;
}

.modal-body img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
}

.modal-body p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

/* ================================
   MEAL PLAN SECTION
   ================================ */
.meal-plan {
    padding: var(--section-padding);
    background: var(--accent-color);
}

.meal-plan.image-right {
    background: var(--dark-bg);
}

.meal-plan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.meal-plan-text h2 {
    margin-bottom: 25px;
}

.meal-plan-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.meal-pricing h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price {
    color: var(--white);
    text-shadow: var(--gold-glow);
    font-size: 1.5rem;
    font-weight: 700;
}

.meal-plan-image {
    height: 600px;
}

.meal-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   SWIMMING SECTION
   ================================ */
.swimming {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.swimming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.swimming-text h2 {
    margin-bottom: 25px;
}

.swimming-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.swimming-pricing h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.swimming-image {
    height: 600px;
}

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

/* ================================
   PRODUCTS SECTION
   ================================ */
.products {
    padding: var(--section-padding);
    background: var(--accent-color);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.35);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.25);
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.nav-active {
    color: var(--gold) !important;
    text-shadow: var(--gold-glow);
}

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

.product-info h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 20px;
}

/* ================================
   TRANSFORMATIONS SECTION
   ================================ */
.transformations {
    padding: var(--section-padding);
    background: var(--dark-bg);
    text-align: center;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.transformation-card {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.client-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.transformation-time {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.transformation-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.photo-group {
    text-align: center;
}

.photo-label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.photo-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.photo-row img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Responsive: Mobilde 2 sütun */
@media (max-width: 768px) {
    .photo-row {
        grid-template-columns: repeat(auto-fill, minmax(calc(50% - 5px), 1fr));
    }
}

.transformation-stats {
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* ================================
   PACKAGES SECTION
   ================================ */
.packages {
    padding: var(--section-padding);
    background: var(--accent-color);
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.package-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 50px 35px;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden; /* keep size constant when overlay is open */
    display: flex;
    flex-direction: column; /* consistent vertical layout */
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.35);
}

.package-card.featured {
    border-color: rgba(255, 215, 0, 0.35);
    border-width: 3px;
    background: var(--card-bg);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.12);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    padding: 8px 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.25);
}

.package-name {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.package-price {
    margin-bottom: 35px;
}

.price-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 25px rgba(255, 255, 255, 0.4);
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.package-features {
    text-align: left;
    margin-bottom: 35px;
    flex: 1; /* push button to consistent bottom position */
}

.package-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
}

.package-details {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.96);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    overflow-y: auto;
}

.package-details.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.package-details p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.package-expand {
    margin-bottom: 0;
    position: relative;
    z-index: 2; /* keep button above overlay */
    align-self: center; /* horizontally consistent */
}

/* ================================
   VIDEO TESTIMONIALS SECTION
   ================================ */
.video-testimonials {
    padding: var(--section-padding);
    background: var(--dark-bg);
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.video-card {
    background: var(--card-bg);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.35);
}

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
    margin-left: 4px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--highlight-color);
}

.video-play-btn:hover svg {
    fill: var(--white);
}

.video-info {
    padding: 25px;
    text-align: left;
}

.video-info h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.video-modal-content {
    max-width: 1200px;
    padding: 0;
    background: #000000;
}

.video-modal-content .modal-close {
    color: var(--white);
    z-index: 10;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--accent-color);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px 35px;
    text-align: left;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.35);
}

.rating {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.testimonial-author p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 20px;
    text-align: left;
}

.contact-info h2::after {
    margin-left: 0;
}

.contact-info > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-info {
    width: 100%;
    box-sizing: border-box;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--card-bg);
    padding: 50px;
    border: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid var(--border-color);
    background: transparent;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group select {
    cursor: pointer;
    padding-top: 20px;
}

.form-group select option {
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 10px;
}

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

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--white);
    text-shadow: var(--gold-glow);
}

.form-group select + label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-group select:focus + label {
    color: var(--highlight-color);
}

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

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

/* Contact Success/Error Messages */
.contact-message {
    display: none;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 1.05rem;
    animation: slideDown 0.3s ease;
}

.contact-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid rgb(34, 197, 94);
    color: rgb(34, 197, 94);
}

.contact-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgb(239, 68, 68);
    color: rgb(239, 68, 68);
}

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

/* ================================
   FOOTER
   ================================ */
.footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

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

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li a:hover {
    color: var(--highlight-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 0;
    }
}

/* ================================
   ABOUT US PAGE
   ================================ */
.our-story,
.our-mission,
.our-vision {
    padding: var(--section-padding);
}

.our-story {
    background: var(--dark-bg);
}

.our-mission {
    background: var(--accent-color);
}

.our-vision {
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse .about-text {
    direction: ltr;
}

.about-image {
    height: 600px;
}

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

.about-text h2 {
    margin-bottom: 30px;
    text-align: left;
}

.about-text h2::after {
    margin-left: 0;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text .feature-list {
    margin-top: 30px;
    margin-bottom: 30px;
}

.our-values {
    padding: var(--section-padding);
    background: var(--accent-color);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: var(--card-bg);
    padding: 50px 30px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.35);
}

.value-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-team {
    padding: var(--section-padding);
    background: var(--dark-bg);
    text-align: center;
}

.about-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.6), 0 0 45px rgba(255, 255, 255, 0.4);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   TRAINER DETAIL PAGE
   ================================ */
.trainer-detail-hero {
    padding: 150px 0 100px;
    background: var(--dark-bg);
}

.trainer-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.trainer-detail-image {
    height: 600px;
}

.trainer-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainer-detail-info h1 {
    margin-bottom: 20px;
    text-align: left;
}

.trainer-detail-info h1::after {
    margin-left: 0;
}

.trainer-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.trainer-specialty-large {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 500;
}

.trainer-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trainer-experience {
    padding: 80px 0;
    background: var(--accent-color);
}

.experience-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.experience-item {
    background: var(--card-bg);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
}

.experience-item h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.experience-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.trainer-bio-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.trainer-bio-text {
    max-width: 900px;
    margin: 0 auto;
}

.trainer-bio-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.trainer-specialties {
    padding: 80px 0;
    background: var(--accent-color);
    text-align: center;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.specialty-card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    text-align: center;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.35);
}

.specialty-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.5rem;
    font-weight: 700;
}

.specialty-card h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.trainer-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.1));
    text-align: center;
}

.trainer-cta-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.6);
}

.trainer-cta-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

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

    .meal-plan-content,
    .swimming-content,
    .contact-wrapper,
    .about-content,
    .trainer-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .swimming-content {
        direction: rtl;
    }

    .swimming-text {
        direction: ltr;
    }

    .transformations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--gold);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 0;
        gap: 20px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .popup-content {
        padding: 40px 30px;
    }

    .popup-content h2 {
        font-size: 2rem;
    }

    /* Horizontal scrolling for 3-4 column sections on mobile */
    .why-grid,
    .services-grid,
    .products-grid,
    .trainers-grid,
    .testimonials-grid,
    .video-grid,
    .training-types,
    .values-grid,
    .specialties-grid,
    .experience-content,
    .packages-grid,
    .transformations-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px;
        padding: 0 20px 20px 20px;
        margin: 0 -20px;
    }
    
    /* Hide scrollbar */
    .why-grid::-webkit-scrollbar,
    .services-grid::-webkit-scrollbar,
    .products-grid::-webkit-scrollbar,
    .trainers-grid::-webkit-scrollbar,
    .testimonials-grid::-webkit-scrollbar,
    .video-grid::-webkit-scrollbar,
    .training-types::-webkit-scrollbar,
    .values-grid::-webkit-scrollbar,
    .specialties-grid::-webkit-scrollbar,
    .experience-content::-webkit-scrollbar,
    .packages-grid::-webkit-scrollbar,
    .transformations-grid::-webkit-scrollbar {
        display: none;
        height: 0;
        width: 0;
    }
    
    .why-grid,
    .services-grid,
    .products-grid,
    .trainers-grid,
    .testimonials-grid,
    .video-grid,
    .training-types,
    .values-grid,
    .specialties-grid,
    .experience-content,
    .packages-grid,
    .transformations-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    /* Cards take 85% width for comfortable viewing */
    .why-card,
    .service-card,
    .product-card,
    .trainer-card,
    .testimonial-card,
    .video-card,
    .training-type-card,
    .value-card,
    .specialty-card,
    .experience-item,
    .package-card,
    .transformation-card {
        min-width: calc(85vw - 20px);
        max-width: calc(85vw - 20px);
        flex: 0 0 calc(85vw - 20px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        margin-right: 0;
    }
    
    /* Smaller cards on very small screens */
    @media (max-width: 480px) {
        .why-grid,
        .services-grid,
        .products-grid,
        .trainers-grid,
        .testimonials-grid,
        .video-grid,
        .training-types,
        .values-grid,
        .specialties-grid,
        .experience-content,
        .packages-grid,
        .transformations-grid {
            gap: 15px;
            padding: 0 15px 15px 15px;
            margin: 0 -15px;
        }
        
        .why-card,
        .service-card,
        .product-card,
        .trainer-card,
        .testimonial-card,
        .video-card,
        .training-type-card,
        .value-card,
        .specialty-card,
        .experience-item,
        .package-card,
        .transformation-card {
            min-width: calc(90vw - 15px);
            max-width: calc(90vw - 15px);
            flex: 0 0 calc(90vw - 15px);
        }
    }

    .meal-plan-image,
    .swimming-image,
    .about-image,
    .trainer-detail-image {
        height: 400px;
    }

    .contact-form {
        padding: 35px;
    }

    .trainer-cta {
        flex-direction: column;
    }

    .trainer-cta .btn {
        width: 100%;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

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


    .popup-content {
        padding: 30px 20px;
    }

    .popup-content h2 {
        font-size: 1.6rem;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .transformation-photos {
        grid-template-columns: 1fr;
    }

    .photo-row img {
        height: 200px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .trainer-detail-grid {
        gap: 30px;
    }

    .trainer-detail-image {
        height: 300px;
    }

    .experience-content {
        grid-template-columns: 1fr;
    }

    .trainer-cta-section h2 {
        font-size: 1.8rem;
    }

    .trainer-cta-section p {
        font-size: 1rem;
    }
}

/* ================================
   ANDROID COMPATIBILITY FIXES
   ================================ */

/* Touch-friendly button sizes */
@media (max-width: 768px) {
    .btn, .btn-primary, .btn-secondary, .btn-outline {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
    }
}

/* Landscape orientation */
@media (orientation: landscape) and (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Fix for Android keyboard */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

