/* ================================
   1. ROOT VARIABLES
================================ */

:root {
    /* Dark Theme */
    --bg: #0F0F10;
    --bg2: #1A1A1D;
    --text: #F5F5F5;
    --muted: #CFCFCF;

    --rose: #C6A27D;
    --rose2: #B98B64;
    --rose-dim: rgba(198,162,125,0.15);

    --glass: rgba(255,255,255,0.06);
    --glass-l: rgba(0,0,0,0.05);

    --shadow-md: 0 14px 36px rgba(0,0,0,0.45);
    --shadow-lg: 0 24px 60px rgba(0,0,0,0.55);
    --shadow-soft: 0 8px 24px rgba(0,0,0,0.25);

    --blur: 14px;
    --radius: 14px;
    --radius-sm: 8px;

    --t-fast: .25s cubic-bezier(.2,.6,.2,1);
    --t-slow: .45s cubic-bezier(.2,.6,.2,1);

    /* Light Theme */
    --bg-l: #FFF9F4;
    --bg2-l: #F1E9E2;
    --text-l: #1A1A1A;
    --muted-l: #5A5148;
}


/* ================================
   2. RESET + TYPOGRAPHY
================================ */

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

html, body {
    height: 100%;
    scroll-behavior: auto !important;
    scroll-padding-top: 90px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    line-height: 1.65;
    transition: background var(--t-fast), color var(--t-fast);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.light {
    background: var(--bg-l);
    color: var(--text-l);
}

.no-scroll {
    overflow: hidden !important;
}

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


/* ================================
   GLOBAL UTILITIES
================================ */

/* Section eyebrow label */
.section-eyebrow {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rose);
    margin-bottom: 0.8rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Section titles */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 600;
    color: var(--rose);
}

/* Reusable glass card (interior pages) */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    border-radius: var(--radius);
    border: 1px solid rgba(198,162,125,0.2);
    box-shadow: var(--shadow-md);
    transition: var(--t-slow);
}

body.light .glass-card {
    background: var(--glass-l);
}

/* Gold glow wrapper */
.glow-gold {
    position: relative;
}

.glow-gold::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(198,162,125,0.25), transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(50px);
    z-index: 0;
}

body.light .glow-gold::before {
    background: radial-gradient(circle, rgba(185,139,100,0.2), transparent 70%);
}

/* Hide on mobile helper */
.hide-mobile { display: inline; }
@media (max-width: 768px) {
    .hide-mobile { display: none; }
}


/* ================================
   3. NAVBAR
================================ */

nav {
    width: 100%;
    padding: 0.9rem max(2.5rem, calc(50vw - 650px));
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(15,15,16,0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(198,162,125,0.15);
    transition: background var(--t-fast);
}

body.light nav {
    background: rgba(255,249,244,0.7);
    border-color: rgba(185,139,100,0.25);
}

.brand-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo img {
    height: 40px;
    transition: .3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    transition: var(--t-fast);
    opacity: 0.85;
}

nav ul li a:hover {
    color: var(--rose);
    opacity: 1;
}

body.light nav ul li a {
    color: var(--text-l);
}

@media(max-width: 900px) {
    nav ul {
        display: none;
    }
    nav {
        justify-content: space-between;
        padding: 0.8rem 1.5rem;
    }
}


/* ================================
   4. HAMBURGER 3D
================================ */

.hamburger3d {
    width: 36px;
    height: 26px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 20000;
}

.hamburger3d span {
    height: 3px;
    background: var(--rose);
    border-radius: 10px;
    transition: 0.4s ease;
    box-shadow: 0 1px 6px rgba(198,162,125,0.3);
}

.hamburger3d:hover {
    transform: scale(1.06);
}

.hamburger3d.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}
.hamburger3d.active span:nth-child(2) {
    opacity: 0;
}
.hamburger3d.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

@media(max-width: 900px) {
    .hamburger3d {
        display: flex;
    }
}


/* ================================
   5. MOBILE MENU DRAWER
================================ */

#mobileMenu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transition: .4s ease;
    z-index: 15000;
}

#mobileMenu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    position: absolute;
    right: -80%;
    top: 0;
    width: 75%;
    max-width: 320px;
    height: 100%;
    background: rgba(15,15,16,0.95);
    backdrop-filter: blur(24px);
    padding: 5rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    border-left: 1px solid rgba(198,162,125,0.2);
    transition: right .5s cubic-bezier(.18,.89,.32,1.15);
}

body.light .mobile-menu-content {
    background: rgba(255,249,244,0.95);
}

#mobileMenu.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-content a {
    color: var(--rose);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--t-fast);
}

.mobile-menu-content a:hover {
    opacity: 0.7;
}


/* ================================
   6. SPLASH SCREEN CINEMATIC
================================ */

#splash {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    opacity: 1;
    pointer-events: all;
    transition: opacity 1s ease;
}

body.light #splash {
    background: var(--bg-l);
}

.splash-content {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: splashFadeIn 1s ease forwards;
}

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

.splash-image {
    width: 350px;
    max-width: 85%;
    border-radius: var(--radius);
    object-fit: cover;
    margin: 0 auto 2.5rem auto; /* Centers the block image */
    box-shadow: var(--shadow-lg);
}

.splash-quote {
    font-size: 1.3rem;
    color: var(--rose);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
    font-style: italic;
}

.splash-author {
    font-style: normal;
    font-size: 0.9rem;
    opacity: 0.7;
}

.splash-hide {
    opacity: 0 !important;
    pointer-events: none !important;
}


/* ================================
   7. THEME TOGGLE
================================ */

.theme-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid rgba(198,162,125,0.35);
    color: var(--rose);
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(var(--blur));
    box-shadow: var(--shadow-soft);
    z-index: 99999;
    transition: var(--t-fast);
    opacity: 0;
}

body.light .theme-floating {
    background: var(--glass-l);
    color: var(--rose);
}

.theme-floating:hover {
    transform: scale(1.12);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .theme-floating {
        bottom: 75px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}


/* ================================
   8. HERO SECTION — EDITORIAL PREMIUM
================================ */

#hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 8rem 2.5rem 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(198,162,125,0.15), transparent 55%),
        linear-gradient(160deg, var(--bg), var(--bg2));
    z-index: -1;
}

body.light #hero::before {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(198,162,125,0.12), transparent 55%),
        linear-gradient(160deg, var(--bg-l), var(--bg2-l));
}

.hero-container {
    width: 100%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

/* Hero Left */
.hero-left {
    flex: 1;
    max-width: 600px;
    opacity: 0;
    transform: translateY(24px);
    animation: heroFade 0.8s ease 0.3s forwards;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--rose);
    margin-bottom: 1.2rem;
    opacity: 0.85;
    font-weight: 600;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text);
}

body.light .hero-title {
    color: var(--text-l);
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--rose);
    margin-bottom: 1.8rem;
    opacity: 0.7;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.75;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* CTA */
.hero-cta {
    display: inline-block;
    background: var(--rose);
    color: #0F0F10;
    padding: 0.95rem 2.4rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 24px rgba(198,162,125,0.3);
    transition: var(--t-fast);
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(198,162,125,0.4);
}

body.light .hero-cta {
    background: rgba(198,162,125,0.9);
    color: #0F0F10;
}

/* Hero Right — Image */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

@keyframes floatPremium {
    0% { transform: translateY(0px); box-shadow: var(--shadow-lg); }
    50% { transform: translateY(-12px); box-shadow: 0 32px 65px rgba(0,0,0,0.6); }
    100% { transform: translateY(0px); box-shadow: var(--shadow-lg); }
}

body.light @keyframes floatPremium {
    0% { transform: translateY(0px); box-shadow: var(--shadow-lg); }
    50% { transform: translateY(-12px); box-shadow: 0 32px 65px rgba(0,0,0,0.25); }
    100% { transform: translateY(0px); box-shadow: var(--shadow-lg); }
}

.hero-img-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: floatPremium 8s ease-in-out infinite;
    transform: translateZ(0);
}

.hero-img-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid rgba(198,162,125,0.2);
    pointer-events: none;
}

.hero-img {
    width: 380px;
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-img-frame:hover .hero-img {
    transform: scale(1.03);
}

/* HERO MOBILE */
@media (max-width: 900px) {
    #hero {
        padding: 6.5rem 1.5rem 3.5rem;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-eyebrow {
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-divider {
        margin: 0 auto 1.5rem;
    }

    .hero-subtitle {
        text-align: center;
        font-size: 1rem;
    }

    .hero-img {
        width: 260px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-cta {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
}


/* ================================
   9. DESPRE MINE
================================ */

#despre {
    padding: 7rem 2rem;
    background: var(--bg2);
}

body.light #despre {
    background: var(--bg2-l);
}

.despre-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

/* Image */
.despre-img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.despre-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(198,162,125,0.15);
    border-radius: var(--radius);
    pointer-events: none;
}

.despre-img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
    transition: transform 0.8s ease;
}

.despre-img-wrapper:hover .despre-img {
    transform: scale(1.03);
}

/* Text */
.despre-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rose);
    margin-bottom: 0.8rem;
    font-weight: 600;
    opacity: 0.85;
}

.despre-title {
    font-size: 2.3rem;
    color: var(--rose);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.despre-text {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 2.5rem;
}

/* Stat cards */
.despre-stats {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.despre-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(198,162,125,0.15);
    border-radius: var(--radius-sm);
    transition: var(--t-fast);
}

body.light .despre-stat {
    background: var(--glass-l);
}

.despre-stat:hover {
    border-color: var(--rose);
    transform: translateY(-3px);
}

.despre-stat-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.despre-stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--rose);
    letter-spacing: 0.2px;
}

/* CTA */
.despre-cta {
    display: inline-block;
    color: var(--rose);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(198,162,125,0.4);
    padding-bottom: 3px;
    transition: var(--t-fast);
}

.despre-cta:hover {
    opacity: 0.7;
    border-color: var(--rose);
}

/* Despre Responsive */
@media (max-width: 900px) {
    #despre {
        padding: 5rem 1.5rem;
    }

    .despre-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .despre-img-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .despre-stats {
        flex-direction: column;
        gap: 0.8rem;
    }

    .despre-stat {
        justify-content: center;
    }

    .despre-title {
        font-size: 1.9rem;
    }
}


/* ================================
   10. SERVICII — PREMIUM GRID
================================ */

#servicii {
    padding: 7rem 2rem;
    background: var(--bg);
}

body.light #servicii {
    background: var(--bg-l);
}

.servicii-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 1rem;
}

.servicii-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    font-size: 1rem;
    opacity: 0.7;
    line-height: 1.6;
}

body.light .servicii-subtitle {
    opacity: 0.8;
}

.servicii-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Service card */
.serviciu-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    padding: 2.2rem 1.8rem 1.8rem;
    border-radius: var(--radius);
    text-align: left;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(198,162,125,0.1);
    transition: var(--t-slow);
    position: relative;
}

body.light .serviciu-card {
    color: var(--text-l);
    background: var(--glass-l);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.serviciu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(198,162,125,0.4);
    box-shadow: var(--shadow-md);
}

.serviciu-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--rose);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.serviciu-card h3 {
    font-size: 1.2rem;
    color: var(--rose);
    margin-bottom: 0.7rem;
    font-weight: 600;
    line-height: 1.3;
}

.serviciu-card p {
    font-size: 0.92rem;
    opacity: 0.75;
    line-height: 1.6;
    flex: 1;
}

body.light .serviciu-card p {
    color: var(--text-l);
}

.serviciu-arrow {
    display: inline-block;
    color: var(--rose);
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.5;
    transition: var(--t-fast);
}

.serviciu-card:hover .serviciu-arrow {
    opacity: 1;
    transform: translateX(4px);
}

@media (max-width: 900px) {
    #servicii {
        padding: 5rem 1.5rem;
    }

    .servicii-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .serviciu-card {
        padding: 1.8rem 1.5rem 1.5rem;
    }

    .servicii-title {
        font-size: 1.9rem;
    }

    .servicii-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .servicii-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ================================
   11. VALORI
================================ */

#valori {
    padding: 7rem 2rem;
    background: var(--bg2);
}

body.light #valori {
    background: var(--bg2-l);
}

.valori-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.valori-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 3rem;
}

.valori-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.valoare-card {
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    padding: 2.2rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(198,162,125,0.1);
    box-shadow: var(--shadow-soft);
    transition: var(--t-slow);
}

.valoare-card:hover {
    transform: translateY(-5px);
    border-color: rgba(198,162,125,0.35);
    box-shadow: var(--shadow-md);
}

body.light .valoare-card {
    background: var(--glass-l);
    color: var(--text-l);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.valoare-icon {
    font-size: 2.4rem;
    color: var(--rose);
    margin-bottom: 1rem;
}

.valoare-card h3 {
    font-size: 1.15rem;
    color: var(--rose);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.valoare-card p {
    opacity: 0.8;
    font-size: 0.92rem;
    line-height: 1.6;
}

body.light .valoare-card p {
    color: var(--text-l);
}

@media (max-width: 900px) {
    #valori {
        padding: 5rem 1.5rem;
    }

    .valori-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .valori-title {
        font-size: 1.9rem;
    }
}

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


/* ================================
   12. FAQ SECTION
================================ */

.faq-section {
    padding: 7rem 2rem;
    background: var(--bg);
}

body.light .faq-section {
    background: var(--bg-l);
}

.faq-outer {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 3rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid rgba(198,162,125,0.12);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--t-fast);
}

body.light .faq-item {
    background: var(--glass-l);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.3rem 1.5rem;
    background: none;
    border: none;
    color: var(--rose);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--t-fast);
    font-family: inherit;
}

.faq-icon {
    font-size: 1.3rem;
    transition: transform var(--t-fast);
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-item.active {
    border-color: rgba(198,162,125,0.35);
}

.faq-answer {
    max-height: 0;
    padding: 0 1.5rem;
    opacity: 0;
    transition: all var(--t-slow);
}

.faq-answer p {
    margin: 0 0 1.3rem;
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.85;
}

.faq-answer p a {
    color: var(--rose);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.3rem;
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 5rem 1.5rem;
    }

    .faq-title {
        font-size: 1.9rem;
    }

    .faq-question {
        font-size: 0.98rem;
        padding: 1.2rem 1.2rem;
    }
}


/* ================================
   13. TESTIMONIALE
================================ */

#testimoniale {
    padding: 7rem 2rem;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

body.light #testimoniale {
    background: var(--bg2-l);
}

.testi-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testi-title {
    font-size: 2.2rem;
    color: var(--rose);
    margin-bottom: 3rem;
    font-weight: 600;
}

.testi-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform .6s cubic-bezier(.25,.6,.3,1);
}

.testi-card {
    min-width: 100%;
    padding: 2.5rem 2rem;
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(198,162,125,0.12);
    transform: scale(.97);
    opacity: .85;
    transition: .4s ease;
}

.testi-card.active {
    transform: scale(1);
    opacity: 1;
}

.testi-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    opacity: .85;
    font-style: italic;
}

.testi-card h4 {
    font-size: 1.1rem;
    color: var(--rose);
    font-weight: 600;
}

body.light .testi-card {
    background: var(--glass-l);
    color: var(--text-l);
}

body.light .testi-card p {
    color: var(--text-l);
}

/* Arrows */
.testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid rgba(198,162,125,0.3);
    color: var(--rose);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--t-fast);
    box-shadow: var(--shadow-soft);
    user-select: none;
    z-index: 10;
}

.testi-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-md);
}

#testiPrev { left: -10px; }
#testiNext { right: -10px; }

@media (max-width: 900px) {
    #testimoniale {
        padding: 5rem 1.5rem;
    }

    .testi-title {
        font-size: 1.9rem;
    }

    .testi-card {
        padding: 2rem 1.5rem;
    }

    .testi-card p {
        font-size: 1rem;
    }

    #testiPrev { left: 4px; }
    #testiNext { right: 4px; }

    .testi-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}


/* ================================
   14. CONTACT
================================ */

#contact {
    padding: 7rem 2rem;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

body.light #contact {
    background: var(--bg-l);
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 0 auto;
}

.contact-map {
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(198,162,125,0.15);
    box-shadow: var(--shadow-soft);
    transition: var(--t-fast);
}

body.light .contact-info {
    background: var(--glass-l);
    color: var(--text-l);
}

.contact-title {
    font-size: 2rem;
    color: var(--rose);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
}

.contact-item a {
    text-decoration: none;
    color: var(--rose);
    font-weight: 600;
    transition: var(--t-fast);
}

.contact-item a:hover {
    opacity: 0.7;
}

.ci-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-socials {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid rgba(198,162,125,0.25);
    color: var(--rose);
    box-shadow: var(--shadow-soft);
    transition: .3s ease;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Cinematic scroll-in */
.cine-section.visible .cinematic-map,
.cine-section.visible .cinematic-card {
    opacity: 1;
    transform: translateY(0);
}

.cinematic-map, .cinematic-card {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(.15,.65,.3,1);
}

@media (max-width: 900px) {
    #contact {
        padding: 5rem 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        width: 100%;
        text-align: center;
        gap: 2rem;
    }

    .contact-map, .contact-info {
        width: 92%;
        margin: 0 auto;
    }

    .contact-map {
        height: 280px;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-title {
        font-size: 1.8rem;
    }
}


/* ================================
   15. FOOTER
================================ */

footer {
    position: relative;
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: var(--bg2);
    overflow: hidden;
    z-index: 1;
}

body.light footer {
    background: var(--bg2-l);
}

footer::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(198,162,125,0.18), transparent 70%);
    filter: blur(60px);
    opacity: .7;
    z-index: -1;
}

body.light footer::before {
    background: radial-gradient(circle, rgba(185,139,100,0.15), transparent 70%);
}

.footer-line {
    width: 80%;
    height: 1px;
    margin: 0 auto 2rem;
    opacity: .6;
    background: linear-gradient(90deg, transparent, rgba(198,162,125,0.5), transparent);
}

body.light .footer-line {
    background: linear-gradient(90deg, transparent, rgba(185,139,100,0.4), transparent);
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 0.8rem;
}

.footer-info {
    font-size: 0.92rem;
    color: var(--text);
    opacity: .65;
    margin-bottom: 2rem;
    line-height: 1.6;
}

body.light .footer-info {
    color: var(--text-l);
    opacity: .75;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--rose);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--t-fast);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    margin-top: 2rem;
    font-size: .88rem;
    color: var(--muted);
    opacity: .7;
}

body.light .footer-copy {
    color: var(--muted-l);
    opacity: .8;
}

.footer-disclaimer {
    font-size: 0.78rem;
    opacity: 0.6;
}




/* ================================
   17. UTILITIES
================================ */

#pageWrapper {
    min-height: 100vh;
    transition: filter var(--t-fast), transform var(--t-fast);
}

#pageWrapper.page-blur {
    filter: blur(12px) brightness(0.6);
}

body.light #pageWrapper.page-blur {
    filter: blur(12px) brightness(1.2);
}


/* ================================
   18. CINEMATIC ANIMATIONS
================================ */

.cine-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Avantaje section (for backward compat with ids) */
.avantaje-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.avantaje-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 3rem;
}

/* ================================
   19. DESPRE PAGE SPECIFIC
================================ */

.despre-page-card {
    padding: 3rem;
    margin-bottom: 2rem;
}

.despre-page-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.despre-page-img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.despre-page-img {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.despre-page-img-wrapper:hover .despre-page-img {
    transform: scale(1.03);
}

.despre-page-title {
    color: var(--rose);
    margin-bottom: 1.5rem;
    font-size: 1.85rem;
    font-weight: 600;
}

.despre-page-text {
    line-height: 1.8;
}

.despre-page-text p {
    text-align: justify;
    text-align-last: left;
    margin-bottom: 1.5rem;
    color: var(--text);
    opacity: 0.9;
    font-size: 1.05rem;
    hyphens: auto;
}

body.light .despre-page-text p {
    color: var(--text-l);
}

@media (max-width: 900px) {
    .despre-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .despre-page-card {
        padding: 2rem 1.5rem;
    }
}
