/* --- Global Variables --- */
:root {
    --color-primary: #151349;
    --color-secondary: #151349;
    --color-accent: #FC2C06;
    --color-white: #FFFFFF;
    --color-gray-light: #F4F6F8;
    --color-gray-dark: #5F6673;
    --color-black: #02060C;
    
    --font-titles: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Anton', sans-serif;
    
    --container-width: 1200px;
    --transition: all 0.4s ease;
    --radius: 8px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --logo-height: 54px;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-white);
    transition: var(--transition);
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-titles);
    text-transform: uppercase;
    line-height: 1.1;
    transition: var(--transition);
}

h1 { font-size: 4rem; font-weight: 700; letter-spacing: -1px; }
h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

p {
    font-size: 1.1rem;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.text-accent { color: var(--color-accent); }
.text-white { color: var(--color-white); }
.bg-dark { background-color: var(--color-secondary); color: var(--color-white); }
.bg-light { background-color: var(--color-gray-light); }
.bg-accent { background-color: var(--color-accent); color: var(--color-white); }

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

.section-padding {
    padding: 6rem 0;
}

.centered { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-titles);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #E02505;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(252, 44, 6, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

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

.btn-outline-dark:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-accent);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn.large {
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* --- Base Icons --- */
i[data-lucide],
svg.lucide {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: middle;
}

/* --- Layout Utils --- */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.items-center { align-items: center; }

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(21, 19, 73, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.header-logo-official {
    height: var(--logo-height) !important;
    width: auto !important;
    filter: drop-shadow(0 0 8px rgba(252, 44, 6, 0.4));
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: var(--color-white);
    font-family: var(--font-titles);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.btn-header {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
}

.status-indicator-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-left: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #EF4444;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.status-indicator-header.open .status-dot {
    background-color: #22C55E;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: pulse-green 2s infinite;
}

.status-text {
    font-family: var(--font-titles);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
}

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle:focus-visible,
.mobile-menu-close:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* --- Mobile Nav Drawer --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 2000;
    transition: var(--transition);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    color: var(--color-white);
    font-family: var(--font-titles);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Dark Mode Toggle Button --- */
.dark-mode-toggle {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    flex-shrink: 0;
}

.dark-mode-toggle:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
}

.dark-mode-toggle:focus {
    outline: none;
}

.dark-mode-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

.dark-mode-toggle .icon-dark,
.dark-mode-toggle .icon-light {
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    transition: var(--transition);
}

.dark-mode-toggle .icon-light {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.dark-mode-toggle .icon-dark {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.dark-mode .dark-mode-toggle .icon-light {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.dark-mode .dark-mode-toggle .icon-dark {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}



/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

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

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

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(21, 19, 73, 0.9) 0%, rgba(21, 19, 73, 0.62) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text-box {
    max-width: 700px;
}

.hero-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badge {
    background-color: rgba(252, 44, 6, 0.2);
    color: var(--color-accent);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--color-accent);
    border-radius: 4px;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* --- Value Prop --- */
.section-header {
    max-width: 700px;
    margin-bottom: 4rem;
}

.section-header.centered {
    margin-left: auto;
    margin-right: auto;
}

.current-status-box {
    margin: 1.5rem 0 2rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-gray-light);
    padding: 1.5rem 2.5rem;
    border-radius: var(--radius);
    border: 1px solid #ddd;
    transition: var(--transition);
}

.status-badge {
    background-color: #EF4444;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    font-family: var(--font-titles);
    letter-spacing: 1px;
}

.current-status-box.is-open .status-badge {
    background-color: #22C55E;
}

.status-message {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
}

.card {
    background-color: var(--color-white);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

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

.card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
}

.card i {
    color: var(--color-accent);
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
}

/* --- Service Sections --- */
.service-section {
    padding: 8rem 0;
    transition: var(--transition);
}

.service-section.alternate {
    background-color: var(--color-gray-light);
    transition: var(--transition);
}

.section-tag {
    color: var(--color-accent);
    font-family: var(--font-titles);
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.service-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    transition: transform var(--transition);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(21, 19, 73, 0.62) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-list {
    margin: 2.5rem 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
}

.benefits-list i {
    color: var(--color-accent);
    width: 1.5rem;
    height: 1.5rem;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
}

.feature-pills span {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

/* --- Target Audience --- */
.target-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.target-card i, .card-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: block;
    font-family: var(--font-titles);
    font-weight: 700;
}

.target-card h3 {
    color: var(--color-white);
}

.target-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* --- Space Section --- */
.space-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.s-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.s-feature i {
    color: var(--color-accent);
}

.s-feature span {
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-titles);
}

/* --- Steps Section --- */
.steps-container {
    counter-reset: step-counter;
}

.step {
    position: relative;
    padding-top: 2rem;
}

.step-num {
    font-family: var(--font-accent);
    font-size: 3rem;
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--color-white);
}

.step p {
    color: rgba(255, 255, 255, 0.9);
}

/* --- Schedule --- */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
}

.schedule-card {
    padding: 3rem 2rem;
    background-color: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.schedule-card.highlight {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.schedule-card.highlight h3,
.schedule-card.highlight .time {
    color: var(--color-white);
}

.holiday-notice {
    display: inline-block;
    margin: 0.5rem 0 0;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(252, 44, 6, 0.25);
    border-radius: var(--radius);
    background-color: rgba(252, 44, 6, 0.08);
    color: var(--color-primary);
    font-weight: 700;
}

.time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 1rem 0;
    display: block;
}

.badge-schedule {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
    background-color: rgba(252, 44, 6, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.disclaimer {
    font-style: italic;
    font-size: 0.9rem;
}

/* --- Team Section (Redesigned) --- */

/* Group Photo */
.team-group-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(21, 19, 73, 0.15);
    margin-bottom: 3.5rem;
    max-height: 520px;
}

.team-group-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.team-group-photo:hover img {
    transform: scale(1.03);
}

.team-group-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, rgba(21, 19, 73, 0.55) 0%, transparent 100%);
    pointer-events: none;
}

/* Trainers Grid */
.team-trainers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Individual Trainer Card */
.trainer-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(21, 19, 73, 0.08);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trainer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(21, 19, 73, 0.14);
}

/* Trainer Photo */
.trainer-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.trainer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Trainer Info */
.trainer-card-info {
    padding: 1.5rem 1.25rem 1.75rem;
    text-align: center;
}

.trainer-card-info h3 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
    letter-spacing: 0.5px;
}

.trainer-role {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.trainer-card-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-gray-dark);
    margin-bottom: 0;
}

/* Responsive: Tablets */
@media (max-width: 1024px) {
    .team-trainers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-group-photo {
        max-height: 400px;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .team-trainers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-group-photo {
        border-radius: 12px;
        max-height: 300px;
        margin-bottom: 2.5rem;
    }

    .trainer-card {
        border-radius: 12px;
    }

    .trainer-card-img {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 480px) {
    .team-group-photo {
        max-height: 240px;
    }

    .trainer-card-info {
        padding: 1.25rem 1rem 1.5rem;
    }

    .trainer-card-info h3 {
        font-size: 1.3rem;
    }
}

/* --- Testimonials --- */
.google-rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.google-rating-summary strong {
    font-size: 2.5rem;
    color: var(--color-primary);
    font-family: var(--font-accent);
}

.google-rating-summary .stars-summary {
    display: flex;
    gap: 4px;
}

.google-rating-summary .stars-summary i,
.google-rating-summary .stars-summary svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-accent);
    fill: var(--color-accent);
}

.google-rating-summary small {
    color: var(--color-gray-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.review-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    width: 1rem;
    height: 1rem;
    color: #ddd;
}

.stars i.fill-accent,
.stars svg.fill-accent {
    color: var(--color-accent);
    fill: var(--color-accent);
}

.review-date {
    font-size: 0.8rem;
    color: var(--color-gray-dark);
}

.review-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.review-author strong {
    display: block;
    font-family: var(--font-titles);
    text-transform: uppercase;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.verified {
    font-size: 0.75rem;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.reviews-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    background-color: rgba(21, 19, 73, 0.05);
    border-radius: var(--radius);
    border: 2px dashed rgba(21, 19, 73, 0.1);
}

.rating-summary-card {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.rating-value {
    font-family: var(--font-accent);
    font-size: 5rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    margin-bottom: 1rem;
}

.rating-stars i {
    width: 2rem;
    height: 2rem;
    color: var(--color-accent);
    fill: var(--color-accent);
}

.rating-count {
    font-weight: 700;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 769px) {
    .contact-actions {
        flex-direction: row;
    }
    
    .contact-actions .btn {
        flex: 1;
    }
}

/* --- Contact --- */
.contact-methods {
    margin: 3rem 0;
}

.c-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.c-method i {
    color: var(--color-accent);
    width: 2rem;
    height: 2rem;
}

.c-method i, 
.c-method svg {
    width: 2.2rem !important;
    height: 2.2rem !important;
    margin-right: 1.5rem;
    flex-shrink: 0;
    display: inline-block !important;
}

.c-method svg.lucide-message-circle,
.c-method .lucide-message-circle {
    stroke: #25D366 !important;
    color: #25D366 !important;
}

.c-method svg.lucide-instagram,
.c-method .lucide-instagram {
    stroke: #E1306C !important;
    color: #E1306C !important;
}

.c-method svg.lucide-map-pin,
.c-method .lucide-map-pin {
    stroke: var(--color-accent) !important;
    color: var(--color-accent) !important;
}

.c-method h4 {
    margin-bottom: 0.2rem;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--color-gray-light);
    min-height: 450px;
    position: relative;
    box-shadow: var(--shadow);
}

.map-embed {
    width: 100%;
    min-height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--color-gray-light);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

@media (max-width: 768px) {
    .map-embed,
    .map-embed iframe {
        height: 360px;
        min-height: 360px;
    }
}

/* --- Contact Form --- */
.contact-form-container {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-form-container h3 {
    margin-bottom: 2rem;
    color: var(--color-primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.w-full {
    width: 100%;
}

/* --- Footer --- */
footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    transition: var(--transition);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-official {
    height: var(--logo-height) !important;
    width: auto !important;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 12px rgba(252, 44, 6, 0.4));
}

.footer-email {
    margin-top: 1rem;
    font-weight: 600;
}

.footer-email a {
    color: var(--color-accent);
}

.footer-email a:hover {
    text-decoration: underline;
}

.footer-links ul {
    display: flex;
    gap: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.footer-social a:hover {
    background-color: var(--color-accent);
}

.footer-social a svg.lucide-instagram,
.footer-social a .lucide-instagram {
    stroke: #E1306C !important;
    color: #E1306C !important;
}

.footer-social a svg.lucide-message-circle,
.footer-social a .lucide-message-circle {
    stroke: #25D366 !important;
    color: #25D366 !important;
}

.footer-social a svg,
.footer-social a i {
    width: 1.8rem !important;
    height: 1.8rem !important;
}

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

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition);
}

.whatsapp-float.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    width: 1.8rem;
    height: 1.8rem;
    fill: white;
}

.whatsapp-float.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5) translateY(20px);
}

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
section[id] {
    scroll-margin-top: 5rem;
}

@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.2rem; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    header {
        background-color: rgba(21, 19, 73, 0.95);
        padding: 1rem 0;
    }

    .nav-links, .btn-header { display: none; }
    .dark-mode-toggle { margin-left: auto; margin-right: 1rem; }
    .mobile-menu-toggle { display: block; }
    
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 1.8rem; }

    .hero { height: auto; padding: 10rem 0 6rem; text-align: center; }
    .hero-badges { justify-content: center; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { max-width: 320px; width: 100%; text-align: center; }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .footer-brand {
        align-items: center;
    }

    .header-logo-official {
        height: 40px !important;
    }
    
    .footer-logo-official {
        height: 50px !important;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-links ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social a {
        width: 2.8rem;
        height: 2.8rem;
    }

    .footer-bottom {
        margin-top: 1rem;
    }

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

    .section-padding {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero { padding: 8rem 0 4rem; }
    .hero-text-box p { font-size: 0.95rem; }
    .badge { font-size: 0.65rem; padding: 0.3rem 0.8rem; }
    
    .section-padding {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 360px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    
    .hero { padding: 7rem 0 3rem; }
}

/* --- Contact Link Styles --- */
.c-method a {
    color: var(--color-accent);
    font-weight: 700;
    text-decoration: none;
}

.c-method a:hover {
    text-decoration: underline;
}

.contact-separator {
    color: var(--color-gray-dark);
    margin: 0 0.35rem;
}

/* --- SEO Local Block --- */
.seo-local {
    background-color: var(--color-primary);
    padding: 4rem 0;
    transition: var(--transition);
}

.seo-local-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.seo-local-content h2 {
    font-family: var(--font-titles);
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.seo-local-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
}

.seo-local-content strong {
    color: var(--color-accent);
}

/* =========================================
   DARK MODE OVERRIDES
   ========================================= */

body.dark-mode {
    background-color: #151349;
    color: #E8ECF1;
}

/* --- Global Text --- */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
    color: #E8ECF1;
}

body.dark-mode p {
    color: #9CA3AF;
}

/* Exclude always-dark zones from text overrides */
body.dark-mode .hero h1,
body.dark-mode .hero p,
body.dark-mode .bg-dark h2,
body.dark-mode .bg-dark h3,
body.dark-mode .bg-dark p,
body.dark-mode .bg-accent h2,
body.dark-mode .bg-accent h3,
body.dark-mode .bg-accent p,
body.dark-mode .step h3,
body.dark-mode .step p,
body.dark-mode footer h3,
body.dark-mode footer p,
body.dark-mode .seo-local h2,
body.dark-mode .seo-local p {
    color: inherit;
}

/* --- Header --- */
body.dark-mode header.scrolled {
    background-color: rgba(21, 19, 73, 0.95);
}

/* --- Hero --- */
body.dark-mode .hero-bg .overlay {
    background: linear-gradient(90deg, rgba(21, 19, 73, 0.95) 0%, rgba(21, 19, 73, 0.68) 100%);
}

/* --- Value Prop & Cards --- */
body.dark-mode .value-prop {
    background-color: #151349;
}

body.dark-mode .card {
    background-color: #1B1957;
    border-color: transparent;
}

body.dark-mode .card:hover {
    border-color: var(--color-accent);
}

body.dark-mode .card i {
    color: var(--color-accent);
}

body.dark-mode .section-header p {
    color: #9CA3AF;
}

/* --- Service Sections --- */
body.dark-mode .service-section.alternate {
    background-color: #1B1957;
}

body.dark-mode .service-section:not(.alternate) {
    background-color: #151349;
}

body.dark-mode .service-content p {
    color: #9CA3AF;
}

body.dark-mode .benefits-list li {
    color: #D1D5DB;
}

body.dark-mode .feature-pills span {
    background-color: #211F63;
    color: #E8ECF1;
}

/* --- Target Audience (bg-dark) --- */
body.dark-mode .bg-dark {
    background-color: #151349;
}

body.dark-mode .target-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

/* --- Space Section --- */
body.dark-mode .space-section {
    background-color: #151349;
}

body.dark-mode .space-content h2 {
    color: #E8ECF1;
}

body.dark-mode .s-feature span {
    color: #E8ECF1;
}

/* --- Schedule --- */
body.dark-mode .schedule {
    background-color: #151349;
}

body.dark-mode .schedule-card {
    background-color: #1B1957;
}

body.dark-mode .schedule-card h3 {
    color: #E8ECF1;
}

body.dark-mode .time {
    color: #E8ECF1;
}

body.dark-mode .disclaimer {
    color: #9CA3AF;
}

/* --- Team --- */
body.dark-mode .team {
    background-color: #1B1957;
}

body.dark-mode .team-group-photo {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body.dark-mode .trainer-card {
    background-color: #0F0D35;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

body.dark-mode .trainer-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

body.dark-mode .trainer-card-info h3 {
    color: #E8ECF1;
}

body.dark-mode .trainer-card-info p {
    color: #9CA3AF;
}

/* --- Google Reviews --- */
body.dark-mode .google-reviews {
    background-color: #1B1957;
}

body.dark-mode .review-card {
    background-color: #0F0D35;
}

body.dark-mode .review-text {
    color: #D1D5DB;
}

body.dark-mode .review-author strong {
    color: #E8ECF1;
}

body.dark-mode .google-rating-summary strong {
    color: #E8ECF1;
}

/* --- Contact --- */
body.dark-mode .contact {
    background-color: #151349;
}

body.dark-mode .contact h2 {
    color: #E8ECF1;
}

body.dark-mode .contact h4 {
    color: #E8ECF1;
}

body.dark-mode .contact-form-container {
    background-color: #1B1957;
}

body.dark-mode .contact-form-container h3 {
    color: #E8ECF1;
}

body.dark-mode .form-group label {
    color: #D1D5DB;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background-color: #0F0D35;
    border-color: #374151;
    color: #E8ECF1;
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: #6B7280;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(252, 44, 6, 0.2);
}

body.dark-mode .btn-outline-dark {
    color: #E8ECF1;
    border-color: #E8ECF1;
}

body.dark-mode .btn-outline-dark:hover {
    background-color: #E8ECF1;
    color: #151349;
}

/* --- Map --- */
body.dark-mode .contact-map {
    background-color: #0F0D35;
}

body.dark-mode .map-embed {
    background-color: #0F0D35;
}

/* --- Footer --- */
body.dark-mode footer {
    background-color: #151349;
}

/* --- SEO Local --- */
body.dark-mode .seo-local {
    background-color: #151349;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 6.5rem; /* Aligned above WhatsApp (2rem base + 3.5rem btn + 1rem gap) */
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-primary);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.back-to-top i {
    width: 1.8rem;
    height: 1.8rem;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background-color: #222267; /* Slightly lighter navy for hover */
    transform: translateY(-5px);
}

body.dark-mode .back-to-top {
    background-color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode .back-to-top:hover {
    background-color: #222267; /* Slightly lighter navy for hover */
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 6rem;
        right: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

body.dark-mode .current-status-box {
    background-color: #1B1957;
    border-color: #374151;
}

body.dark-mode .status-message {
    color: #E8ECF1;
}
/* --- Mobile Nav --- */
body.dark-mode .mobile-nav {
    background-color: #151349;
}

@media (max-width: 768px) {
    body.dark-mode header {
        background-color: rgba(21, 19, 73, 0.95);
    }
}
