/* --- VARIABLES --- */
:root {
    --bg-dark: #0a0a0a;
    --bg-accent: #141414;
    --primary-red: #e61e2a;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* --- OPTIMIZARI PERFORMANȚĂ --- */
html {
    scroll-behavior: smooth;
}

a, button, .hamburger {
    touch-action: manipulation; /* Elimină delay-ul de 300ms la tap pe mobil */
}

img {
    content-visibility: auto;
}

.hero-collage,
.collage-track,
.whatsapp-fixed,
.review-card,
.booking-card {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.highlight { color: var(--primary-red); }

/* --- NAVIGATION (95% Latime) --- */
nav {
    padding: 25px 0; /* Mărit de la 15px pentru un aspect mai impunător */
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto;
    position: relative;
}
.logo-brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none !important;
}

.header-brand-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.logo-brand-link:hover .header-brand-logo {
    transform: scale(1.08);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text-title { 
    font-family: 'Bebas Neue', sans-serif; 
    font-size: 2rem; 
    color: #fff; 
    letter-spacing: 1px; 
    line-height: 0.95; 
}

.logo-text-title .accent-text { 
    color: var(--primary-red); 
}

.logo-text-subtitle { 
    font-size: 0.6rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    color: var(--text-gray); 
    margin-top: 3px; 
    line-height: 1;
}

/* --- HAMBURGER MENU --- */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary-red);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary-red);
}

/* --- MOBILE MENU FULLSCREEN --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: right;
    z-index: 999;
}
.mobile-menu.active {
    right: 0;
}
.mobile-nav-links {
    list-style: none;
    text-align: center;
}
.mobile-nav-links li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}
.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }

.mobile-nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 2px;
}
.mobile-nav-links a:hover {
    color: var(--primary-red);
}

/* --- ANIMATII LOAD (HERO) --- */
@keyframes fadeInUpHero {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-load { animation: fadeInUpHero 1s ease-out forwards; }
.delay-1 { animation-delay: 0.3s; opacity: 0; }
.delay-2 { animation-delay: 0.6s; opacity: 0; }

/* --- ANIMATII REVEAL (SCROLL) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    visibility: hidden;
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    will-change: auto; /* Opreste hardware acceleration dupa finalizare */
}

/* --- HERO --- */
.hero { height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
/* --- HERO COLLAGE --- */
.hero-collage {
    position: absolute;
    top: -15%;
    left: -10%;
    width: 120vw;
    height: 130vh;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    transform: rotate(-6deg);
    background: var(--bg-dark);
}
.collage-track {
    display: flex;
    gap: 15px;
    width: max-content;
    will-change: transform;
    transform: translateZ(0); /* Forteaza GPU acceleration */
}
.collage-track img {
    height: 38vh;
    width: max(25vw, 280px);
    object-fit: cover;
    border-radius: 12px;
    opacity: 0.85;
    filter: grayscale(20%) contrast(1.15) brightness(0.9);
    transition: var(--transition);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}
@media (max-width: 768px) {
    .collage-track img {
        height: 25vh;
        width: 220px;
    }
}
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.track-left {
    animation: scrollLeft 45s linear infinite;
}
.track-right {
    animation: scrollRight 45s linear infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Filtru premium inchis peste poze */
    background: radial-gradient(circle at center, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.95) 100%), linear-gradient(to bottom, rgba(230,30,42,0.05), var(--bg-dark));
    z-index: 1;
    pointer-events: none;
}
.hero-content { position: relative; z-index: 10; width: 100%; }
.hero h1 { font-size: clamp(2rem, 8vw, 4.5rem); font-weight: 800; line-height: 1; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; color: var(--text-gray); max-width: 550px; margin-bottom: 35px; }

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: var(--transition);
}
.btn-primary { background: var(--primary-red); color: #fff; margin-right: 15px; }
.btn-secondary { border: 1px solid #fff; color: #fff; }

/* --- BUTON SUBTIL HERO --- */
.btn-subtle-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(230, 30, 42, 0.45);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.btn-subtle-hero i {
    color: var(--primary-red);
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-subtle-hero:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 30, 42, 0.45);
}

.btn-subtle-hero:hover i {
    color: #ffffff;
}

/* --- BUTON CONTACTEAZA-MA DESPRE MINE --- */
.btn-about-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-red);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(230, 30, 42, 0.4);
}

.btn-about-contact:hover {
    background: #ff2a38;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(230, 30, 42, 0.6);
}

/* --- SECTIONS --- */
section { padding: 100px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; font-weight: 800; }
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 25px; }
.cta-text { font-size: 1.5rem; margin-top: 30px; color: #fff; letter-spacing: 1px; }
.stats { display: flex; gap: 40px; margin-top: 35px; }
.stat-item h3 { font-size: 2.5rem; color: var(--primary-red); font-family: 'Bebas Neue'; }
.about-img { width: 100%; height: auto; max-height: 550px; object-fit: cover; border-radius: 12px; box-shadow: 0 15px 30px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.05); }

.services { background: var(--bg-accent); }
.services-title { text-align: left; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.service-card { background: var(--bg-dark); padding: 50px 30px; border-radius: 10px; text-align: center; border: 1px solid rgba(255,255,255,0.03); transition: var(--transition); }
.service-card:hover { border-color: var(--primary-red); transform: translateY(-5px); }
.service-card i { font-size: 3rem; color: var(--primary-red); margin-bottom: 25px; }

/* --- TRAINING DETAIL BLOCK --- */
.training-detail-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
    padding: 60px;
    background: var(--bg-dark);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}
.training-detail-block::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 30, 42, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.detail-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 30, 42, 0.12);
    border: 1px solid rgba(230, 30, 42, 0.3);
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}
.training-detail-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.15;
}
.detail-intro {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.7;
}
.detail-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
}
.detail-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.detail-feature > i {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.detail-feature strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.detail-feature p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}
.detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.detail-cta i { font-size: 1.2rem; }

/* Training Detail Image */
.training-detail-image {
    position: relative;
}
.training-detail-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: block;
}
.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(230, 30, 42, 0.4);
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.image-badge i {
    color: var(--primary-red);
    font-size: 1.2rem;
}
.image-badge span { font-size: 0.9rem; }
.image-badge strong { color: var(--primary-red); }

/* Poza nutriție se adaptează la înălțimea textului */
.nutrition-block .training-detail-image {
    align-self: stretch;
}
.nutrition-block .training-detail-image img {
    height: 100%;
    min-height: 500px;
}

/* Responsive pentru training detail */
@media (max-width: 900px) {
    .training-detail-block {
        grid-template-columns: 1fr;
        padding: 35px 25px;
        gap: 40px;
    }
    .training-detail-block::before {
        display: none;
    }
    .training-detail-image img {
        height: 380px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    /* Pe mobil, imaginea nutriție apare deasupra textului */
    .nutrition-block .training-detail-image {
        order: -1;
    }
}

/* --- WHATSAPP & FOOTER --- */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(230, 30, 42, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.7);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}

.whatsapp-fixed.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-fixed.visible:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 14px 28px rgba(230, 30, 42, 0.6);
}
/* --- FOOTER MODERN --- */
footer { padding: 80px 0 30px; background: #050505; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-bottom: 50px; text-align: left; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 2px; margin-bottom: 10px; }
.brand-col p { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 25px; }
.social-links a { font-size: 2rem; color: #fff; text-decoration: none !important; transition: var(--transition); display: inline-block; padding: 10px 15px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; }
.social-links a:hover { color: var(--primary-red); border-color: var(--primary-red); transform: translateY(-3px); }

.footer-col h4 { font-size: 1.2rem; margin-bottom: 25px; color: #fff; text-transform: uppercase; letter-spacing: 1px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 2px; background: var(--primary-red); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 15px; color: var(--text-gray); font-size: 0.95rem; display: flex; align-items: flex-start; gap: 15px; }
.footer-list li i { color: var(--primary-red); font-size: 1.1rem; margin-top: 3px; }
.footer-list li a { color: var(--text-gray); text-decoration: none; transition: var(--transition); }
.footer-list li a:hover { color: var(--primary-red); }
.footer-list li span { font-weight: 700; color: #fff; margin-right: 5px; }

.program-title-stacked {
    margin-top: 30px;
}

.footer-map-wrapper {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.footer-map-wrapper:hover {
    border-color: var(--primary-red);
    box-shadow: 0 12px 30px rgba(230, 30, 42, 0.35);
}

.footer-map-wrapper iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { font-size: 0.8rem; color: #555; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* --- SECTIUNE RECENZII & FEEDBACK --- */
.reviews-section {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-header {
    text-align: center;
    margin-bottom: 35px;
}

.reviews-header .detail-label {
    margin-bottom: 15px;
}

.rating-summary-card {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    background: var(--bg-accent);
    padding: 22px 38px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
    justify-content: center;
}

.rating-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.8rem;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-info {
    text-align: left;
}

.rating-info .stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.rating-subtitle {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.google-review-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 30, 42, 0.4);
}

.google-review-btn i {
    font-size: 1.1rem;
}

/* CAROUSEL WRAPPER SI SĂGEȚI NAVIGAȚIE */
.reviews-slider-wrapper {
    position: relative;
    margin-top: 25px;
    padding: 0 10px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.slider-arrow:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(230, 30, 42, 0.5);
}

.arrow-left {
    left: -24px;
}

.arrow-right {
    right: -24px;
}

/* RECENZII PE UN SINGUR RÂND CU SCROLL ORIZONTAL & DRAG CURSOR */
.reviews-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 5px 25px 5px;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    -ms-overflow-style: none;  /* IE / Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Ascunde complet bara de scroll */
.reviews-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.reviews-grid.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

/* Card-urile rămân pe un singur rând și compacte */
.review-card {
    flex: 0 0 380px;
    width: 380px;
    scroll-snap-align: start;
    background: var(--bg-accent);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    border-color: rgba(230, 30, 42, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), #99000d);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(230, 30, 42, 0.3);
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 3px 0;
}

.review-date {
    font-size: 0.78rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.google-badge {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea4335;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffc107;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.verified-tag {
    font-size: 0.72rem;
    color: #4cd964;
    background: rgba(76, 217, 100, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.review-text {
    color: #d1d1d1;
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 0;
    position: relative;
}

.quote-icon {
    color: rgba(230, 30, 42, 0.3);
    font-size: 1.1rem;
    margin-right: 6px;
}

.owner-reply {
    background: rgba(10, 10, 10, 0.6);
    border-left: 3px solid var(--primary-red);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    margin-top: 15px;
}

.reply-header {
    font-size: 0.78rem;
    color: var(--primary-red);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reply-header strong {
    color: #fff;
}

.owner-reply p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    font-style: italic;
}

/* --- SECTIUNE PROGRAMARE CONSULTANTA --- */
.booking-section {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.text-left {
    text-align: left;
    margin-bottom: 25px;
}

.booking-intro {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(230, 30, 42, 0.12);
    border: 1px solid rgba(230, 30, 42, 0.3);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* Card Formular Programare */
.booking-card {
    background: var(--bg-accent);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(230, 30, 42, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(230, 30, 42, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.booking-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.form-subtext {
    font-size: 0.88rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Goal Pills */
.goal-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.goal-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.goal-pill input {
    display: none;
}

.goal-pill i {
    color: var(--primary-red);
}

.goal-pill:hover,
.goal-pill.active {
    background: rgba(230, 30, 42, 0.15);
    border-color: var(--primary-red);
    color: #fff;
}

/* Inputs styling */
.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.booking-form select option {
    background: #141414;
    color: #fff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(230, 30, 42, 0.25);
    outline: none;
}

.btn-booking-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(230, 30, 42, 0.4);
    margin-top: 10px;
}

.btn-booking-submit:hover {
    background: #ff2a38;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(230, 30, 42, 0.6);
}

/* --- MEDIA QUERIES --- */
@media (max-width: 900px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .text-left {
        text-align: center;
    }
    .booking-intro {
        text-align: center;
    }
    .booking-card {
        padding: 28px 20px;
    }
    .goal-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        zoom: 0.88;
    }

    section { padding: 50px 0; }
    .section-title { font-size: 1.75rem; margin-bottom: 35px; }
    
    .nav-container { width: 90%; }
    .header-brand-logo { height: 34px; }
    .logo-text-title { font-size: 1.5rem; }
    .logo-text-subtitle { font-size: 0.52rem; letter-spacing: 2px; }
    
    .hero { text-align: center; }
    .hero h1 { font-size: 2.1rem; }
    .hero p { font-size: 0.95rem; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; margin-right: 0; }
    
    .about-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .about-text p { font-size: 0.92rem; line-height: 1.65; }
    .about-cta-wrapper { margin-top: 25px !important; }
    .btn-about-contact { padding: 14px 28px; font-size: 0.82rem; }

    .training-detail-text h3 { font-size: 1.45rem; }
    .detail-intro { font-size: 0.92rem; line-height: 1.6; }
    .detail-feature { gap: 12px; }
    .detail-feature strong { font-size: 0.88rem; }
    .detail-feature p { font-size: 0.84rem; line-height: 1.5; }

    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
    
    .rating-summary-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    .rating-info {
        text-align: center;
    }
    
    .scroll-hint {
        justify-content: center;
        margin-bottom: 8px;
    }

    .reviews-grid {
        gap: 16px;
        padding-bottom: 20px;
    }
    .review-card {
        flex: 0 0 85vw;
        width: 85vw;
        min-width: 270px;
        padding: 22px 18px;
    }
    .review-card p {
        font-size: 0.88rem;
    }

    .footer-grid { text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-list li { justify-content: center; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
    .footer-list li i { margin-top: 0; margin-bottom: 5px; }
    .footer-list li span { margin-right: 0; }
}