/* ============================================
   CSS VARIABLES - Design System
   ============================================ */
:root {
    /* Colors */
    --color-cream: #F5F2ED;
    --color-beige: #E8DDD4;
    --color-beige-dark: #D9CEC4;
    --color-olive: #7D7D6D;
    --color-olive-dark: #5C5C4D;
    --color-rose: #E5D5CE;
    --color-sand: #D4C5B5;
    --color-charcoal: #2D2D2D;
    --color-black: #1A1A1A;
    --color-white: #FAFAF8;
    --color-forest: #2D4A3E;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', Georgia, serif;
    --font-body: 'DM Sans', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-size-hero: 42px;
    --font-size-h1: clamp(40px, 5vw, 56px);
    --font-size-h2: clamp(32px, 4vw, 44px);
    --font-size-h3: 24px;
    --font-size-body: 16px;
    --font-size-small: 14px;
    --line-height-heading: 1.1;
    --line-height-body: 1.6;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --space-xxl: 120px;

    /* Layout */
    --max-width: 1400px;
    --content-padding: 60px;
    --section-padding: 100px;

    /* Transitions */
    --transition-default: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

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

body {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--color-black);
    background-color: #E8DDD4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: var(--line-height-heading);
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--color-black);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

p {
    margin-bottom: var(--space-md);
}

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

/* ============================================
   BUTTONS - ȘTERS, VEZI SECȚIUNEA "BUTOANE - STIL UNIC"
   ============================================ */

/* ============================================
   NAVIGATION
   ============================================ */
.nav-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-charcoal);
    transition: var(--transition-default);
}

.nav-header.scrolled {
    background-color: var(--color-charcoal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Background bej pentru toate secțiunile */
.service-page .content-side,
.about-page,
section:not(.contact-section):not(.footer),
main {
    background-color: #E8DDD4;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-lang {
    flex-shrink: 0;
}

.nav-logo a,
.logo,
.site-title,
header a.logo,
.navbar-brand {
    font-family: 'Satisfy', cursive !important;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #E8DDD4 !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-cream);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-cream);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-cream);
    transition: var(--transition-default);
}

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

.nav-links a.nav-link-active {
    opacity: 1;
    font-weight: 600;
}

.nav-links a.nav-link-active::after {
    width: 100%;
}

.nav-lang {
    display: flex;
    gap: var(--space-xs);
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
    color: var(--color-cream);
    opacity: 0.6;
    transition: var(--transition-default);
}

.lang-btn.active,
.lang-btn:hover {
    opacity: 1;
}

.lang-btn:focus {
    outline: 2px solid var(--color-cream);
    outline-offset: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.hero-image-side {
    background-color: var(--color-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-padding);
}

.hero-content-side {
    background: #E5D5CE !important;
    display: flex;
    align-items: center;
    padding: var(--section-padding);
}

.hero-content {
    max-width: 600px;
}

.hero-headline,
.hero h1 {
    font-size: var(--font-size-hero);
    font-weight: 300;
    margin-bottom: var(--space-md);
    color: var(--color-black);
    text-align: left;
}

.hero-subheadline,
.hero p {
    text-align: left;
}

.hero-subheadline {
    font-size: var(--font-size-body);
    margin-bottom: var(--space-lg);
    color: var(--color-black);
    opacity: 0.9;
}

/* ============================================
   THREE PATHS SECTION
   ============================================ */
.paths-section {
    background-color: var(--color-cream);
    padding: var(--space-xxl) var(--content-padding);
}

.paths-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ========================================
   TITLURI SECȚIUNI - STIL UNIFORM
   ======================================== */
.paths-title,
h2.paths-title,
.testimonials-title,
.about-section h2,
#about h2,
.contact-title,
.contact-right .contact-title,
#contact h2,
.contact-section h2 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-weight: 500;
    font-size: var(--font-size-h2);
    color: var(--color-olive-dark, #5C5C4D);
    letter-spacing: -0.02em;
}

.paths-title {
    text-align: center;
    margin-bottom: 80px;
    color: var(--color-black);
    opacity: 0.8;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.path-card,
.service-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    text-align: center;
}

.path-image {
    margin-bottom: var(--space-md);
}

.certification-label,
.path-card .certification-label,
.service-card .certification-label,
.path-label,
.service-label {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5C5C4D;
    margin-bottom: 16px;
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.path-image-img,
.path-card img,
.service-card img {
    width: 100%;
    max-width: 95%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border: 3px solid #E5D5CE;
    border-radius: 12px;
}

.path-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    text-align: left;
}

.path-title,
.path-card h3,
.service-card h3 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 28px !important;
    font-weight: 300;
    font-style: normal;
    margin-bottom: var(--space-md);
    color: var(--color-black);
    text-align: left;
}

/* Ascunde <br> în titluri pe desktop pentru text pe un singur rând */
.path-title br,
.path-card h3 br,
.service-card h3 br {
    display: none;
}

.path-text,
.path-card p,
.service-card p {
    margin-bottom: 0;
    color: var(--color-black);
    opacity: 0.85;
    flex: 1;
    text-align: left;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    position: relative;
    overflow: visible;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-section,
#about {
    background-color: var(--color-rose, #E5D5CE);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.about-content-side {
    background-color: var(--color-rose);
    display: flex;
    align-items: center;
    padding: var(--section-padding);
}

.about-image-side {
    background: #7D7D6D !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-padding);
}

.about-section .about-image-container {
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    will-change: transform;
    transition: transform 0.05s ease-out;
}

.about-section .parallax-image {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-content {
    max-width: 600px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-black);
    display: block;
    margin-bottom: var(--space-md);
    opacity: 0.7;
}

/* Specific styles for About section on Home page */
.about-section .section-label {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-weight: 300;
    font-size: 36px;
    color: var(--color-charcoal, #2D2D2D);
    text-transform: none;
    letter-spacing: -0.02em;
}

.about-section .about-text,
.about-section .about-content,
.about-section p {
    text-align: left;
}

.about-section p:last-of-type {
    margin-bottom: 0;
}

.about-section h2,
#about h2 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-weight: 300;
    font-size: 36px;
    color: var(--color-olive-dark, #5C5C4D);
    text-align: left;
    text-transform: none;
}

.about-text {
    font-size: var(--font-size-body);
    margin-bottom: var(--space-lg);
    color: var(--color-black);
    opacity: 0.9;
}

/* ========================================
   CONTACT SECTION - LAYOUT 50/50 CURAT
   ======================================== */

#contact,
/* ========================================
   CONTACT - LAYOUT 2 COLOANE
   ======================================== */

.contact-section {
    background-color: var(--color-beige, #E8DDD4);
    padding: 0;
    margin: 0;
}

.contact-layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--max-width, 1400px);
    margin: 0 auto;
    padding: 60px 100px;
    gap: 60px;
    align-items: start;
}

/* DESKTOP - Stânga: Logo + Info vertical */
.contact-left-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding-left: 0;
}

.contact-logo {
    text-decoration: none;
}

.contact-logo .logo-text {
    font-family: 'Satisfy', cursive;
    font-size: 28px;
    color: var(--color-charcoal, #2D2D2D);
    text-decoration: none;
}

/* Info - coloane una sub alta pe desktop */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    text-align: left;
}

.contact-group-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-olive, #7D7D6D);
    margin-bottom: 2px;
}

.contact-link {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--color-olive-dark, #5C5C4D);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-primary, #5C4033);
}

/* DESKTOP - Dreapta: Formular */
.contact-right-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-right-col .contact-title,
.contact-form-col .contact-title {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-weight: 300;
    font-size: 42px;
    color: var(--color-olive-dark, #5C5C4D);
    margin: 0 0 22px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 8px 10px;
    border: 1px solid var(--color-olive, #7D7D6D);
    border-radius: 4px;
    font-size: 13px;
    font-family: var(--font-body);
    background: var(--color-white, #FAFAF8);
    color: var(--color-charcoal, #2D2D2D);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-olive-dark, #5C5C4D);
    box-shadow: 0 0 0 3px rgba(125, 125, 109, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-olive, #7D7D6D);
    opacity: 0.6;
}

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

.contact-form .btn-primary,
.contact-section .btn-primary {
    background-color: var(--color-olive, #7D7D6D) !important;
    color: var(--color-cream, #F5F2ED) !important;
    border: none !important;
    padding: 10px 20px;
    border-radius: 24px 4px 24px 4px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
    margin-top: 4px;
}

.contact-form .btn-primary:hover,
.contact-section .btn-primary:hover {
    background-color: var(--color-olive-dark, #5C5C4D) !important;
}

/* ========================================
   CONTACT - MOBIL
   ======================================== */


/* ============================================
   FOOTER
   ============================================ */
/* ========================================
   FOOTER - MINIMALIST
   ======================================== */

.footer {
    background-color: var(--color-charcoal, #2D2D2D);
    padding: 24px 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-faq-link {
    display: none;
}

.footer-faq-link-desktop {
    display: inline;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-cream, #F5F2ED);
    margin: 0;
}

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

.footer-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-cream, #F5F2ED);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-credit {
    font-family: var(--font-body);
    font-size: 11px;
    font-style: italic;
    color: rgba(245, 242, 237, 0.6);
    margin: 0;
}

/* FAQ page - elimină banda bej sub footer */
body.faq-page {
    background-color: var(--color-charcoal, #2D2D2D);
}

.faq-page .footer {
    margin-bottom: 0;
    padding-bottom: 20px;
}


/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.image-placeholder {
    background-color: var(--color-sand);
    width: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: 14px;
    opacity: 0.6;
    border-radius: 4px;
}

.hero-image,
.hero-image img,
.hero-image-side img,
.hero-left img,
.hero img {
    border-radius: 200px 200px 0 0;
}

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

.about-image-side .image-placeholder {
    max-width: 500px;
    width: 100%;
}

.path-image .image-placeholder {
    aspect-ratio: 4 / 5;
}

/* ============================================
   ABOUT PAGE - STORYTELLING SECTIONS
   ============================================ */
.story-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.story-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    width: 100%;
}

.story-content-side,
.story-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.story-content {
    max-width: 500px;
    width: 100%;
}

.story-text {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: 1.7;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.story-text:last-of-type {
    margin-bottom: 0;
}

.story-image {
    max-width: 500px;
    width: 100%;
    aspect-ratio: 4 / 5;
}

/* Background Colors */
.story-bg-cream {
    background-color: var(--color-cream);
}

.story-bg-olive {
    background-color: var(--color-olive);
}

.story-bg-beige {
    background-color: var(--color-beige);
}

.story-bg-rose {
    background-color: var(--color-rose);
}

.story-bg-sand {
    background-color: var(--color-sand);
}

/* ============================================
   ABOUT PAGE - NEW STRUCTURE
   ============================================ */

.about-page {
    background: var(--color-cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
}

.about-image {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3/4;
    background: var(--color-sand);
    border-radius: 200px 200px 0 0;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-olive);
    font-family: var(--font-body);
    font-size: 14px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-charcoal);
}

.about-text {
    max-width: 650px;
    text-align: center;
    line-height: 1.9;
    font-size: 18px;
    color: var(--color-charcoal);
    font-family: var(--font-body);
}

.about-text p {
    margin-bottom: 24px;
}

.about-text p:last-of-type {
    margin-bottom: 0;
}

.about-cta {
    margin-top: 50px;
    text-align: center;
}

/* ============================================
   SERVICE PAGES (Somatic Dance, Coaching, Women's Circle)
   ============================================ */

.service-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.service-page .content-side {
    background: var(--color-cream);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-page .image-side {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-image-side-olive {
    background-color: var(--color-olive);
}

.service-image-side-beige {
    background-color: var(--color-beige);
}

.service-image-side-rose {
    background-color: var(--color-rose);
}

.service-page h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--color-charcoal);
}

.service-page p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--color-charcoal);
    font-family: var(--font-body);
}

.service-page p:last-of-type {
    margin-bottom: 0;
}


.service-packages-inline {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
    flex-wrap: wrap;
}

.package-item {
    font-family: var(--font-heading);
    font-size: var(--font-size-h3);
    color: var(--color-charcoal);
}

.package-info {
    font-size: var(--font-size-small);
    color: var(--color-charcoal);
    opacity: 0.7;
    margin-bottom: var(--space-md) !important;
}

.service-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-md);
}


/* CTA Subtitle */
.cta-subtitle,
.cta-title,
.sessions-subtitle,
.grid-square.bottom-right h3 {
    font-family: 'Cormorant Garamond', var(--font-heading), serif !important;
    font-size: 26px;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 32px;
}


/* CTA Section */
.cta-section {
    margin-top: var(--space-lg);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.package-card {
    background: var(--color-beige);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
}

.package-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.package-card p {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--color-charcoal);
    font-family: var(--font-body);
}

.package-card .price {
    color: var(--color-olive);
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 500;
}


/* Circle Image Container with Parallax Frame */
.circle-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.circle-frame {
    position: absolute;
    width: 350px;
    height: 450px;
    background: var(--color-olive);
    border-radius: 8px;
    will-change: transform;
    transition: transform 0.05s ease-out;
}

.circle-frame-olive {
    background: var(--color-olive);
}

.circle-frame-beige {
    background: var(--color-beige);
}

.circle-frame-rose {
    background: var(--color-rose);
}


/* Coaching - Scoate borderul roz + poză mai mare */
.service-image-side-beige .circle-frame {
    display: none !important;
    background: transparent !important;
}

.service-image-side-beige .circle-image-container {
    position: relative;
}




/* Packages Section */
.packages-section {
    background-color: var(--color-cream);
    padding: 60px 40px;
}

.packages-container {
    max-width: 1000px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.package-card {
    background-color: var(--color-beige);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.package-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h3);
    margin-bottom: var(--space-sm);
    color: var(--color-charcoal);
}

.package-text {
    font-size: var(--font-size-body);
    margin-bottom: var(--space-xs);
    color: var(--color-charcoal);
    opacity: 0.9;
}

.package-subtitle {
    font-size: var(--font-size-small);
    color: var(--color-charcoal);
    opacity: 0.7;
}

/* Discovery Section */
.discovery-section {
    background-color: var(--color-olive);
    padding: var(--space-xxl) var(--content-padding);
}

.discovery-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.discovery-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h2);
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.discovery-text {
    font-size: var(--font-size-body);
    color: var(--color-cream);
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.discovery-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.discovery-btn {
    background-color: transparent;
    color: var(--color-cream);
    border: 1px solid var(--color-cream);
}

.discovery-btn:hover {
    background-color: var(--color-cream);
    color: var(--color-olive);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
/* Mobile */
@media (max-width: 480px) {
    :root {
        --content-padding: 24px;
        --section-padding: 60px;
        --font-size-hero: 28px;
        --font-size-h1: 32px;
        --font-size-h2: 28px;
        --font-size-h3: 20px;
        --font-size-body: 15px;
        --font-size-small: 13px;
    }


    .hero-content,
    .about-content {
        max-width: 100%;
    }

    .paths-section {
        padding: var(--space-xl) var(--content-padding);
    }

    .contact-section {
        padding: 0 !important;
        margin: 0 !important;
    }


    .story-section {
        min-height: auto;
    }

    .story-content-side,
    .story-image-side {
        padding: 24px;
    }

    .story-content {
        max-width: 100%;
    }

    .about-page {
        padding: 100px 24px;
    }

    .about-image {
        max-width: 220px;
    }

    .paths-title,
    .three-paths-title,
    .services-title {
        text-align: center !important;
    }

    .about-title {
        font-size: 32px;
    }

    .about-text {
        font-size: 16px;
    }

    .circle-frame {
        transform: none !important;
        position: relative;
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 350 / 450;
        margin: 0 auto;
    }

    .circle-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        width: 90%;
        height: auto;
        max-height: 90%;
        object-fit: cover;
        z-index: 2;
    }

    .circle-image-container {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        position: relative;
        height: auto;
        aspect-ratio: 350 / 450;
    }
}

/* ========================================
   POZE SERVICII - IDENTICE PE TOATE 3
   ======================================== */

.service-page .image-side {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 40px !important;
}

.service-page .circle-image-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.service-page .circle-image,
.somatic-grid .circle-image,
.coaching-page .circle-image,
.womens-circle-page .circle-image {
    max-width: 90% !important;
    max-height: 90% !important;
    width: auto !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 24px !important;
    border: none !important;
    box-shadow: none !important;
}

/* Frame-ul din spate - ascuns */
.circle-frame {
    display: none !important;
}

/* ======================================== */

/* ========================================
   HEADER - RESCRIS COMPLET - NU MODIFICA
   ======================================== */

.site-header,
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #E8DDD4 !important;
    padding: 20px 40px;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled,
header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Satisfy', cursive;
    font-size: 28px;
    color: #2D2D2D !important;
    text-decoration: none;
    justify-self: start;
}

.main-nav {
    display: flex;
    gap: 32px;
    justify-self: center;
}

.main-nav a {
    color: #2D2D2D !important;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.main-nav a:hover {
    opacity: 0.8;
}

.lang-buttons {
    display: flex;
    gap: 12px;
    justify-self: end;
    box-shadow: none;
}

/* Ascunde butoanele din .main-nav pe desktop */
.main-nav .lang-buttons {
    display: none;
}

.lang-buttons a,
.lang-buttons span {
    color: #2D2D2D !important;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    opacity: 0.7;
    font-weight: 400;
    padding: 0;
}

/* Selector limbă mobil - ascuns pe desktop */
.mobile-language-selector {
    display: none;
    box-shadow: none;
}

.lang-buttons a.active,
.lang-buttons span.active {
    opacity: 0.7;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.lang-buttons a:hover,
.lang-buttons span:hover {
    opacity: 0.7;
}

/* ======================================== */

/* ========================================
   SUBTITLURI CTA - SANS BOLD
   ======================================== */

.cta-subtitle,
.cta-title,
.sessions-subtitle,
#about-page .cta-title,
.somatic-cta-title,
.coaching-cta-title,
.circle-cta-title {
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

/* ======================================== */


/* ========================================
   CONTACT - BACKGROUND BEJ + BORDER CARDURI
   ======================================== */

/* ======================================== */

/* ========================================
   ABOUT PAGE - BACKGROUND BEJ + POZA CENTRATĂ
   ======================================== */

#about-page {
    background: #E8DDD4 !important;
    padding: 100px 40px;
    min-height: 100vh;
}

.about-page-wrapper {
    max-width: 650px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.about-page-image {
    width: 220px;
    height: 300px;
    margin: 0 auto 50px auto;
    border-radius: 180px 180px 0 0;
    overflow: hidden;
}

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

#about-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #2D2D2D;
    margin-bottom: 40px;
}

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

.about-page-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #2D2D2D;
    margin-bottom: 24px;
}


/* ======================================== */

/* ========================================
   HEADER MOBIL - HAMBURGER MENU
   ======================================== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #2D2D2D !important;
    transition: all 0.3s ease;
}


    /* Selector limbă în meniul mobil */
    .mobile-language-selector {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 24px;
        box-shadow: none;
    }

    .mobile-language-selector .lang-link {
        font-size: 14px;
        color: var(--color-olive, #7D7D6D);
        text-decoration: none;
        box-shadow: none;
    }

    .mobile-language-selector .lang-link.active {
        color: var(--color-charcoal, #2D2D2D);
        font-weight: 600;
    }

    .mobile-language-selector .lang-divider {
        color: var(--color-olive, #7D7D6D);
        font-size: 14px;
    }
    
    .lang-link:hover {
        color: var(--color-beige, #E8DDD4);
        box-shadow: none;
    }
    
    .lang-link.active {
        color: var(--color-beige, #E8DDD4);
        font-weight: 600;
        box-shadow: none;
    }
    
    .lang-link {
        box-shadow: none;
    }
    
    .lang-divider {
        color: var(--color-cream, #F5F2ED);
        opacity: 0.5;
    }

    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .logo {
        font-size: 24px !important;
    }
}

/* ======================================== */

/* ========================================
   CONTACT TITLE - CULOARE NEAGRĂ
   ======================================== */

#contact h2,
.contact-section h2,
.contact-title {
    margin-bottom: 48px;
}

/* ======================================== */

/* ========================================
   BUTON SOMATIC DANCE - DIMENSIUNE
   ======================================== */


/* ======================================== */

/* ========================================
   PADDING SECȚIUNI - NU AFECTEAZĂ LAYOUT
   ======================================== */

/* Secțiuni pe pagina principală */
.paths-section {
    padding-top: 100px;
    padding-bottom: 40px;
}

.about-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Mobile */

/* ======================================== */

/* ========================================
   TEXT ITALIC - "IN YOU" ȘI "FIND YOURS"
   ======================================== */

.hero h1 em,
.paths-section h2 em,
h1 em,
h2 em {
    font-style: italic;
}

/* ======================================== */

/* ========================================
   CARDURI COACHING - STILIZARE
   ======================================== */

.package-card {
    background: #4A4A3F !important;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
}

.package-card h3,
.package-card p {
    color: #F5F2ED !important;
}

/* ======================================== */

/* ========================================
   BUTOANE - STIL UNIC PE TOT SITE-UL
   ======================================== */

/* TOATE CELELALTE BUTOANE - TEXT + SĂGEATĂ */
/* EXCEPTIE: .hero .btn este exclus - are stil separat mai jos */
.btn-outline,
.btn-package,
.btn-secondary,
.path-card .btn,
.service-card .btn,
.path-content .btn,
.service-page .btn,
.package-card .btn,
.paths-section .btn,
.about-section .btn,
.free-session-card .btn {
    background: transparent !important;
    border: none !important;
    padding: 8px 0 !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--color-olive-dark, #5C5C4D) !important;
    cursor: pointer !important;
    transition: color 0.3s ease, gap 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    margin-top: 22px;
    align-self: flex-start;
}

.btn-secondary::after,
.path-card .btn::after,
.service-card .btn::after,
.path-content .btn::after,
.service-page .btn::after,
.package-card .btn::after,
.about-section .btn::after,
.free-session-card .btn::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Ascunde săgeata din CSS pentru butoanele din paths-section (săgeata e deja în HTML) */
.paths-section .btn::after {
    content: none;
}

.btn-secondary:hover,
.path-card .btn:hover,
.service-card .btn:hover,
.path-content .btn:hover,
.service-page .btn:hover,
.package-card .btn:hover,
.paths-section .btn:hover,
.about-section .btn:hover,
.free-session-card .btn:hover {
    color: var(--color-primary, #5C4033) !important;
    background: transparent !important;
}

.btn-secondary:hover::after,
.path-card .btn:hover::after,
.service-card .btn:hover::after,
.path-content .btn:hover::after,
.service-page .btn:hover::after,
.package-card .btn:hover::after,
.about-section .btn:hover::after,
.free-session-card .btn:hover::after {
    transform: translateX(4px);
}

/* Ascunde săgeata din CSS pentru butoanele din paths-section la hover */
.paths-section .btn:hover::after {
    content: none;
    transform: none;
}

/* Buton Hero - TEXT + SĂGEATĂ */
.hero .btn,
.hero-section .btn,
.hero-content .btn,
.hero-content-side .btn {
    background: transparent !important;
    border: none !important;
    padding: 8px 0 !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--color-olive-dark, #5C5C4D) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
}

.hero .btn::after,
.hero-section .btn::after,
.hero-content .btn::after,
.hero-content-side .btn::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero .btn:hover,
.hero-section .btn:hover,
.hero-content .btn:hover,
.hero-content-side .btn:hover {
    color: var(--color-primary, #5C4033) !important;
    background: transparent !important;
}

.hero .btn:hover::after,
.hero-section .btn:hover::after,
.hero-content .btn:hover::after,
.hero-content-side .btn:hover::after {
    transform: translateX(4px);
}

/* HOVER pentru butoane text + săgeată - deja definit mai sus */

/* Buton principal - Solid olive (pentru CTA-uri importante) */
.btn-primary {
    background: var(--color-olive, #7D7D6D) !important;
    color: var(--color-cream, #F5F2ED) !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}

.btn-primary:hover {
    background: var(--color-olive-dark, #5C5C4D) !important;
}

/* EXCEPȚIE - butoane pe fundal închis (carduri olive) */
.package-card .btn {
    border: none !important;
    color: #F5F2ED !important;
}

.package-card .btn::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.package-card .btn:hover {
    background: transparent !important;
    color: #F5F2ED !important;
}

.package-card .btn:hover::after {
    transform: translateX(4px);
}

/* ======================================== */

/* ========================================
   BUTON SOMATIC DANCE - DIMENSIUNE NORMALĂ
   ======================================== */

/* Fix buton somatic dance */
.somatic-page .content-side .btn,
.service-page.somatic-page .btn {
    width: auto !important;
    max-width: fit-content !important;
    display: inline-block !important;
    align-self: flex-start !important;
}

.somatic-page .content-side {
    align-items: flex-start !important;
}

/* ======================================== */

/* ========================================
   POZA DESPRE MINE - CUPOLĂ CA ÎN HERO
   ======================================== */

.about-section img,
.about-section .about-image img,
#about-home img,
.about-section .parallax-image {
    border-radius: 200px 200px 0 0 !important;
}

/* ======================================== */

/* ========================================
   SPAȚIU ÎNTRE TEXT ȘI BUTON - SOMATIC DANCE
   ======================================== */

.somatic-page .cta-subtitle,
.somatic-page .cta-title {
    margin-bottom: 24px !important;
}

/* ======================================== */

/* ========================================
   SPAȚIU ÎNTRE TEXT ȘI BUTON - WOMEN'S CIRCLE
   ======================================== */

.womens-circle-page .cta-subtitle,
.womens-circle-page .cta-title {
    margin-bottom: 24px !important;
}

/* ======================================== */

/* ========================================
   POZA SOMATIC DANCE - ACEEAȘI CA CELELALTE PAGINI
   ======================================== */

.somatic-page .image-side img,
.somatic-dance .image-side img,
#somatic-dance .image-side img,
.somatic-page .circle-image,
.somatic-dance .circle-image,
#somatic-dance .circle-image {
    max-width: 90% !important;
    max-height: 80vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 24px !important;
}

/* ======================================== */

/* ========================================
   SPAȚIU MAI MIC ÎNTRE "DESPRE MINE" ȘI "CONTACTEAZĂ-MĂ"
   ======================================== */

.about-section {
    padding-bottom: 40px !important;
}

/* ======================================== */

/* ========================================
   HERO - UMBRĂ FRUNZE
   ======================================== */

.hero-shadow {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: auto;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* Asigură-te că textul e deasupra umbrei */
.hero .content-side,
.hero .hero-right,
.hero-content-side {
    position: relative;
    z-index: 2;
}

/* Pe mobil - mai mică sau ascunsă */

/* ========================================= */

/* ========================================
   TEXT PE 2 RÂNDURI PE MOBIL
   ======================================== */

.mobile-break {
    display: none;
}


/* ======================================== */

/* ========================================
   HEADER ȘI FOOTER - BEJ CU SCRIS NEGRU
   ======================================== */


/* ======================================== */

/* ========================================
   CENTRARE TEXT "THREE PATHS" PE MOBIL
   ======================================== */


/* ======================================== */

/* ========================================
   LOGO NEGRU ÎN HEADER
   ======================================== */

.logo,
.site-header .logo,
header .logo,
a.logo {
    color: #2D2D2D !important;
    outline: none;
    border: none;
    box-shadow: none;
}

.logo:focus,
.site-header .logo:focus,
header .logo:focus,
a.logo:focus,
.logo:focus-visible,
.site-header .logo:focus-visible,
header .logo:focus-visible,
a.logo:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}

/* ======================================== */

/* ========================================
   SPAȚIERE TITLURI - DOAR MOBIL
   ======================================== */


/* ========================================= */

/* ========================================
   HERO - BUTON MARO PLIN + CENTRARE
   ======================================== */

/* TEST - VERIFICARE EDITARE */

/* ========================================
   TESTIMONIALE - STIL MINIMALIST UNIFORM
   ======================================== */

.testimonials-section {
    padding: 60px 40px 60px 40px;
    margin-bottom: 0;
    background-color: var(--color-cream, #F5F2ED);
}

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

.testimonials-title {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-weight: 300;
    font-size: 36px;
    text-align: center;
    color: var(--color-olive-dark, #5C5C4D);
    margin: 0 auto 48px auto;
    max-width: 100%;
}

/* Container carousel */
.testimonials-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-track {
    overflow: hidden;
    flex: 1;
    max-width: 1000px;
}

/* Grid - 3 vizibile pe desktop */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    transition: transform 0.4s ease;
    justify-items: start;
}

/* Coaching - doar 2 testimoniale, centrate */
.testimonials-container .testimonials-track .testimonials-grid:has(.testimonial-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
    justify-items: center;
}

/* Card - minimalist, transparent */
.testimonial-card {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 24px 16px;
    text-align: center;
    display: block;
}

.testimonial-card:hover {
    box-shadow: none;
    background: transparent;
}

/* Ascunde ghilimele decorative și label */
.testimonial-quote,
.testimonial-service {
    display: none;
}

/* Text - elegant, centrat */
.testimonial-content {
    max-height: none;
    overflow: visible;
}

.testimonial-content::after {
    display: none;
}

.testimonial-text {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-charcoal, #2D2D2D);
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.testimonial-text::before {
    content: '"';
    font-size: 24px;
    color: var(--color-olive, #7D7D6D);
    margin-right: 2px;
}

.testimonial-text::after {
    content: '"';
    font-size: 24px;
    color: var(--color-olive, #7D7D6D);
    margin-left: 2px;
}

/* Ascunde toggle */
.testimonial-toggle {
    display: none;
}

/* Autor - subtil */
.testimonial-author {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-olive, #7D7D6D);
    margin-top: 16px;
    text-align: center;
    letter-spacing: 0.05em;
}


/* Săgeți - desktop */
.carousel-arrow {
    display: flex;
    background: transparent;
    border: 1px solid var(--color-olive, #7D7D6D);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-olive-dark, #5C5C4D);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--color-olive, #7D7D6D);
    color: var(--color-cream, #F5F2ED);
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    margin-bottom: 40px;
}

/* Coaching - Reduce spațiu între testimoniale și CTA pe desktop */
body:has(.service-cta-coaching) .testimonials-section .carousel-dots {
    margin-bottom: 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-olive, #7D7D6D);
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.dot.active {
    opacity: 1;
}

/* ========================================
   TESTIMONIALE - MOBIL
   ======================================== */


/* ========================================= */

/* ========================================
   FORȚARE CENTRARE TITLURI CARDURI PE MOBIL - LA SFÂRȘIT
   ======================================== */

/* ========================================= */

/* ========================================
   FORȚARE SPAȚIERE MOBIL - FINAL OVERRIDE
   Această secțiune TREBUIE să fie ultima din fișier
   ======================================== */


/* =============================================
   ULTIMELE REGULI - FORȚARE ELIMINARE SPAȚIU
   Nimic nu trebuie să fie după acest bloc!
   ============================================= */

main {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

#contact,
.contact-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    background: none !important;
}

.contact-layout-split {
    margin-bottom: 0 !important;
}

.contact-left,
.contact-right {
    margin-bottom: 0 !important;
}

.footer {
    margin-top: 0 !important;
    padding-top: 24px !important;
}

/* ========================================
   SERVICE PAGE - SOMATIC DANCE
   ======================================== */

/* Hero 50/50 */
.service-hero {
    min-height: 700px;
    padding: 0;
    padding-top: 0;
    margin-top: 0;
    overflow: hidden;
}

.service-hero-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 700px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Linia orizontală la baza hero-ului */
.service-hero-layout::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: rgba(125, 125, 109, 0.3);
    z-index: 2;
    pointer-events: none;
}

/* Linia verticală care urcă din centrul bazei până la mijloc */
.service-hero-layout::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50%;
    background-color: rgba(125, 125, 109, 0.3);
    z-index: 2;
    pointer-events: none;
}

.service-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 40px 80px 160px;
    background-color: var(--color-beige, #E8DDD4);
    transition: transform 0.1s linear;
}

.service-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-beige, #E8DDD4);
    padding: 40px 120px 80px 80px;
    transition: transform 0.1s linear;
}

.service-hero-image img {
    max-width: 65%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.service-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-olive, #7D7D6D);
    margin-bottom: 16px;
}

.service-hero-content h1 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--color-charcoal, #2D2D2D);
    margin-bottom: 24px;
    line-height: 1.2;
}

/* Buton CTA vizibil în hero */
.service-hero-content .btn,
.service-hero-content a.btn {
    background: transparent !important;
    border: none !important;
    padding: 8px 0 !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--color-olive-dark, #5C5C4D) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
    margin-top: 0;
}

.service-hero-content .btn::after,
.service-hero-content a.btn::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-hero-content .btn:hover,
.service-hero-content a.btn:hover {
    color: var(--color-primary, #5C4033) !important;
    background: transparent !important;
}

.service-hero-content .btn:hover::after,
.service-hero-content a.btn:hover::after {
    transform: translateX(4px);
}


 /* Subtitlu Hero - Desktop */
.service-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-charcoal, #2D2D2D);
    margin-bottom: 32px;
}

.subtitle-line-1 {
    display: inline;
    font-weight: 700; /* Uniform cu <strong> standard */
}

.subtitle-line-2 {
    display: inline;
    font-weight: 400;
}

.subtitle-line-1::after {
    content: ' '; /* Păstrăm spațiul pentru formatare */
}

/* Container general */
.container {
    max-width: var(--max-width, 1400px);
    margin: 0 auto;
    width: 100%;
}

/* Secțiune Ce vei experimenta */
.service-experience {
    padding: 80px 60px;
    background-color: var(--color-beige-dark, #D9CEC4);
}

.service-experience h2 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--color-charcoal, #2D2D2D);
    text-align: center;
    margin-bottom: 48px;
}

.experience-pillars {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
}

.pillar {
    flex: 1;
    padding: 24px 32px;
    text-align: center;
    border-right: 1px solid rgba(45, 45, 45, 0.15);
}

.pillar:last-child {
    border-right: none;
}

.pillar h3 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: var(--color-charcoal, #2D2D2D);
    margin-bottom: 16px;
}

.pillar p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-charcoal, #2D2D2D);
    opacity: 0.8;
}

/* Secțiune Pentru cine e + Cine te ghidează */
.service-split {
    min-height: 500px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.split-left {
    background-color: var(--color-olive, #7D7D6D);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left h2 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-cream, #F5F2ED);
    margin-bottom: 24px;
}

.split-left p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-cream, #F5F2ED);
}

.split-left .btn {
    display: inline-block;
    width: fit-content;
    margin-top: 24px;
    padding: 12px 24px;
    font-size: 14px;
    background-color: var(--color-cream, #F5F2ED);
    color: var(--color-charcoal, #2D2D2D);
    text-decoration: none;
    border-radius: 24px 4px 24px 4px;
    transition: all 0.3s ease;
}

.split-left .btn:hover {
    opacity: 0.9;
}

.split-image-block {
    background-color: #D9CEC4; /* Bej mediu */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    min-height: 500px;
}

.service-split .split-right {
    will-change: transform;
    transition: transform 0.05s ease-out;
}

.split-corner-image {
    max-width: 80%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    max-height: 500px;
}

/* Secțiune Cine te ghidează */
.service-guide {
    padding: 0;
    min-height: 500px;
}

.guide-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.guide-image {
    background-color: var(--color-beige-dark, #D9CEC4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    will-change: transform;
    transition: transform 0.05s ease-out;
}

.guide-photo {
    max-width: 80%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    max-height: 500px;
}

.guide-content {
    background-color: var(--color-rose, #C9A9A6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.guide-content h2 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--color-charcoal, #2D2D2D);
    margin-bottom: 24px;
}

.guide-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-charcoal, #2D2D2D);
}

.bio-signature {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-style: italic;
    font-size: 14px;
    color: var(--color-olive, #7D7D6D);
    margin-top: 16px;
}

.guide-btn {
    display: inline-block;
    width: fit-content;
    margin-top: 24px;
    padding: 12px 24px;
    font-size: 14px;
    background-color: var(--color-olive, #7D7D6D);
    color: var(--color-cream, #F5F2ED);
    text-decoration: none;
    border-radius: 24px 4px 24px 4px;
    transition: all 0.3s ease;
}

.guide-btn:hover {
    background-color: #4A4A3F;
}

.btn-text {
    background: transparent;
    border: none;
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-beige, #E8DDD4);
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-text:hover {
    color: var(--color-cream, #F5F2ED);
}

/* Secțiune Detalii practice */
.service-details {
    padding: 60px;
    background-color: var(--color-cream, #F5F2ED);
}

.service-details h2 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--color-olive-dark, #5C5C4D);
    text-align: center;
    margin: 0 auto 40px auto;
    max-width: 100%;
}

/* Detalii practice - Grid 5 coloane */
.details-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Linii verticale subtile între coloane */
.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    border-right: 1px solid rgba(125, 125, 109, 0.2);
    padding: 24px 16px;
}

.detail-item-limba .detail-value {
    line-height: 1.8;
}

/* Grid single row — 5 coloane, un rând */
.details-grid-single {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.details-grid-single .detail-item {
    padding: 24px 16px;
    border-right: 1px solid rgba(125, 125, 109, 0.2);
}

/* Ultima coloană — fără border-right */
.details-grid-single .detail-item:last-child {
    border-right: none;
}

/* Limba — centrare verticală */
.detail-item-limba-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.detail-item-limba-single .detail-value {
    line-height: 1.8;
}

.detail-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-olive, #7D7D6D);
}

.detail-value {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-charcoal, #2D2D2D);
    line-height: 1.4;
}

/* Grid dual — Somatic Dance (2 coloane: Grup + Individual) */
.details-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.details-grid-dual .details-column-left,
.details-grid-dual .details-column-right {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    align-items: start;
}

.details-grid-dual .details-column-left {
    border-right: 1px solid rgba(125, 125, 109, 0.2);
}

.details-grid-dual .details-column-left .detail-item,
.details-grid-dual .details-column-right .detail-item {
    padding: 16px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(125, 125, 109, 0.1);
}

.details-grid-dual .details-column-left .detail-item:last-child,
.details-grid-dual .details-column-right .detail-item:last-child {
    border-bottom: none;
}

.details-grid-dual .detail-item-limba {
    grid-column: 1 / -1;
    text-align: center;
    padding: 24px 16px;
    border-right: none;
    border-top: 1px solid rgba(125, 125, 109, 0.2);
}


/* Buton Citește tot pentru testimonialele */
.read-more-btn {
    background: none;
    border: none;
    padding: 8px 0;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-olive, #7D7D6D);
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: block;
}

.read-more-btn:hover {
    color: var(--color-charcoal, #2D2D2D);
}

/* Secțiune CTA Final */
.service-cta {
    padding: 80px 60px;
    background-color: var(--color-beige, #E8DDD4);
    text-align: center;
}

.service-cta .container {
    max-width: 700px;
    margin: 0 auto;
}

/* Titlu CTA - suprascrie #contact h2 pentru secțiunile .service-cta */
#contact.service-cta h2,
section.service-cta#contact h2,
.service-cta h2 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 36px !important;
    font-weight: 500 !important;
    color: var(--color-olive-dark, #5C5C4D);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: normal;
}

.service-cta p {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-olive-dark, #5C5C4D);
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

section.service-cta .btn,
section.service-cta .btn-primary,
.service-cta .btn,
.service-cta .btn-primary {
    background: var(--color-cream, #F5F2ED) !important;
    color: var(--color-olive-dark, #5C5C4D) !important;
    padding: 14px 32px !important;
    border-radius: 24px 4px 24px 4px !important;
    border: none !important;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

section.service-cta .btn:hover,
section.service-cta .btn-primary:hover,
.service-cta .btn:hover,
.service-cta .btn-primary:hover {
    background: var(--color-white, #FFFFFF) !important;
    transform: translateY(-2px);
}

/* Spațiu deasupra footer-ului pentru somatic-dance */
#contact.service-cta-somatic,
.service-cta-somatic {
    margin-bottom: 60px !important;
}


/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: 80px 60px;
    background-color: var(--color-cream, #F5F2ED);
}

.faq-title {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--color-olive-dark, #5C5C4D);
    text-align: center;
    margin-bottom: 48px;
}

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

.faq-item {
    border-bottom: 1px solid rgba(125, 125, 109, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body, 'DM Sans'), sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-olive-dark, #5C5C4D);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary, #5C4033);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 8px 0 24px 0;
}

.faq-answer p {
    font-family: var(--font-body, 'DM Sans'), sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-charcoal, #2D2D2D);
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ========================================
   FAQ PAGE
   ======================================== */

.faq-page-hero {
    padding: 100px 60px 40px 60px;
    background-color: var(--color-cream, #F5F2ED);
    text-align: center;
}

.faq-page-hero h1 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--color-olive-dark, #5C5C4D);
}

.faq-category-title {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--color-olive-dark, #5C5C4D);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(125, 125, 109, 0.2);
}

.faq-link-container {
    text-align: center;
    padding: 48px 0;
    position: relative;
}

.faq-link-container::before,
.faq-link-container::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(125, 125, 109, 0.3);
    margin: 0 auto;
}

.faq-link-container::before {
    margin-bottom: 32px;
}

.faq-link-container::after {
    margin-top: 32px;
}

.faq-link {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-style: italic;
    font-size: 28px;
    font-weight: 400;
    color: var(--color-charcoal, #2D2D2D);
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}

.faq-link:hover {
    opacity: 0.6;
}

.cta-subtle {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-olive, #7D7D6D);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: block;
    margin-top: 12px;
}

.cta-subtle:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ========================================
   PACHETE COACHING
   ======================================== */

.service-packages {
    padding: 80px 60px;
    background-color: var(--color-cream, #F5F2ED);
}

.service-packages h2 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--color-olive-dark, #5C5C4D);
    text-align: center;
    margin-bottom: 48px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.package-card {
    background-color: var(--color-olive, #7D7D6D);
    padding: 48px 32px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.package-card .package-btn,
.package-card a {
    margin-top: auto;
}

/* Card 1 - Olive */
.package-card:nth-child(1) {
    background-color: var(--color-olive, #7D7D6D);
}

/* Card 2 - Olive Dark */
.package-card:nth-child(2) {
    background-color: var(--color-olive-dark, #5C5C4D);
}

/* Card 3 - Charcoal */
.package-card:nth-child(3) {
    background-color: var(--color-charcoal, #2D2D2D);
}

/* Card 4 - Rose (gratuit) */
.package-card:nth-child(4),
.package-card-free {
    background-color: var(--color-rose, #E5D5CE);
}

.package-card-free h3,
.package-card-free .package-description {
    color: var(--color-olive-dark, #5C5C4D);
}

.package-card-free .package-btn,
.package-card:nth-child(4) .package-btn {
    color: var(--color-cream, #F5F2ED) !important;
    border: none !important;
    background: transparent !important;
    padding: 0;
    font-size: 14px;
}

.package-card-free .package-btn:hover,
.package-card:nth-child(4) .package-btn:hover {
    opacity: 0.8;
    color: var(--color-cream, #F5F2ED) !important;
    border: none !important;
    background: transparent !important;
}

/* Media queries pentru grid-ul de 4 coloane */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

.package-card h3 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--color-cream, #F5F2ED);
    margin: 0;
}

.package-description {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-cream, #F5F2ED);
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.package-btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-cream, #F5F2ED);
    text-decoration: none;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s ease;
}

.package-btn:hover {
    opacity: 0.8;
}

/* Buton "Hai să ne cunoaștem" pe paginile individuale */
.btn-meet,
.service-split .btn,
a[href*="#contact"].btn {
    background-color: var(--color-rose, #E5D5CE);
    color: var(--color-olive-dark, #5C5C4D);
    border: 2px solid var(--color-rose, #E5D5CE);
    border-radius: 24px 4px 24px 4px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-meet:hover,
.service-split .btn:hover,
a[href*="#contact"].btn:hover {
    background-color: transparent;
    color: var(--color-olive-dark, #5C5C4D);
    border-color: var(--color-olive-dark, #5C5C4D);
}

/* === SERVICE HERO MOBIL - TREBUIE SĂ FIE DUPĂ REGULILE DESKTOP === */

/* ============================================
   CONSOLIDATED MOBILE STYLES - @media (max-width: 768px)
   Toate regulile mobile consolidate într-un singur bloc
   ============================================ */

@media (max-width: 768px) {
    /* Root Variables */
    :root {
        --content-padding: 40px;
        --section-padding: 60px;
        --font-size-hero: 28px;
    }

    /* Contact Layout */
    .contact-layout-split {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 24px;
    }
    
    .contact-left-col {
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
        order: 2;
        padding-top: 20px;
        border-top: 1px solid rgba(125, 125, 109, 0.2);
    }
    
    .contact-logo .logo-text {
        font-size: 22px;
    }
    
    .contact-info {
        flex-direction: row;
        gap: 24px;
    }
    
    .contact-group-label {
        display: none;
    }
    
    .contact-group {
        align-items: flex-start;
        text-align: left;
        gap: 4px;
    }
    
    .contact-link {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    /* WhatsApp link - chenar alb pe mobil */
    a[href*="wa.me"].contact-link {
        border: none;
        border-radius: 24px 4px 24px 4px;
    }
    
    .contact-right-col {
        order: 1;
    }
    
    .contact-right-col .contact-title {
        text-align: center;
        font-size: 24px;
        margin-bottom: 22px;
    }
    
    .contact-form .btn-primary {
        align-self: center;
        width: 100%;
        max-width: 200px;
    }

    /* Footer */
    .footer {
        padding: 24px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-left {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .footer-right {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .footer-nav {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-faq-link {
        display: inline;
        font-family: var(--font-body);
        font-size: 14px;
        color: var(--color-cream, #F5F2ED);
        text-decoration: none;
        transition: opacity 0.3s ease;
    }
    
    .footer-faq-link:hover {
        opacity: 0.8;
    }
    
    .footer-faq-link-desktop {
        display: none;
    }
    
    .footer-credit {
        text-align: center;
    }

    /* Hero & About Grids */
    .hero-grid,
    .about-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }

    /* Hero - chenarul olive acoperă toată secțiunea pe mobil */
    .hero-image-side,
    .about-image-side,
    .story-image-side {
        order: -1;
        min-height: 50vh;
        width: 100%;
        height: 100%;
    }
    
    .hero-section {
        position: relative;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero-image-side {
        position: relative;
        margin-left: 0;
        margin-right: 0;
        padding: 24px 40px;
        display: flex;
        justify-content: center;
    }
    
    .hero-image-side::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--color-olive, #7D7D6D);
        z-index: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .hero-image-side img {
        position: relative;
        z-index: 1;
    }
    
    .hero-image {
        max-width: 280px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-content-side,
    .about-content-side,
    .story-content-side {
        min-height: 50vh;
    }

    .service-page {
        grid-template-columns: 1fr;
    }

    .service-page .content-side {
        padding: 60px 24px;
        order: 2;
    }

    .service-page .image-side {
        order: 1;
        min-height: auto;
        padding: 40px 24px;
    }

    .service-page .image-container,
    .service-page .circle-image-container {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        position: relative;
    }

    .service-page .image-frame,
    .service-page .circle-frame {
        width: 100%;
        height: auto;
        aspect-ratio: 350 / 450;
        position: relative;
    }

    .service-page .circle-image {
        width: 90%;
        height: auto;
        max-height: 100%;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .three-paths-title,
    .paths-section h2,
    .services-section h2,
    .section-title {
        text-align: center !important;
    }

    #contact,
    .contact-section {
        padding: 0 !important;
        margin: 0 !important;
    }

    #contact h2,
    .contact-title,
    .contact-section h2 {
        text-align: center !important;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 40px;
        padding-left: 0 !important;
    }

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

    .discovery-buttons {
        flex-direction: column;
        align-items: center;
    }

    .discovery-btn {
        width: 100%;
        max-width: 300px;
    }

    .story-section {
        min-height: auto;
    }

    .about-page {
        padding: 100px 24px;
    }

    .about-section .parallax-image {
        height: auto;
    }

    .about-image {
        max-width: 220px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-text {
        font-size: 16px;
    }

    .paths-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .path-image {
        margin-bottom: var(--space-sm);
    }

    .nav-menu {
        position: fixed !important;
        top: 70px;
        left: 0 !important;
        right: 0;
        background-color: var(--color-charcoal);
        flex-direction: column;
        padding: var(--space-lg);
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0) !important;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: var(--space-md);
    }

    .nav-lang {
        margin-top: var(--space-md);
    }

    .nav-toggle {
        display: flex;
    }

    /* Main Navigation */
    .main-nav {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-cream, #F5F2ED);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        gap: 24px;
        text-align: center;
        z-index: 999;
    }

    .main-nav.active {
        display: flex !important;
    }

    .main-nav a {
        color: var(--color-charcoal, #2D2D2D) !important;
        font-size: 18px;
        letter-spacing: 0.1em;
        font-weight: 400;
    }

    .hamburger {
        display: flex !important;
    }

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

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

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

    .lang-buttons-desktop {
        display: none !important;
    }

    .main-nav .lang-buttons {
        display: none !important;
    }

    .main-nav.active .lang-buttons {
        display: flex !important;
        justify-content: center;
        gap: 12px;
        padding: 12px 0;
    }

    .main-nav.active .lang-buttons a,
    .main-nav.active .lang-buttons span {
        font-size: 12px;
        opacity: 0.7;
        font-weight: 400;
    }

    .main-nav.active .lang-buttons a.active,
    .main-nav.active .lang-buttons span.active {
        opacity: 0.7;
        font-weight: 600;
        text-decoration: underline;
        text-decoration-thickness: 1px;
        text-underline-offset: 3px;
    }

    /* Paths Section */
    .paths-section {
        padding-top: 60px;
        padding-bottom: 20px;
    }
    
    .about-section {
        padding-top: 28px; /* Redus pentru spațiere uniformă cu testimoniale (~70px total) */
        padding-bottom: 20px;
        background-color: var(--color-beige, #E8DDD4) !important;
    }

    /* Hero Shadow */
    .hero-shadow {
        width: 250px;
        opacity: 0.3;
    }

    /* Mobile Break */
    .mobile-break {
        display: block;
    }

    /* Paths Title */
    .paths-title,
    h2.paths-title {
        text-align: center;
        margin-top: 24px;
        margin-bottom: 32px;
    }

    /* Hero Content Centering */
    .hero-content,
    .hero-content-side .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero h1,
    .hero p,
    .hero-headline,
    .hero-subheadline {
        text-align: center;
    }
    
    /* Afișează <br> în titluri pe mobil (dacă există) */
    .path-title br,
    .path-card h3 br,
    .service-card h3 br {
        display: block;
    }
    
    /* Hero headline mai mic pe mobil pentru a încăpea pe 2 rânduri */
    .hero-headline,
    .hero h1 {
        font-size: 24px !important; /* Redus de la 28px pentru a încăpea pe 2 rânduri */
        line-height: 1.3; /* Spațiere optimă între rânduri */
    }
    
    .hero-subheadline,
    .hero p {
        margin-bottom: 0;
    }
    
    .about-section h2,
    #about h2 {
        font-size: 28px;
        font-weight: 300;
        text-align: center;
    }
    
    .about-section p,
    .about-section .about-text,
    .about-section .about-content {
        text-align: center;
    }
    
    .about-section p {
        margin-bottom: 0;
    }
    
    .path-card,
    .service-card {
        text-align: center;
    }
    
    .path-card h3,
    .path-title,
    .service-card h3 {
        text-align: center !important;
    }
    
    .path-card p,
    .service-card p {
        text-align: center;
    }
    
    .path-text,
    .path-card p,
    .service-card p {
        margin-bottom: 0;
    }
    
    .path-card,
    .paths-grid .path-card {
        background-color: var(--color-beige, #E8DDD4);
        padding: 40px 24px;
        margin-bottom: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        position: relative;
        overflow: hidden;
    }
    
    .path-card:last-child,
    .paths-grid .path-card:last-child {
        margin-bottom: 0;
    }
    
    .path-card:nth-child(1),
    .path-card:nth-child(2),
    .path-card:nth-child(3),
    .paths-grid .path-card:nth-child(1),
    .paths-grid .path-card:nth-child(2),
    .paths-grid .path-card:nth-child(3) {
        background-color: var(--color-beige, #E8DDD4);
    }
    
    .path-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
        opacity: 0.08;
        pointer-events: none;
        z-index: 1;
    }
    
    .path-card > * {
        position: relative;
        z-index: 2;
    }
    
    .path-card h3,
    .service-card h3,
    .path-title {
        font-size: 20px; /* Redus pentru distribuție uniformă pe 2 rânduri */
        font-weight: 300;
        line-height: 1.4; /* Asigură spațiere corectă între rânduri */
        max-width: 280px; /* Limitează lățimea pentru wrapping uniform pe 2 rânduri */
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Titlu mai mic pentru cardul Coaching pe engleză */
    html[lang="en"] .path-card:nth-child(2) .path-title {
        font-size: 16px; /* Redus cu 4px de la 20px */
    }
    
    /* Titlu mai mic pentru cardul Women's Circle pe engleză */
    html[lang="en"] .path-card:nth-child(3) .path-title,
    html[lang="en"] .path-card:last-child .path-title {
        font-size: 16px; /* Redus cu 4px de la 20px */
    }
    
    /* Titlu mai mic pentru Women's Circle pe suedeza (index-sv.html) */
    html[lang="sv"] .path-card:nth-child(3) .path-title,
    html[lang="sv"] .path-card:last-child .path-title {
        font-size: 16px; /* Mai mic pentru titlul mai lung */
    }
    
    .about-section .section-label {
        font-size: 28px;
        font-weight: 300;
        margin-top: 24px;
    }

    /* Hero Buttons */
    .hero .btn,
    .hero-section .btn,
    .hero-content .btn,
    .hero-content-side .btn {
        margin-top: 22px !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        display: flex;
        width: fit-content;
        align-self: center;
        justify-content: center;
    }
    
    .path-card .btn,
    .path-content .btn,
    .service-card .btn {
        margin-top: 22px !important;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        margin-bottom: 0;
        display: block;
        width: fit-content;
        align-self: center;
    }
    
    .about-section .btn {
        margin-top: 22px !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        width: fit-content;
    }
    
    #contact .btn,
    .free-session-card .btn {
        margin-top: 22px !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        display: block;
        width: fit-content;
    }
    
    /* Exclude .service-cta buttons from #contact rules - higher specificity */
    section.service-cta#contact .btn,
    section.service-cta#contact .btn-primary,
    .service-cta#contact .btn,
    .service-cta#contact .btn-primary {
        margin-top: 0 !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        display: inline-block !important;
        width: auto !important;
    }

    /* Testimonials */
    .testimonials-section {
        padding-top: 48px;
        padding-right: 24px;
        padding-bottom: 42px; /* Redus pentru spațiere uniformă cu CTA (~90px total) */
        padding-left: 24px;
    }
    
    .testimonials-title {
        font-size: 28px;
        margin-bottom: 32px;
        margin-top: 0 !important;
    }
    
    .testimonials-carousel {
        gap: 16px;
    }
    
    /* Testimoniale - unul sub altul, doar 2 vizibile */
    .testimonials-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    
    .testimonial-card {
        padding: 16px 8px;
    }
    
    .testimonial-text {
        font-size: 17px;
    }
    
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    
    .carousel-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .carousel-dots {
        margin-top: 24px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    

    /* Path Card Titles */
    .path-card h3,
    .path-card .path-title,
    .service-card h3,
    .paths-grid .path-card h3,
    .paths-grid .path-title,
    h3.path-title {
        text-align: center !important;
        font-weight: 300 !important;
    }
    
    .path-content {
        text-align: center !important;
        align-items: center !important;
    }

    /* Final Overrides */
    .paths-section {
        padding-bottom: 24px !important;
    }
    
    .path-card:last-child {
        margin-bottom: 0 !important;
    }
    
    .about-section {
        padding-bottom: 24px !important;
    }
    
    #contact h2,
    .contact-title,
    .contact-section h2 {
        margin-top: 0 !important;
    }

    /* Service Pages */
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        text-align: center;
    }
    
    .experience-item h3 {
        font-size: 22px;
    }
    
    .experience-item p {
        font-size: 15px;
    }
    
    /* Ce vei experimenta - Mobil */
    /* Elimină liniile verticale de pe margini */
    /* Fix: "Ce vei experimenta" nu mai acoperă butonul din hero - scoate animația */
    .service-experience {
        transform: none !important;
        animation: none !important;
        transition: none !important;
        margin-top: 16px !important;
        margin-bottom: 0;
        padding: 48px 24px 24px 24px;
        padding-bottom: 36px; /* Ajustat pentru spațiere uniformă (~60px total cu split) */
        max-width: 100%;
        overflow: hidden;
        border: none;
        border-right: none;
        border-left: none;
        position: relative;
        z-index: 1;
    }

    .service-experience::before,
    .service-experience::after {
        display: none !important;
    }

    .service-experience h2 {
        font-size: 28px;
        margin-bottom: 32px;
        text-align: center;
    }

    /* Ce vei experimenta - Linii orizontale între carduri */
    .experience-pillars,
    .pillar-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .experience-pillars::before,
    .experience-pillars::after {
        display: none !important;
    }

    .pillar {
        padding: 24px 16px;
        text-align: center;
        border-right: none;
        border-left: none;
        border-bottom: 1px solid rgba(125, 125, 109, 0.2);
    }

    .pillar:last-child {
        border-bottom: none;
    }

    /* Elimină liniile verticale dacă există */
    .pillar::before,
    .pillar::after {
        display: none !important;
    }

    .pillar h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .pillar p {
        font-size: 15px;
        line-height: 1.6;
    }

    .service-experience .experience-grid,
    .experience-grid {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .service-for-who {
        padding: 40px 24px;
    }
    
    .service-for-who p {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Pentru cine e - Mobil */
    .service-split {
        margin-top: 0;
        padding-top: 4px; /* Redus cu 20px pentru a compensa margin-top: -20px de pe poza */
        padding-bottom: 50px; /* Redus pentru spațiere uniformă între secțiuni */
        padding-left: 24px;
        padding-right: 24px;
        overflow: hidden; /* Previne ca poza să iasă din secțiune */
    }

    /* Ascunde liniile decorative pe mobil */
    .service-split::before,
    .service-split::after,
    .service-guide::before,
    .service-guide::after,
    .service-experience::before,
    .service-experience::after,
    .split-layout::before,
    .split-layout::after,
    .guide-layout::before,
    .guide-layout::after,
    .service-hero-layout::before,
    .service-hero-layout::after {
        display: none !important;
    }

    .service-split,
    .service-guide,
    .split-layout,
    .guide-layout {
        border: none !important;
    }

    .split-left::before,
    .split-left::after,
    .split-right::before,
    .split-right::after {
        display: none !important;
    }

    .split-layout {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .split-left {
        order: 2;
        text-align: center;
        padding: 40px 24px;
        transform: none !important; /* Asigură că textul nu primește transform */
        position: relative; /* Context pentru z-index */
        z-index: 2; /* Asigură că textul rămâne deasupra */
    }

    .split-left h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .split-left p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .split-left .btn,
    .split-left .btn-text,
    .split-left .btn-meet {
        margin: 0 auto;
        display: inline-flex;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }

    .split-right {
        order: 1;
        display: flex;
        justify-content: center;
        background: transparent;
        padding: 0;
        border: none;
    }

    .split-right::before,
    .split-right::after {
        display: none !important;
    }

    /* Pentru cine e - Poză fără chenar */
    .split-image-block {
        display: flex;
        justify-content: center;
        padding: 0;
        background: transparent;
        border: none;
    }

    .split-image-block::before,
    .split-image-block::after {
        display: none;
    }

    .split-corner-image {
        width: 100%;
        max-width: 300px;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        border-radius: 12px;
        border: none;
        box-shadow: none;
        position: relative;
        margin-top: -20px;
    }

    /* Cine te ghidează - Mobil */
    .service-guide {
        padding-top: 40px; /* Redus pentru spațiere uniformă între secțiuni */
        padding-bottom: 60px; /* Redus, dar suficient pentru floating ±20px */
        padding-left: 24px;
        padding-right: 24px;
        overflow: hidden; /* Previne ca poza să iasă din secțiune */
    }

    .guide-layout {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    /* Cine te ghidează - Poză normală 4:5 fără chenar */
    .guide-image {
        order: 1;
        display: flex;
        justify-content: center;
        padding: 0 24px;
        background: transparent;
        position: relative;
        z-index: 1; /* Sub textul din .guide-content */
    }

    .guide-image::before,
    .guide-image::after {
        display: none;
    }

    .guide-photo {
        width: 100%;
        max-width: 280px;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        border-radius: 12px;
        margin-top: -20px;
        position: relative;
        border: none;
        box-shadow: none;
    }

    .guide-content {
        order: 2;
        text-align: center;
        padding: 40px 24px;
        position: relative;
        z-index: 2; /* Deasupra pozei din .guide-image */
    }

    .guide-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .guide-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .bio-signature {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .guide-btn {
        margin: 0 auto;
        display: inline-flex;
    }
    
    /* Detalii practice - Grid fix pe mobil */
    .service-details {
        padding-top: 30px; /* Redus pentru spațiere uniformă între secțiuni */
        padding-bottom: 48px;
        padding-left: 24px;
        padding-right: 24px;
        overflow: hidden;
    }

    .service-details .container {
        padding: 0;
        max-width: 100%;
    }

    .service-details h2 {
        font-size: 28px;
        margin-bottom: 32px;
        text-align: center;
    }

    .details-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        max-width: 100%;
        margin: 0 auto 24px auto;
        padding: 0;
    }

    .details-row:last-child {
        margin-bottom: 0;
    }

    /* Detalii practice - Grid compact pentru circle (single) */
    .details-grid-single {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 400px;
        margin: 0 auto;
    }

    .details-grid-single .detail-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    /* Grid dual — Somatic Dance pe mobil */
    .details-grid-dual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 20px 0;
        max-width: 340px;
        margin: 0 auto;
        padding: 0;
        align-items: stretch;
    }
    
    .details-grid-dual .details-column-left,
    .details-grid-dual .details-column-right {
        display: contents;
    }
    
    .details-grid-dual .details-column-left .detail-item:nth-child(1),
    .details-grid-dual .details-column-right .detail-item:nth-child(1) {
        grid-row: 1;
    }
    
    .details-grid-dual .details-column-left .detail-item:nth-child(2),
    .details-grid-dual .details-column-right .detail-item:nth-child(2) {
        grid-row: 2;
    }
    
    .details-grid-dual .details-column-left .detail-item:nth-child(3),
    .details-grid-dual .details-column-right .detail-item:nth-child(3) {
        grid-row: 3;
    }
    
    .details-grid-dual .details-column-left .detail-item:nth-child(4),
    .details-grid-dual .details-column-right .detail-item:nth-child(4) {
        grid-row: 4;
    }
    
    .details-grid-dual .details-column-left .detail-item {
        grid-column: 1;
        border-right: 1px solid rgba(125, 125, 109, 0.2);
        padding-right: 16px;
    }
    
    .details-grid-dual .details-column-right .detail-item {
        grid-column: 2;
        padding-left: 16px;
    }
    
    .details-grid-dual .details-column-left .detail-item,
    .details-grid-dual .details-column-right .detail-item {
        border-bottom: none;
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .details-grid-dual .detail-item-limba {
        order: 99;
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 20px;
        margin-top: 16px;
        border-top: 1px solid rgba(125, 125, 109, 0.2);
        border-right: none;
        border-bottom: none;
    }

    /* Reguli generale pentru detail-item (aplică și pentru single) */
    .detail-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding: 0 8px;
    }

    .detail-label {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .detail-value {
        font-size: 15px;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .details-grid-single .detail-item-limba-single {
        border-right: 1px solid rgba(125, 125, 109, 0.2);
    }

    /* Pentru ecrane foarte mici */
    @media (max-width: 380px) {
        .details-row,
        .details-grid,
        .details-grid-single {
            grid-template-columns: 1fr;
            gap: 16px;
        }
    }

    /* Container padding îmbunătățit */
    .container {
        padding: 0 24px;
        box-sizing: border-box;
        max-width: 100%;
    }

    section {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* CTA Final - Mobil */
    .service-cta {
        padding: 48px 24px;
    }
    
    /* Titlu CTA mobil - suprascrie #contact h2 */
    #contact.service-cta h2,
    section.service-cta#contact h2,
    .service-cta h2 {
        font-size: 28px !important;
        margin-bottom: 12px;
    }
    
    .service-cta p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    section.service-cta .btn,
    section.service-cta .btn-primary,
    .service-cta .btn,
    .service-cta .btn-primary {
        color: var(--color-charcoal, #2D2D2D) !important;
        border: 2px solid #FFFFFF !important;
        border-radius: 24px 4px 24px 4px !important;
        background: #FFFFFF !important; /* Alb permanent pe mobil */
        padding: 12px 24px;
        font-size: 14px;
        width: auto !important;
    }
    
    section.service-cta .btn:hover,
    section.service-cta .btn-primary:hover,
    .service-cta .btn:hover,
    .service-cta .btn-primary:hover {
        background: #FFFFFF !important; /* Rămâne alb și la hover */
        color: var(--color-charcoal, #2D2D2D) !important;
    }
    
    section.service-cta .btn:active,
    section.service-cta .btn-primary:active,
    .service-cta .btn:active,
    .service-cta .btn-primary:active {
        background: #FFFFFF !important; /* Rămâne alb și la click */
        color: var(--color-charcoal, #2D2D2D) !important;
    }
    
    section.service-cta .btn:focus,
    section.service-cta .btn-primary:focus,
    .service-cta .btn:focus,
    .service-cta .btn-primary:focus {
        background: #FFFFFF !important; /* Rămâne alb și la focus */
        color: var(--color-charcoal, #2D2D2D) !important;
    }

    /* Pachete - Mobil */
    .service-packages {
        padding: 48px 24px;
    }

    .service-packages h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

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

    .package-card {
        padding: 32px 24px;
    }

    .package-card h3 {
        font-size: 24px;
    }

    .package-description {
        font-size: 15px;
    }

    /* FAQ - Mobil */
    .faq-section {
        padding: 60px 24px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 0;
    }

    .faq-icon {
        font-size: 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    /* FAQ Page - Mobil */
    .faq-page-hero {
        padding: 80px 24px 32px 24px;
    }
    
    .faq-page-hero h1 {
        font-size: 32px;
    }
    
    .faq-category-title {
        font-size: 24px;
    }

    /* FAQ Link - Mobil */
    .faq-link-container {
        padding: 32px 24px;
        text-align: center;
        background-color: transparent;
    }

    .faq-link {
        font-size: 20px;
    }
    
    .faq-link-container {
        text-align: center;
    }

    /* Service Hero - Mobil */
    .service-hero {
        min-height: auto;
        padding: 0;
        padding-bottom: 24px;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
        overflow: visible;
    }

    .service-hero-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .service-hero-image {
        order: 1;
        padding: 24px;
        width: 100%;
        display: flex;
        justify-content: center;
        background: transparent;
    }

    .service-hero-image img {
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
        display: block;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        border: none;
        border-radius: 12px;
    }

    .service-hero-content {
        order: 2;
        padding: 32px 24px 16px 24px;
        text-align: center;
        width: 100%;
        background: transparent;
    }

    .service-hero-content h1 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    /* Subtitlu Hero - Mobil: rânduri separate, spațiere normală */
    .service-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .subtitle-line-1 {
        display: inline; /* Text continuu, la fel ca pe desktop */
        margin-bottom: 0;
        line-height: 1.5;
    }

    .subtitle-line-2 {
        display: inline; /* Text continuu, la fel ca pe desktop */
        line-height: 1.5;
    }

    .subtitle-line-1::after {
        content: none;
    }

    /* Buton Hero - roz pe paginile de servicii (toate 3 paginile) */
    .service-hero-content .btn,
    .service-hero-content a.btn {
        background: var(--color-rose, #E5D5CE) !important;
        color: var(--color-olive-dark, #5C5C4D) !important;
        border: none !important;
        border-radius: 24px 4px 24px 4px !important;
        padding: 12px 24px !important; /* Mărit de la 10px 20px */
        font-size: 14px !important; /* Mărit de la 13px */
        margin: 0 auto;
        display: inline-flex;
        position: relative;
        z-index: 3;
    }
    
    .service-hero-content .btn::after,
    .service-hero-content a.btn::after {
        content: none !important;
    }

    .service-hero-content .btn:hover,
    .service-hero-content a.btn:hover {
        background: var(--color-beige, #E8DDD4) !important;
    }

    /* Butoane - Mobil */
    .btn,
    .btn-primary,
    .btn-meet,
    .btn-text {
        font-size: 14px;
        padding: 12px 24px;
    }

    .btn-text {
        justify-content: center;
        width: 100%;
    }

    /* Footer - lățime consistentă pe toate paginile */
    .footer {
        width: 100%;
        max-width: 100%;
        padding: 20px 24px;
        overflow-x: hidden;
    }

    .footer-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    /* Previne overflow pe mobil */
    body {
        overflow-x: hidden;
    }

    /* Pachete Coaching - cartonașe mai mici pe mobil */
    .package-card {
        padding: 24px 16px;
        font-size: 14px;
    }
    
    .package-card h3 {
        font-size: 20px;
    }
    
    .package-card p {
        font-size: 13px;
    }
    
    /* Buton 30 minute - doar text pe mobil */
    .package-card-free .package-btn,
    .package-card:nth-child(4) .package-btn {
        color: var(--color-cream, #F5F2ED) !important;
        border: none !important;
        background: transparent !important;
        padding: 0;
        font-size: 14px;
    }
    
    .package-card-free .package-btn:hover,
    .package-card:nth-child(4) .package-btn:hover {
        opacity: 0.8;
        color: var(--color-cream, #F5F2ED) !important;
        border: none !important;
        background: transparent !important;
    }

    section,
    .container,
    .service-details,
    .details-row,
    .details-grid {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* ========================================
   LEGAL PAGES (Privacy, Terms)
   ======================================== */

.legal-page {
    padding: 120px 60px 80px 60px;
    background-color: var(--color-cream, #F5F2ED);
    min-height: 70vh;
}

.legal-page h1 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--color-olive-dark, #5C5C4D);
    margin-bottom: 8px;
}

.legal-date {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-olive, #7D7D6D);
    margin-bottom: 40px;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-family: var(--font-heading, 'Cormorant Garamond'), serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--color-olive-dark, #5C5C4D);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-charcoal, #2D2D2D);
    margin-bottom: 16px;
}

/* Mobil */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 24px 60px 24px;
    }
    
    .legal-page h1 {
        font-size: 32px;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
}
