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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #EEEEEE;
}

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


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: none;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

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

.nav-item-with-badge {
    position: relative;
    display: inline-block;
}

/* Coming Soon Badge */
.coming-soon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffc107;
    color: #333;
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 40px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 32px;
    width: auto;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo-link:hover .logo {
    opacity: 0.8;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-menu a:hover {
    color: #008080;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-button {
    background: rgba(0, 128, 128, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    color: #ffffff !important;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

/* Language Switcher */
.language-switcher {
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #008080;
    color: #008080;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.1) 33%, transparent 40%), url('nytt.jpg');
    background-size: cover;
    background-position: 20% center;
    /* Performance optimization for mobile browsers */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}


.hero-content {
    flex: 0 0 50%;
    max-width: 50%;
    z-index: 2;
    padding-left: 10%;
    padding-right: 5%;
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    position: relative;
}

.hero-title span[data-translate] {
    font-weight: 900;
    display: inline;
    font-size: 1em;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 60px;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    max-width: 500px;
}

.mobile-break {
    display: none;
}

.hero-button {
    background: #008080;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.5);
    margin-bottom: 20px;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 128, 128, 0.7);
    background: #006666;
}

.hero-trust {
    font-size: 0.85rem;
    color: #ffffff;
    opacity: 0.7;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

.hero-image {
    flex: 1;
    position: relative;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.section-label {
    background: #008080;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #000000;
}

.about-points p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #000000;
}

.about-description {
    margin-top: 30px;
}

.about-description h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a1a1a;
}

/* Image Carousel */
.image-carousel {
    width: 75%;
    position: relative;
    margin-top: 40px;
}

.carousel-container {
    position: relative;
    border-radius: 10px;
    width: 100%;
    height: 0;
    padding-bottom: 150%; /* 3:2 aspect ratio for portrait */
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

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

.dot.active {
    background: #008080;
    transform: scale(1.2);
}

.dot:hover {
    background: #008080;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.2;
    color: #000000;
}

.services p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #008080;
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Hide pagination on desktop */
.pricing-pagination {
    display: none;
}

.pricing-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000000;
}

.pricing-hint {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
    font-weight: 400;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    align-items: stretch;
}

.pricing-cards.single-card {
    max-width: 100%;
    justify-items: center;
}

.price-card {
    background: #ffffff;
    border: none;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.badge {
    position: absolute;
    top: -8px;
    right: 24px;
    background: linear-gradient(135deg, #008080, #006666);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
}

.badge.popular {
    background: linear-gradient(135deg, #008080, #006666);
}

.badge.sport {
    background: linear-gradient(135deg, #10b981, #047857);
}

.badge.recommended {
    position: absolute;
    top: -8px;
    right: 24px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.badge.new {
    background: linear-gradient(135deg, #34D399, #10B981);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    margin-top: 0;
    color: #000000;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.price-card .description {
    color: #000000;
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: #1a1a1a;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.price span {
    font-size: 2rem;
    font-weight: 600;
}

.period {
    color: #666666;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.binding-period {
    color: #666;
    margin-bottom: 40px;
    font-size: 0.8rem;
    font-weight: 400;
    font-style: italic;
}


.note {
    font-size: 0.85rem;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.price-button {
    width: 100%;
    background: linear-gradient(135deg, #008080, #006666);
    color: #ffffff !important;
    border: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
    margin-top: auto;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 128, 128, 0.25);
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 10;
}

.price-button:hover {
    background: linear-gradient(135deg, #006666, #004d4d);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 128, 128, 0.35);
}

.price-card.featured {
    border: 2px solid rgba(0, 128, 128, 0.15);
    box-shadow: 0 12px 40px rgba(0, 128, 128, 0.12), 0 0 0 1px rgba(0, 128, 128, 0.05);
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.price-card.featured:hover {
    box-shadow: 0 20px 60px rgba(0, 128, 128, 0.18), 0 0 0 2px rgba(0, 128, 128, 0.1);
    border-color: rgba(0, 128, 128, 0.25);
    transform: translateY(-10px);
}





.nutrition-text {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    margin: 8px 0 0;
    line-height: 1.4;
    opacity: 0.9;
}

.supporting-description {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 16px 0 0;
    font-weight: 400;
}

/* Program Options Styling */
.options-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
    flex: 1;
}

.program-options {
    text-align: left;
    background: rgba(245, 245, 245, 0.8);
    padding: 20px;
    border-radius: 16px;
    margin: 24px 0;
    flex: 1;
}

.program-options h4 {
    color: #1a1a1a;
    font-size: 0.75rem;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.option-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.option-group.vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f9fa;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    position: relative;
}

.option-item:hover {
    border-color: #008080;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.12);
    transform: translateY(-2px);
}

.option-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 16px;
    height: 16px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.2s ease;
}

.option-item input[type="radio"]:checked + .option-title::before,
.option-item:has(input[type="radio"]:checked)::before {
    border-color: #008080;
    background: #008080;
    box-shadow: inset 0 0 0 4px #ffffff;
}

.option-item input[type="radio"]:checked + .option-title {
    color: #008080;
    font-weight: 600;
}

.option-item:has(input[type="radio"]:checked) {
    border-color: #008080;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.12);
}

.option-item:has(input[type="radio"]:checked) .option-title {
    color: #008080;
    font-weight: 600;
}

.option-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.85rem;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
    margin-left: 24px;
}

.option-desc {
    color: #666666;
    font-size: 0.7rem;
    line-height: 1.4;
    text-align: left;
    font-weight: 400;
    opacity: 0.9;
    margin-left: 24px;
}

/* Beginner Feature Styling */
.beginner-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
}

.feature-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
}

.feature-desc {
    color: #666666;
    font-size: 0.7rem;
    line-height: 1.4;
    text-align: left;
    font-weight: 400;
    opacity: 0.9;
}

/* Info Icon Styling */
.info-icon {
    color: #008080;
    margin-left: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-style: normal;
    transition: all 0.2s ease;
    opacity: 0.7;
    vertical-align: middle;
}

.info-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    color: #006666;
}


/* Info Modal Styling */
.info-modal-content {
    max-width: 600px;
}

.info-modal-content h2 {
    color: #008080;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.info-modal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #1a1a1a;
}

.info-modal-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.info-modal-content li {
    margin-bottom: 8px;
    color: #1a1a1a;
    line-height: 1.5;
}

/* Info modal flex layout */
.info-modal-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-modal-text {
    flex: 1;
}

.info-modal-image {
    flex-shrink: 0;
}

.info-modal-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

/* Desktop layout - image on right, text on left */
@media (min-width: 769px) {
    .info-modal-flex {
        flex-direction: row;
        gap: 30px;
        align-items: flex-start;
    }
    
    .info-modal-text {
        flex: 1.5;
    }
    
    .info-modal-image {
        flex: 1;
        max-width: 450px;
        min-width: 300px;
    }
    
    .info-modal-image img {
        width: 100%;
        max-width: none;
        height: auto;
    }
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-content .section-label {
    display: inline-block;
    background: #008080;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
}

.about-hero-content .about-points {
    margin-bottom: 30px;
}

.about-hero-content .about-points p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.philosophy {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.philosophy h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #1a1a1a;
    line-height: 1.6;
}

.training-programs {
    padding: 80px 0;
    background: #f8f9fa;
}

.training-programs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.programs-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-image {
    height: 280px;
    overflow: hidden;
}

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

/* Specific positioning for pump and aerobic images to show face better */
.program-image img[src="pump.jpg"] {
    object-position: center 20%;
}

.program-image img[src="Aerobic.jpg"] {
    object-position: center 20%;
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #008080;
}

.program-content p {
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.5;
}

.programs-cta {
    text-align: center;
    margin-top: 60px;
}

.programs-signup-btn {
    display: inline-block;
    background: #008080;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.3);
}

.programs-signup-btn:hover {
    background: #006666;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 128, 128, 0.4);
}

.nutrition-programs {
    padding: 80px 0;
    background: white;
}

.nutrition-programs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.nutrition-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #008080;
    transition: transform 0.3s ease;
}

.nutrition-card:hover {
    transform: translateY(-3px);
}

.nutrition-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #008080;
}

.nutrition-card p {
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.5;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #008080 0%, #006666 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #008080;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness for About page */
@media (max-width: 768px) {
    .about-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .philosophy h2 {
        font-size: 2rem;
    }
    
    .training-programs h2,
    .nutrition-programs h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-content {
        padding: 20px;
    }
    
    .nutrition-card {
        padding: 30px 20px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000000;
}

.contact p {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: #ffffff;
    border: 2px solid #e0e4e7;
    color: #000000;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(26, 35, 126, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #008080;
}

.contact-form button {
    background: #008080;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: #006666;
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form status messages */
.form-status {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    color: #000000;
    border-top: 1px solid #e0e4e7;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-left p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #008080;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    border: 2px solid #008080;
}

.social-link:hover {
    background: #008080;
    color: #ffffff;
    transform: translateY(-2px);
}

.instagram-icon, .phone-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* Subscription Modal */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #ffffff;
    margin: 2% auto;
    padding: 40px;
    border-radius: 20px;
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaaaaa;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #000000;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.modal-price {
    font-size: 1.2rem;
    color: #008080;
    font-weight: 600;
    margin-bottom: 30px;
}

.selected-options {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.selected-options p {
    margin: 8px 0;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e4e7;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #008080;
}

.submit-button, .cancel-button, .close-success-btn {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submit-button {
    background: linear-gradient(135deg, #008080, #006666);
    color: #ffffff;
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 128, 128, 0.3);
}

.cancel-button {
    background: #e0e4e7;
    color: #1a1a1a;
    margin-top: 20px;
}

.cancel-button:hover {
    background: #d0d4d7;
}

.error-message {
    background: #fee;
    color: #c00;
    padding: 12px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

.success-content {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #047857);
    border-radius: 50%;
    color: white;
    font-size: 48px;
    line-height: 80px;
    margin: 0 auto 30px;
}

.close-success-btn {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    max-width: 200px;
    margin: 30px auto 0;
}

/* Media Queries for Tablets and Small Desktops */
@media (max-width: 992px) {
    .navbar .container {
        padding: 0 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .lang-btn {
        width: 100px;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-image {
        height: 28px;
    }
    
    /* Mobile Hero Section */
    .hero {
        flex-direction: column;
        text-align: left;
        min-height: 100vh;
        padding: 60px 15px 300px;
        background-position: 55% 100%;
        background-attachment: scroll;
        justify-content: flex-start;
        /* Fix for Instagram browser */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
    }
    
    .hero-content {
        padding-right: 0;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 40px;
        padding-left: 10px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 3.2rem);
        line-height: 1.1;
        margin-bottom: 20px;
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
        padding: 0;
        text-align: left;
        align-self: flex-start;
        line-height: 1.3;
    }
    
    .mobile-break {
        display: block;
    }
    
    .hero-button {
        padding: 14px 30px;
        font-size: 0.9rem;
        border-radius: 30px;
        margin-bottom: 15px;
        align-self: flex-start;
    }
    
    /* Mobile About Section */
    
    .about .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .image-carousel {
        width: 100%;
        margin: 40px auto 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    /* Mobile Services */
    .services {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }
    
    .services h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 15px;
    }
    
    .services p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Mobile Pricing */
    .pricing {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }
    
    .pricing-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .pricing-hint {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .pricing-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 15px;
        padding: 0 20px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .pricing-cards::-webkit-scrollbar {
        display: none;
    }
    
    /* Instagram browser specific fixes */
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .price-card {
        padding: 20px 16px 16px;
        min-width: 300px;
        width: 300px;
        max-width: none;
        margin: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        min-height: 520px;
        display: flex;
        flex-direction: column;
    }
    
    /* Ensure beginner card appears first on mobile */
    .price-card.beginner {
        order: -1;
    }
    
    .price-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        padding-top: 12px;
    }
    
    .price {
        font-size: 1.8rem;
        margin: 12px 0 6px;
    }
    
    .description {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .nutrition-text {
        font-size: 0.75rem;
        margin: 4px 0;
    }
    
    .binding-period, .period {
        font-size: 0.75rem;
        margin: 2px 0;
    }
    
    .program-options {
        margin: 16px 0;
        padding: 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .supporting-description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin: 12px 0 0;
    }
    
    .options-container {
        flex-direction: column;
        gap: 20px;
        margin: 20px 0;
    }
    
    
    .option-item {
        padding: 14px;
    }
    
    .option-title {
        font-size: 0.85rem;
    }
    
    .option-desc {
        font-size: 0.7rem;
    }
    
    /* Hide pagination since we're not using swipe */
    .pricing-pagination {
        display: flex !important;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        padding: 0 20px;
    }
    
    .pagination-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .pagination-dot.active {
        background-color: #008080;
        transform: scale(1.2);
    }
    
    /* Mobile Badge Fixes */
    .badge {
        position: absolute;
        top: 6px;
        right: 12px;
        padding: 4px 8px;
        font-size: 0.6rem;
        border-radius: 16px;
        white-space: nowrap;
        z-index: 10;
    }
    
    .badge.popular {
        right: 8px;
        top: 6px;
    }
    
    .badge.sport {
        right: 15px;
        top: 6px;
    }
    
    .badge.recommended {
        right: 12px;
        top: 6px;
        max-width: 110px;
        font-size: 0.55rem;
    }
    
    .badge.new {
        right: 12px;
        top: 6px;
    }
    
    /* Mobile Contact */
    .contact {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }
    
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 0 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-form button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Terms link in footer */
.terms-link {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.terms-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Terms checkbox in modal */
.terms-group {
    margin-top: 20px;
    margin-bottom: 25px;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.terms-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.terms-checkbox a {
    color: #008080;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

/* Payment Information */
.payment-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.merchant-info {
    margin-bottom: 15px;
}

.merchant-info p {
    margin: 5px 0;
    color: #333;
    font-size: 0.9rem;
}

.merchant-info p strong {
    color: #000;
    font-size: 1.1rem;
}

.payment-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0;
}

/* Card Logos */
.card-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.card-logo {
    width: 60px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Repeat.is iframe integration */
#repeat-widget-container iframe {
    width: 100%;
    border: none;
    margin-top: 20px;
}

/* Adjust modal for iframe */
#payment-step .modal-content {
    max-width: 900px;
}

/* Repeat button containers */
.repeat-button-container {
    margin-top: auto;
    width: 100%;
}


.placeholder-button {
    width: 100%;
    background: linear-gradient(135deg, #008080, #006666);
    color: #ffffff;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 128, 128, 0.25);
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
}

.placeholder-button:hover {
    background: linear-gradient(135deg, #006666, #004d4d);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 128, 128, 0.35);
}

.repeat-button-container iframe {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 128, 128, 0.25);
}

