/* Base Variables */
:root {
    --bg-dark: #0d0d0d;
    --bg-card: #141414;
    --bg-darker: #050505;
    --color-red: #ed1c24;
    --color-red-hover: #c4151b;
    --text-white: #ffffff;
    --text-gray: #a3a3a3;
    --text-gray-light: #d1d1d1;
    --border-color: rgba(255, 255, 255, 0.08);

    --font-primary: 'Host Grotesk', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --border-radius: 12px;
}

/* Reset & Scaffolding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-gray-light);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-white);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography Overrides */
h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #b3b3b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* UI Elements */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 28, 36, 0.5);
}

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

.section-header .line {
    width: 60px;
    height: 4px;
    background-color: var(--color-red);
    margin: 0 auto;
    border-radius: 2px;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.left {
    transform: translateX(-40px);
}

.scroll-reveal.right {
    transform: translateX(40px);
}

.scroll-reveal.left.visible,
.scroll-reveal.right.visible {
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    display: block;
}

.desktop-nav ul {
    display: flex;
    gap: 24px;
    align-items: center;
}

.desktop-nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray-light);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.desktop-nav a:hover {
    color: var(--text-white);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-red);
    transition: var(--transition);
}

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

.badge {
    background: var(--color-red);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: top;
    margin-left: 4px;
}

.cta-btn {
    background: var(--color-red);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.cta-btn:hover {
    background: transparent;
    border-color: var(--color-red);
    color: var(--color-red);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    position: absolute;
    width: 100%;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    text-transform: uppercase;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    /* offset header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.95) 100%);
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--color-red);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content .title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

/* APP SECTION */
.app-section {
    padding: 100px 0;
    background: var(--bg-darker);
    overflow: hidden;
}

.app-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-text {
    flex: 1;
}

.app-text h2 {
    margin-bottom: 1.5rem;
}

.app-features {
    margin-top: 2rem;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.app-features i {
    color: var(--color-red);
    font-size: 1.4rem;
}

.app-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #222;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 2px #444;
    position: relative;
    transform: rotate(5deg) scale(1.05);
    /* Dynamic angle */
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: rotate(0deg) scale(1.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0f0f0f;
    border-radius: 30px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mock-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mock-logo {
    color: var(--color-red);
    font-weight: 800;
    font-size: 1.2rem;
}

.mock-user {
    width: 32px;
    height: 32px;
    background: #333;
    border-radius: 50%;
}

.mock-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.mock-card {
    background: #1a1a1a;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-card-title {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.mock-points-card {
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.2) 0%, rgba(237, 28, 36, 0.05) 100%);
    border: 1px solid rgba(237, 28, 36, 0.3);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mock-points-card span {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.mock-points-card strong {
    font-size: 2.2rem;
    color: white;
    line-height: 1;
}

.mock-booking {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.booking-date {
    color: white;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mock-btn-book {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.mock-shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.shop-item {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.shop-item img {
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.shop-item span {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: white;
    font-weight: 700;
}

/* PLAN SECTION */
.plan-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

.plan-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(237, 28, 36, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.plan-card:hover::before {
    transform: scaleX(1);
}

.plan-card .icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(237, 28, 36, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-red);
    font-size: 28px;
    transition: var(--transition);
}

.plan-card:hover .icon-wrap {
    background: var(--color-red);
    color: white;
}

.plan-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.plan-card p {
    font-size: 0.95rem;
}

/* Blue Card Variant */
.plan-card.blue-card {
    border-color: rgba(0, 153, 255, 0.2);
}

.plan-card.blue-card:hover {
    border-color: rgba(0, 153, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.2);
}

.plan-card.blue-card::before {
    background: #0099ff;
}

.plan-card.blue-card .icon-wrap {
    background: rgba(0, 153, 255, 0.1);
    color: #0099ff;
}

.plan-card.blue-card:hover .icon-wrap {
    background: #0099ff;
    color: white;
}

/* Layout Responsiveness */
@media (max-width: 992px) {
    .app-container {
        flex-direction: column;
    }

    .app-mockup {
        margin-top: 40px;
    }
}

/* TIMELINE SECTION */
.timeline-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 28px;
    width: 20px;
    height: 20px;
    background: var(--color-red);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.2);
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.timeline-info {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--color-red);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    color: white;
}

.timeline-info p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* CONDITIONS SECTION */
.conditions-section {
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.conditions-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conditions-center .icon-circle {
    width: 150px;
    height: 150px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 0 40px rgba(237, 28, 36, 0.4);
    position: relative;
    z-index: 2;
}

.conditions-center .icon-circle::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px dashed rgba(237, 28, 36, 0.5);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.condition-bubble {
    position: absolute;
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.bubble-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.condition-bubble h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.condition-bubble p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Positioning bubbles around center */
.b-1 {
    top: 10%;
    left: 0;
}

.b-2 {
    top: 10%;
    right: 0;
}

.b-3 {
    bottom: 10%;
    left: 0;
}

.b-4 {
    bottom: 10%;
    right: 0;
}

.trainers-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.team-role-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-gray-light);
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-weight: 700;
}

.placeholder-img.portrait {
    width: 100%;
    height: 100%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.trainer-card:hover .placeholder-img.portrait {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.trainers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.trainer-card {
    position: relative;
    height: 400px;
    width: calc(33.333% - 20px);
    min-width: 260px;
    max-width: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.trainer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.8) contrast(1.1);
}

.trainer-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.5) contrast(1.1);
}

.trainer-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.trainer-card:hover .trainer-info {
    transform: translateY(0);
}

.trainer-info h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.view-more {
    color: var(--color-red);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
}

.trainer-card:hover .view-more {
    opacity: 1;
}

/* MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: var(--bg-card);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

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

.modal-content {
    display: flex;
    flex-wrap: wrap;
}

.modal-img-col {
    flex: 1;
    min-width: 300px;
}

.modal-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.modal-text-col {
    flex: 1.5;
    padding: 40px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-text-col h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--color-red);
}

.modal-text-col p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Custom scrollbar for modal text */
.modal-text-col::-webkit-scrollbar {
    width: 6px;
}

.modal-text-col::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-text-col::-webkit-scrollbar-thumb {
    background: var(--color-red);
    border-radius: 4px;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.faq-question:hover {
    color: var(--color-red);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--color-red);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-gray);
    margin: 0;
}

/* KONTAKT SECTION */
.contact-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--text-white);
}

.contact-info p {
    color: var(--text-gray-light);
    font-size: 1rem;
    max-width: 500px;
}

.map-container {
    margin-top: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}



.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-red);
    transform: translateY(-2px);
    color: var(--text-white);
}

.contact-btn i {
    color: var(--color-red);
    font-size: 1.4rem;
    width: 25px;
    text-align: center;
}

.w-100 {
    width: 100%;
}

/* FOOTER */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    opacity: 0.8;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--color-red);
    color: white;
    border-color: var(--color-red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Responsive updates for all sections on Mobile */
@media (max-width: 768px) {

    /* GLOBAL OVERFLOW FIX */
    html,
    body {
        overflow-x: hidden;
        width: 100vw;
        max-width: 100%;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* VISIBILITY */
    .desktop-only {
        display: none !important;
    }

    /* HEADER */
    .desktop-nav,
    .header .cta-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* HERO */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .hero-content h2 {
        font-size: 1.05rem;
        line-height: 1.4;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    /* APP MOCKUP */
    .app-container {
        flex-direction: column;
    }

    .app-features {
        width: 100%;
    }

    .app-mockup {
        margin-top: 40px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .phone-frame {
        width: 100%;
        max-width: 320px;
        transform: rotate(0deg) scale(1);
    }

    .phone-frame:hover {
        transform: rotate(0deg) scale(1);
    }

    /* PLAN GRID */
    .plan-grid {
        grid-template-columns: 1fr;
    }

    /* TIMELINE SECTION */
    .timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }

    /* TIMELINE INFO BOX (Red Block) */
    .timeline-info {
        margin: 40px 0 0;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    /* CONDITIONS SECTION */
    .conditions-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 40px 0;
        height: auto;
        min-height: auto;
    }

    .conditions-center {
        margin-bottom: 30px;
    }

    .condition-bubble {
        position: relative;
        width: 100%;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin-bottom: 15px;
        box-sizing: border-box;
    }

    /* TEAM CARDS */
    .trainers-grid,
    .management-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-question {
        padding: 20px 15px;
        font-size: 1rem;
    }

    /* FOOTER AND CONTACT */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container {
        height: 250px;
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        gap: 15px;
        justify-content: flex-start;
    }

    .contact-btn i {
        font-size: 1.2rem;
        width: 25px; /* slightly wider to match desktop alignment */
    }

    .contact-links-container h3 {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* MODAL on Mobile */
    .modal-container {
        overflow-y: auto;
        max-height: 85vh;
    }
    .modal-content {
        flex-direction: column;
    }
    .modal-img-col img {
        min-height: 250px;
        max-height: 300px;
    }
    .modal-text-col {
        overflow-y: visible;
        max-height: none;
        padding: 20px;
    }
    .modal-close {
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.5); /* Higher contrast close button over images */
    }

    /* BUTTONS on Mobile */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        text-align: center;
        letter-spacing: 0;
    }

    .app-reg-btn {
        width: 100%;
        max-width: 320px;
        display: block;
        margin: 30px auto 0;
    }
}

.app-reg-btn {
    margin-top: 30px;
}