* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Special Gothic', sans-serif; /* Updated font family */
}

/* Fundalul de baza al site-ului. Era declarat inline doar in index.html, intr-un
   bloc <style> ramas din faza de previzualizare a widget-ului de chat. Mutat aici
   ca sa se aplice unitar pe toate paginile - aceeasi nuanta ca preloader-ul, ca
   trecerea de la loader la continut sa fie invizibila. */
body {
    min-height: 100vh;
    background-color: #faf9f4;
}

/* Smooth native scrolling for in-page anchors */
html { scroll-behavior: smooth; }
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #faf9f4; /* Light, matches the site's off-white aesthetic */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important; /* Ensures it stays above all other content */
    transition: opacity 0.45s ease, visibility 0.45s ease; /* Smooth fade away */
}

/* Loader Content Wrapper */
.loader-content {
    text-align: center;
}

/* Brand mark: pulses gently instead of a generic spinner */
.loader-logo {
    font-family: "Special Gothic", sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    letter-spacing: 6px;
    color: #1d1d1d;
    text-transform: uppercase;
    animation: logoPulse 1.4s ease-in-out infinite;
}

/* Thin progress line beneath the logo */
.loader-bar {
    position: relative;
    width: 130px;
    height: 3px;
    margin: 24px auto 0;
    background: rgba(29, 29, 29, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar span {
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: #e8d400;
    border-radius: 2px;
    animation: loaderSlide 1.2s ease-in-out infinite;
}

/* Animations */
@keyframes logoPulse {
    0% { opacity: 0.35; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.35; transform: scale(0.97); }
}

@keyframes loaderSlide {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* Class added by JS to fade out and hide the screen */
.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Prevents the overlay from blocking interactions */
}

@media (prefers-reduced-motion: reduce) {
    .loader-logo,
    .loader-bar span {
        animation: none;
    }
}

/* Desktop header styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 42px;
    background-color: transparent;
    z-index: 10;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.3s ease, color 0.3s ease;
    will-change: transform, opacity;
}

.site-header .logo {
    font-size: 1.75rem;
    font-weight: bold;
    color: #e9e9e9;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.site-header .logo::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #8aff3c;
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.site-header .logo:hover {
    color: #8aff3c;
    transform: scale(1.08) rotate(-1deg);
    text-shadow: 0 0 14px rgba(138, 255, 60, 0.75);
}

.site-header .logo:hover::after {
    width: 70%;
    left: 15%;
}

.site-header a {
    text-decoration: none;
    color: #e9e9e9;
}

.site-header nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.site-header nav a {
    text-decoration: none;
    color: #e9e9e9;
    font-weight: 600;
    font-size: 1.12rem;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.site-header nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 2px;
    background-color: #8aff3c;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.site-header nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header.header--dark .logo,
.site-header.header--dark nav a {
    color: #111111;
}

.site-header.header--dark .logo:hover {
    color: #111111;
    text-shadow: none;
}

.site-header.header--dark nav a::after {
    background-color: #111111;
}

.site-header.hidden {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
}

/* =====================================================================
   HEADER-RESPONSIVE.CSS
   =====================================================================
   Adauga acest fisier DUPA style.css-ul tau existent (fie printr-un
   <link> separat, fie copiind continutul la finalul lui style.css).
   Ordinea conteaza: trebuie incarcat dupa CSS-ul desktop, ca sa poata
   suprascrie corect in interiorul media query-urilor de mai jos.

   NU modifica nimic din stilurile tale desktop existente. Contine
   DOAR reguli noi (hamburger, meniu mobil) si media queries care se
   aplica exclusiv sub 1200px.
   ===================================================================== */

/* =====================================================================
   1) TABLETA: 1001px - 1199px
   Doar spatiere si font-size mai mici pe navigatia existenta.
   Hamburger-ul NU apare inca la acest breakpoint.
   ===================================================================== */
@media (max-width: 1199px) and (min-width: 1001px) {
    .site-header nav ul {
        gap: 22px;
    }

    .site-header nav ul li a {
        font-size: 15px;
    }
}

/* =====================================================================
   2) MOBIL: 1000px si sub
   Ascunde navigatia desktop, afiseaza hamburger-ul si face header-ul
   sa ocupe bine latimea ecranului.
   ===================================================================== */
@media (max-width: 1000px) {
    .site-header nav {
        display: none;
    }

    .site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        box-sizing: border-box;
    }
}

/* =====================================================================
   3) BUTON HAMBURGER
   Ascuns implicit (desktop + tableta); afisat doar sub 991px.
   ===================================================================== */
.hamburger {
    display: none; /* implicit ascuns - vizibil doar in media query de mai jos */
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

.hamburger:focus-visible {
    outline: 2px solid #e8d400;
    outline-offset: 4px;
    border-radius: 4px;
}

.hamburger__line {
    display: block;
    width: 26px;
    height: 2px;
    border-radius: 2px;
    /* currentColor: linia ia automat culoarea textului din header,
       deci se adapteaza singura la starile dark/light ale header-ului */
    background-color: currentColor;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1),
                opacity .35s ease;
    transform-origin: center;
}

/* Animatia hamburger -> X, controlata de aria-expanded (comutat din JS) */
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }
}

/* =====================================================================
   4) MENIU MOBIL FULLSCREEN
   Ascuns complet in afara mobilului (display:none), ca sa nu poata
   niciodata sa interfereze cu desktop/tableta, chiar dupa un resize.
   ===================================================================== */
.mobile-menu {
    display: none;
}

@media (max-width: 991px) {
    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;

        position: fixed;
        inset: 0;
        z-index: 9999;

        background-color: rgba(31, 31, 31, .98); /* #1F1F1F la 98% opacitate */
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);

        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        filter: blur(6px);

        transition:
            transform .45s cubic-bezier(.22, 1, .36, 1),
            opacity .45s ease,
            filter .45s ease,
            visibility 0s linear .45s;
    }

    .mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        filter: blur(0);

        transition:
            transform .45s cubic-bezier(.22, 1, .36, 1),
            opacity .45s ease,
            filter .45s ease,
            visibility 0s linear 0s;
    }

    /* Blocam scroll-ul paginii din spate cand meniul e deschis
       (clasa e adaugata pe <html> din lockScroll(), vezi script.js) */
    html.arb-menu-open,
    html.arb-menu-open body {
        overflow: hidden;
        height: 100%;
    }

    .mobile-menu__nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .mobile-menu__nav a {
        position: relative;
        display: inline-block;
        padding-bottom: 6px;

        font-family: "Special Gothic", sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
        text-decoration: none;

        /* stare initiala pentru animatia de aparitie in cascada */
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .4s ease, transform .4s ease, color .3s ease;
    }

    /* Subliniere subtire, animata, sub fiecare link */
    .mobile-menu__nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: #e8d400;
        transition: width .3s ease;
    }

    /* Apar in cascada, doar cand meniul e deschis - delay 70ms per item */
    .mobile-menu.is-open .mobile-menu__nav a {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu.is-open .mobile-menu__nav li:nth-child(1) a { transition-delay: .07s; }
    .mobile-menu.is-open .mobile-menu__nav li:nth-child(2) a { transition-delay: .14s; }
    .mobile-menu.is-open .mobile-menu__nav li:nth-child(3) a { transition-delay: .21s; }
    .mobile-menu.is-open .mobile-menu__nav li:nth-child(4) a { transition-delay: .28s; }
    .mobile-menu.is-open .mobile-menu__nav li:nth-child(5) a { transition-delay: .35s; }
    .mobile-menu.is-open .mobile-menu__nav li:nth-child(6) a { transition-delay: .42s; }
    .mobile-menu.is-open .mobile-menu__nav li:nth-child(7) a { transition-delay: .49s; }
    .mobile-menu.is-open .mobile-menu__nav li:nth-child(8) a { transition-delay: .56s; }

    /* Hover / focus: text galben + subliniere + usoara deplasare.
       Suprascriem tranzitia FARA delay, ca raspunsul la hover sa fie
       instant si dupa ce animatia de deschidere s-a incheiat. */
    .mobile-menu.is-open .mobile-menu__nav a:hover,
    .mobile-menu.is-open .mobile-menu__nav a:focus-visible {
        color: #e8d400;
        transform: translateX(8px);
        transition: color .3s ease, transform .3s ease;
    }

    .mobile-menu__nav a:hover::after,
    .mobile-menu__nav a:focus-visible::after {
        width: 100%;
    }

    /* Link-ul paginii curente (clasa adaugata din script.js) */
    .mobile-menu__nav a.is-active {
        color: #e8d400;
    }

    .mobile-menu__nav a.is-active::after {
        width: 100%;
    }
}

/* =====================================================================
   ACCESIBILITATE: respecta preferinta de reducere a miscarii
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    .hamburger__line,
    .mobile-menu,
    .mobile-menu__nav a {
        transition-duration: .12s !important;
    }

    .mobile-menu {
        filter: none !important;
    }
}


:root{
  --yellow: #ffe600;
  --white: #ffffff;
  --overlay: rgba(10,10,10,.60);
  --font-main: "Special Gothic", sans-serif;
 
  --hero-padding-x: 7%;
  --transition-speed: .3s;
}
 
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
 
  padding-top: 100px;
  padding-left: var(--hero-padding-x);
  padding-right: var(--hero-padding-x);
}
.hero-background{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
 
  z-index: -1; /* Fundalul trebuie să fie în spatele conținutului */
}
.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  background-color: var(--overlay);
 
  z-index: -1; /* Overlay-ul trebuie să fie în spatele conținutului */
}
/* =========================================================
   TITLU
   ========================================================= */
.hero-title{
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 2px;
}
 
.hero-title .line{
  display: block;
 
  /* Stare inițială pentru animația de apariție (vezi script.js) */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s ease, transform .8s ease;
}

.hero-title.typewriter .line {
  display: inline-block;
  opacity: 1;
  transform: none;
}
 
.hero-title .white{
  color: var(--white);
}
 
.hero-title .yellow{
  color: var(--yellow);
}
 
/* Al doilea rând apare cu un mic delay față de primul */
.hero-title .yellow{
  transition-delay: .15s;
}
 
/* Cursor for typewriter animation */
.hero-title.typewriter .cursor {
  display: inline-block;
  width: 3px;
  height: 1.1em;
  margin-left: 12px;
  vertical-align: bottom;
  background-color: white;
  animation: blink 0.7s steps(1) infinite;
  transition: opacity 0.2s ease;
}

.hero-title.typewriter.finished .cursor {
  opacity: 0;
  animation: none;
}

@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.hero-title.typewriter .line {
  opacity: 1;
  transform: none;
  min-height: 1.2em;
}

/* Clasa adăugată de JS la încărcare -> declanșează animația */
.hero.in-view .hero-title .line{
  opacity: 1;
  transform: translateY(0);
}
 
/* =========================================================
   BADGE-URI (Rapid / Sigur / Eficient)
   ========================================================= */
.hero-tags{
  display: flex;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: wrap; /* permite trecerea pe două rânduri pe mobil */
 
  /* Stare inițială pentru animație — apar ultimele */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s ease .3s, transform .8s ease .3s;
}
 
.hero.in-view .hero-tags{
  opacity: 1;
  transform: translateY(0);
}
 
.hero-tags .tag{
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,.6);
  color: var(--white);
 
  padding: 10px 22px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .8px;
  border-radius: 4px;
 
  cursor: default;
  transition: background var(--transition-speed) ease,
              color var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
}
 
.hero-tags .tag:hover{
  background: var(--white);
  color: #000;
  border-color: var(--white);
}
 
/* =========================================================
   RESPONSIVE
   ========================================================= */
 
/* Sub 992px — textul se micșorează automat (clamp face asta deja,
   dar reducem puțin padding-ul lateral pentru echilibru vizual) */
@media (max-width: 992px){
  .hero{
    padding-left: 6%;
    padding-right: 6%;
  }
}
 
/* Sub 768px — badge-uri pot trece pe două rânduri, text ~48px */
@media (max-width: 768px){
  .hero-title{
    font-size: 48px;
  }
 
  .hero-tags{
    row-gap: 12px;
  }
}
 
/* Sub 480px — padding 25px, text 40px */
@media (max-width: 480px){
  .hero{
    padding-left: 25px;
    padding-right: 25px;
  }
 
  .hero-title{
    font-size: 40px;
  }
 
  .hero-tags .tag{
    padding: 8px 18px;
    font-size: 13px;
  }
}
 
/* Respectă preferința utilizatorului pentru mișcare redusă */
@media (prefers-reduced-motion: reduce){
  .hero-title .line,
  .hero-tags{
    transition: none;
    opacity: 1;
    transform: none;
  }
}
/* =====================================================
   VARIABILE GLOBALE DE CULOARE
   Modifica aici paleta de culori a sectiunii
   ===================================================== */
:root {
    --yellow: #e8d400;
    --text: #1d1d1d;
    --gray: #444;
    --white: #ffffff;
}

/* =====================================================
   RESET DE BAZA (scoped la nevoie, sigur pentru integrare)
   ===================================================== */
.prezentare-companie,
.prezentare-companie * {
    box-sizing: border-box;
}

/* =====================================================
   SECTIUNE: PREZENTARE COMPANIE ("Despre Noi")
   ===================================================== */
.prezentare-companie {
    font-family: "Special Gothic", sans-serif;
    background-color: var(--white);
    overflow: hidden; /* necesar pentru animatiile de translateX la intrare */
}

/* Container principal: grid cu 2 coloane egale */
.prezentare-companie__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;

    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 7%;
}

/* =====================================================
   COLOANA STANGA: TEXT
   ===================================================== */
.prezentare-companie__text {
    /* Stare initiala pentru animatia de scroll (JS adauga clasa .in-view) */
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.prezentare-companie__text.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Titlu principal */
.prezentare-companie__titlu {
    font-size: clamp(42px, 3vw, 60px);
    font-weight: 900;
    color: var(--text);
    margin: 0 0 30px 0;
    line-height: 1.1;
}

/* Paragraf standard */
.prezentare-companie__paragraf {
    font-size: 24px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 650px;
    margin: 0 0 20px 0;
}

/* Al doilea paragraf: ingrosat, cu spatiere suplimentara deasupra */
.prezentare-companie__paragraf--bold {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.6;
    color: #222;
    max-width: 650px;
    margin-top: 45px;
}

/* Buton "Contacteaza-ne!" */
.prezentare-companie__buton {
    display: inline-block;
    margin-top: 40px;

    background-color: var(--white);
    color: #222;
    border: 2px solid var(--yellow);

    padding: 20px 55px;
    font-family: inherit;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;

    border-radius: 4px;
    cursor: pointer;

    transition: background-color 0.35s ease,
                color 0.35s ease,
                transform 0.35s ease,
                box-shadow 0.35s ease;
}

.prezentare-companie__buton:hover {
    background-color: var(--yellow);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); /* umbra discreta */
}

.prezentare-companie__buton:focus-visible {
    outline: 3px solid var(--text);
    outline-offset: 3px;
}

/* =====================================================
   COLOANA DREAPTA: IMAGINE
   ===================================================== */
.prezentare-companie__imagine {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.prezentare-companie__imagine.in-view {
    opacity: 1;
    transform: translateX(0);
}

.prezentare-companie__imagine img {
    display: block;
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 6px;
     object-position: 90% center; 
}

/* =====================================================
   RESPONSIVE: TABLETA (sub 992px)
   ===================================================== */
@media (max-width: 992px) {
    .prezentare-companie__container {
        grid-template-columns: 1fr;
    }

    /* Imaginea trece deasupra textului */
    .prezentare-companie__imagine {
        order: -1;
    }
}

/* =====================================================
   RESPONSIVE: TELEFON (sub 576px)
   ===================================================== */
@media (max-width: 576px) {
    .prezentare-companie__container {
        padding: 80px 25px;
        gap: 40px;
    }

    .prezentare-companie__titlu {
        font-size: 36px;
    }

    .prezentare-companie__paragraf,
    .prezentare-companie__paragraf--bold {
        font-size: 19px;
    }

    .prezentare-companie__buton {
        width: 100%;
    }

    .prezentare-companie__imagine img {
        height: 420px;
    }
}

/* =====================================================
   ACCESIBILITATE: respecta preferinta de reducere a miscarii
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .prezentare-companie__text,
    .prezentare-companie__imagine {
        transition: opacity 0.3s ease;
        transform: none;
    }
}

:root {
    --yellow: #e8d400;
    --text: #2b2b2b;
    --gray: #666;
    --white: #fff;
    --bg: #f7f5f2;
}
 
/* =====================================================
   RESET DE BAZA (scoped, sigur pentru integrare in pagina)
   ===================================================== */
.avantaje,
.avantaje * {
    box-sizing: border-box;
}
 
/* =====================================================
   SECTIUNE: AVANTAJE COMPANIE
   ===================================================== */
.avantaje {
    font-family: "Special Gothic", sans-serif;
    background-color: var(--bg);
}
 
.avantaje__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 7%;
}
 
/* =====================================================
   INTRODUCERE: TITLU + SUBTITLU
   ===================================================== */

.avantaje__titlu {
    font-size: clamp(46px, 4vw, 72px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text);
    max-width: 900px;
    margin: 0 0 35px 0;
 
    /* animatie: apare cu fade + translateY(-50px) -> 0 */
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
 
.avantaje__subtitlu {
    font-size: clamp(22px, 2vw, 34px);
    font-weight: 400;
    color: var(--gray);
    line-height: 1.45;
    max-width: 700px;
    margin: 0 0 90px 0;
 
    /* animatie: apare dupa titlu, cu delay 0.2s */
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
 
/* Cand sectiunea intra in viewport, JS adauga aceasta clasa pe container */
.avantaje__container.in-view .avantaje__titlu,
.avantaje__container.in-view .avantaje__subtitlu {
    opacity: 1;
    transform: translateY(0);
}
 
/* =====================================================
   GRID CU CARDURI DE AVANTAJE
   ===================================================== */
.avantaje__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    gap: 60px;
    align-items: stretch;
}
 
/* =====================================================
   CARD DE AVANTAJ (stil premium)
   ===================================================== */
.avantaje__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
 
    background: var(--white);
    padding: 55px 40px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
 
    transition: 0.4s ease;
 
    /* animatie: apare cu fade + translateY(60px) -> 0, delay individual */
    opacity: 0;
    transform: translateY(60px);
}
 
.avantaje__container.in-view .avantaje__card {
    opacity: 1;
    transform: translateY(0);
}
 
/* Delay individual pentru fiecare card, aplicat doar pe proprietatile de animatie */
.avantaje__card:nth-child(1) { transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s, box-shadow 0.4s ease, background-color 0.4s ease; }
.avantaje__card:nth-child(2) { transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s, box-shadow 0.4s ease, background-color 0.4s ease; }
.avantaje__card:nth-child(3) { transition: opacity 0.8s ease 0.55s, transform 0.8s ease 0.55s, box-shadow 0.4s ease, background-color 0.4s ease; }
 
/* Hover: card se ridica, umbra devine mai puternica */
.avantaje__card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
 
/* Cand cardul e vizibil, restauram tranzitia rapida de hover peste cea de aparitie */
.avantaje__container.in-view .avantaje__card:hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
 
/* Icon */
.avantaje__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    min-width: 92px;
    min-height: 92px;
    background: #ffffff;
    border-radius: 9999px;
    color: #222;
    margin-bottom: 35px;
    box-shadow: 0 0 24px rgba(232, 212, 0, 0.08);
    border: 1px solid rgba(232, 212, 0, 0.16);
    transition: color 0.4s ease, background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.avantaje__icon i,
.avantaje__icon img {
    display: block;
    color: inherit;
}

.avantaje__icon i {
    font-size: 1.9rem;
    line-height: 1;
}

.avantaje__icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.avantaje__icon--image {
    background-color: #f8f8f8;
}

.avantaje__card:hover .avantaje__icon {
    color: var(--yellow);
    box-shadow: 0 0 28px rgba(232, 212, 0, 0.22);
    transform: scale(1.05);
}
 
/* Titlu card */
.avantaje__card-titlu {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 22px 0;
    color: var(--text);
    transition: color 0.4s ease;
}
 
/* La hover, titlul devine putin mai inchis */
.avantaje__card:hover .avantaje__card-titlu {
    color: #000;
}
 
/* Descriere card */
.avantaje__card-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}
 
/* =====================================================
   RESPONSIVE: SUB 1100px -> 2 COLOANE
   ===================================================== */
@media (max-width: 1100px) {
    .avantaje__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
 
    /* Al treilea card (ultimul, ramas singur) e centrat pe randul lui */
    .avantaje__card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: calc(50% - 25px);
        margin: 0 auto;
    }
}
 
/* =====================================================
   RESPONSIVE: SUB 768px -> 1 COLOANA
   ===================================================== */
@media (max-width: 768px) {
    .avantaje__container {
        padding: 90px 6%;
    }
 
    .avantaje__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
 
    /* Cardul 3 revine la latime normala pe o singura coloana */
    .avantaje__card:nth-child(3) {
        max-width: 100%;
    }
 
    .avantaje__header {
        text-align: center;
    }
 
    .avantaje__titlu {
        font-size: 38px;
        max-width: 100%;
    }
 
    .avantaje__subtitlu {
        font-size: 22px;
        max-width: 100%;
        margin-bottom: 60px;
    }
 
    .avantaje__icon {
        font-size: 48px;
        margin-bottom: 25px;
    }
}
 
/* =====================================================
   ACCESIBILITATE: respecta preferinta de reducere a miscarii
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .avantaje__titlu,
    .avantaje__subtitlu,
    .avantaje__card {
        transition: opacity 0.3s ease !important;
        transform: none !important;
    }
}


:root {
    --yellow: #e8d400;
    --yellow-light: #fff8b5;
    --text: #222;
    --gray: #666;
    --white: #fff;
    --shadow: rgba(0, 0, 0, .08);
}
 
/* =====================================================
   RESET DE BAZA (scoped, sigur pentru integrare in pagina)
   ===================================================== */
.proces,
.proces * {
    box-sizing: border-box;
}
 
/* =====================================================
   SECTIUNE: CUM FUNCTIONEAZA
   ===================================================== */
.proces {
    position: relative;
    overflow: hidden; /* tine formele blur in interiorul sectiunii */
    font-family: "Special Gothic", sans-serif;
 
    /* fundal deschis cu accent galben discret */
    background: linear-gradient(180deg, #fffef2 0%, #fff9c9 100%);
}
 
/* Forme decorative blur, discrete, doar in fundal */
.proces__blur {
    position: absolute;
    border-radius: 50%;
    background: var(--yellow-light);
    filter: blur(90px);
    opacity: .6;
    z-index: 0;
    pointer-events: none;
}
 
.proces__blur--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -100px;
}
 
.proces__blur--2 {
    width: 480px;
    height: 480px;
    bottom: -160px;
    right: -120px;
}
 
.proces__container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 7%;
}
 
/* =====================================================
   HEADER: TITLU + SUBTITLU
   ===================================================== */
.proces__header {
    text-align: center;
}
 
.proces__titlu {
    font-size: clamp(48px, 4vw, 72px);
    font-weight: 900;
    color: var(--text);
    margin: 0 0 25px 0;
    text-align: center;
 
    /* animatie: fade + translateY(-50px) -> 0 */
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
 
.proces__subtitlu {
    font-size: clamp(22px, 2vw, 30px);
    color: var(--gray);
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto 90px auto;
    text-align: center;
 
    /* animatie: apare dupa titlu, delay 0.2s */
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
 
.proces__container.in-view .proces__titlu,
.proces__container.in-view .proces__subtitlu {
    opacity: 1;
    transform: translateY(0);
}
 
/* =====================================================
   WRAPPER: LINIE TIMELINE + GRID DE CARDURI
   ===================================================== */
.proces__grid-wrapper {
    position: relative;
}
 
/* Container pentru liniile de conectare (populat dinamic din script.js) */
.proces__timeline {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
 
/* Fiecare segment de linie, generat de JS pentru fiecare rand de carduri.
   left/width sunt calculate dinamic in script.js dupa latimea reala a
   cardurilor din acel rand, ca linia sa nu se intinda in gol dupa ultimul card. */
.proces__timeline-line {
    position: absolute;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

.proces__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 45px;
}
 
/* =====================================================
   CARD DE ETAPA (premium, cu numar deasupra)
   ===================================================== */
.proces__card {
    position: relative;
    grid-column: span 2; /* 2 din cele 6 coloane = aceeasi latime ca 1/3 dintr-un grid pe 3 coloane */
    background: var(--white);
    border-radius: 22px;
    padding: 75px 40px 45px 40px; /* padding-top marit pentru cercul-numar */
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 50px var(--shadow);
    min-height: 340px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    /* animatie: fade + translateY(60px) -> 0, delay individual pe nth-child */
    opacity: 0;
    transform: translateY(60px);
}

/* Ultimul rand are doar 2 din cele 3 carduri (5 etape in total) - le centram
   in loc sa ramana lipite de marginea stanga cu un gol vizibil in dreapta. */
.proces__card:nth-child(4) {
    grid-column: 2 / span 2;
}

.proces__card:nth-child(5) {
    grid-column: 4 / span 2;
}
 
.proces__container.in-view .proces__card {
    opacity: 1;
    transform: translateY(0);
}
 
/* Delay individual pentru fiecare din cele 6 carduri */
.proces__card:nth-child(1) { transition: opacity .8s ease .15s, transform .8s ease .15s, box-shadow .35s ease; }
.proces__card:nth-child(2) { transition: opacity .8s ease .30s, transform .8s ease .30s, box-shadow .35s ease; }
.proces__card:nth-child(3) { transition: opacity .8s ease .45s, transform .8s ease .45s, box-shadow .35s ease; }
.proces__card:nth-child(4) { transition: opacity .8s ease .60s, transform .8s ease .60s, box-shadow .35s ease; }
.proces__card:nth-child(5) { transition: opacity .8s ease .75s, transform .8s ease .75s, box-shadow .35s ease; }
.proces__card:nth-child(6) { transition: opacity .8s ease .90s, transform .8s ease .90s, box-shadow .35s ease; }
 
/* Hover: cardul urca, umbra creste. Rescriem tranzitia ca sa nu mosteneasca delay-ul de intrare */
.proces__container.in-view .proces__card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, .14);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
 
/* Cerc cu numarul etapei, pozitionat deasupra cardului */
.proces__step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
 
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--white);
    font-weight: 900;
    font-size: 20px;
 
    display: flex;
    align-items: center;
    justify-content: center;
 
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    transition: transform 0.35s ease;
    z-index: 2;
}
 
.proces__card:hover .proces__step-number {
    transform: translateX(-50%) scale(1.1);
}
 
/* Icon */
.proces__icon {
    font-size: 52px;
    color: #444;
    margin-bottom: 22px;
    transition: color 0.35s ease;
}
 
.proces__card:hover .proces__icon {
    color: var(--yellow);
}
 
/* Titlu card */
.proces__card-titlu {
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
    text-align: center;
    margin: 0 0 18px 0;
}
 
/* Descriere card */
.proces__card-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray);
    text-align: center;
    margin: 0;
}
 
/* =====================================================
   RESPONSIVE: SUB 1200px -> 2 COLOANE
   ===================================================== */
@media (max-width: 1200px) {
    .proces__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proces__card,
    .proces__card:nth-child(4),
    .proces__card:nth-child(5) {
        grid-column: auto;
    }
}

/* Pe 2 coloane, ultimul card (05) ramane singur pe randul lui - il centram
   in loc sa stea lipit de marginea stanga. */
@media (max-width: 1200px) and (min-width: 769px) {
    .proces__card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 420px;
        justify-self: center;
    }
}

/* =====================================================
   RESPONSIVE: SUB 768px -> 1 COLOANA, FARA TIMELINE
   ===================================================== */
@media (max-width: 768px) {
    .proces__container {
        padding: 90px 6%;
    }

    .proces__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
 
    /* Linia timeline dispare pe mobil */
    .proces__timeline {
        display: none;
    }
 
    .proces__subtitlu {
        margin-bottom: 60px;
    }
}
 
/* =====================================================
   ACCESIBILITATE: respecta preferinta de reducere a miscarii
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .proces__titlu,
    .proces__subtitlu,
    .proces__card {
        transition: opacity 0.3s ease !important;
        transform: none !important;
    }
}
/* =====================================================
   VARIABILE GLOBALE DE CULOARE
   ===================================================== */
:root {
    --yellow: #e8d400;
    --text: #222;
    --gray: #555;
    --white: #fff;
    --bg: #f7f7f5;
}
 
/* =====================================================
   RESET DE BAZA (scoped, sigur pentru integrare in pagina)
   ===================================================== */
.locatie,
.locatie * {
    box-sizing: border-box;
}
 
/* =====================================================
   SECTIUNE: LOCATIA NOASTRA
   ===================================================== */
.locatie {
    font-family: "Special Gothic", sans-serif;
    background: var(--bg);
}
 
.locatie__container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 70px;
 
    max-width: 1450px;
    margin: 0 auto;
    padding: 140px 7%;
}
 
/* =====================================================
   COLOANA STANGA: TEXT
   ===================================================== */
.locatie__text {
    /* stare initiala animatie scroll */
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
 
.locatie__text.in-view {
    opacity: 1;
    transform: translateX(0);
}
 
.locatie__titlu {
    font-size: clamp(48px, 4vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text);
    margin: 0 0 30px 0;
}
 
.locatie__lead {
    font-size: 30px;
    line-height: 1.5;
    color: var(--gray);
    max-width: 560px;
    margin: 0 0 50px 0;
}
 
/* =====================================================
   CARD CU AVANTAJELE LOCATIEI
   ===================================================== */
.locatie__card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    max-width: 560px;
 
    display: flex;
    flex-direction: column;
    gap: 20px;
 
    margin-bottom: 45px;
}
 
.locatie__item {
    display: flex;
    align-items: center;
    gap: 16px;
 
    font-size: 19px;
    line-height: 1.5;
    color: #333;
}
 
.locatie__item-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--text);
 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
 
/* =====================================================
   BUTON "INTRA PE HARTA"
   ===================================================== */
.locatie__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
 
    padding: 22px 48px;
    font-family: inherit;
    font-size: 24px;
    font-weight: 700;
 
    background: transparent;
    color: var(--text);
    border: 2px solid var(--yellow);
    border-radius: 6px;
    text-decoration: none;
 
    transition: .35s ease;
}
 
.locatie__btn:hover {
    background: var(--yellow);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(232, 212, 0, .35);
}
 
.locatie__btn:focus-visible {
    outline: 3px solid var(--text);
    outline-offset: 3px;
}
 
/* =====================================================
   COLOANA DREAPTA: HARTA GOOGLE
   ===================================================== */
.locatie__map-wrapper {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
    border: 1px solid rgba(0, 0, 0, .06);
    height: 620px;
 
    /* stare initiala animatie scroll */
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
 
.locatie__map-wrapper.in-view {
    opacity: 1;
    transform: translateX(0);
}
 
.locatie__map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
 
/* =====================================================
   RESPONSIVE: SUB 992px
   ===================================================== */
@media (max-width: 992px) {
    .locatie__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
 
    /* Textul ramane primul (in ordinea din HTML), harta vine sub el */
    .locatie__map-wrapper {
        height: 450px;
    }
}
 
/* =====================================================
   RESPONSIVE: TELEFON
   ===================================================== */
@media (max-width: 576px) {
    .locatie__container {
        padding: 90px 6%;
    }
 
    .locatie__titlu {
        font-size: 38px;
    }
 
    .locatie__lead {
        font-size: 21px;
    }
 
    .locatie__card {
        padding: 25px;
    }
 
    .locatie__btn {
        width: 100%;
        justify-content: center;
        padding: 20px 30px;
        font-size: 20px;
    }
}
 
/* =====================================================
   ACCESIBILITATE: respecta preferinta de reducere a miscarii
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .locatie__text,
    .locatie__map-wrapper {
        transition: opacity 0.3s ease !important;
        transform: none !important;
    }
}
 
:root {
    --yellow: #e8d400;
    --text: #222;
    --gray: #666;
    --white: #fff;
    --dark: #1f1f1f;
}
 
/* =====================================================
   RESET DE BAZA (scoped, sigur pentru integrare in pagina)
   ===================================================== */
.contact, .contact *,
.site-footer, .site-footer * {
    box-sizing: border-box;
}
 
.contact, .site-footer {
    font-family: "Special Gothic", sans-serif;
}
 
/* =====================================================
   SECTIUNE: CONTACTEAZA-NE
   ===================================================== */
.contact {
    background: linear-gradient(180deg, #fffef2 0%, #fff8b5 100%);
}
 
.contact__container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 140px 7%;
}
 
/* Introducere */
.contact__intro {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
 
.contact__container.in-view .contact__intro {
    opacity: 1;
    transform: translateY(0);
}
 
.contact__titlu {
    font-size: clamp(52px, 5vw, 76px);
    font-weight: 900;
    color: var(--text);
    margin: 0 0 20px 0;
}
 
.contact__subtitlu {
    font-size: 24px;
    line-height: 1.6;
    color: var(--gray);
    max-width: 700px;
    margin: 0 0 60px 0;
}
 
/* Grid principal: formular + coloana de informatii */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}
 
/* =====================================================
   FORMULAR
   ===================================================== */
.contact__form {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 0, 0, .06);
 
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}
 
.contact__container.in-view .contact__form {
    opacity: 1;
    transform: translateY(0);
}
 
.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
}
 
.contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}
 
.contact__row .contact__field {
    margin-bottom: 0;
}
 
.contact__field--full {
    margin-bottom: 22px;
}
 
.contact__field label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .02em;
}
 
.contact__optional {
    font-weight: 400;
    color: var(--gray);
    font-size: 13px;
}
 
.contact__field input,
.contact__field textarea {
    width: 100%;
    padding: 18px 20px;
    font-size: 18px;
    font-family: inherit;
    border-radius: 12px;
    border: 1px solid #ddd;
    transition: .3s;
    color: var(--text);
    background: var(--white);
}
 
.contact__field textarea {
    height: 180px;
    resize: none;
}
 
.contact__field input:focus,
.contact__field textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 4px rgba(232, 212, 0, .15);
}
 
/* Stare de eroare pe camp invalid */
.contact__field input.contact__field--invalid,
.contact__field textarea.contact__field--invalid {
    border-color: #e0453c;
}
 
.contact__error {
    font-size: 13px;
    color: #e0453c;
    min-height: 16px;
    display: block;
}
 
/* Mesaj de status (succes / eroare generala) */
.contact__status {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px 0;
    min-height: 20px;
}
 
.contact__status.contact__status--success {
    color: #2f8a3e;
}
 
.contact__status.contact__status--error {
    color: #e0453c;
}
 
/* Buton de submit */
.contact__submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
 
    background: var(--dark);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 22px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: .35s;
}
 
.contact__submit:hover {
    background: var(--yellow);
    color: #000;
    transform: translateY(-4px);
}
 
.contact__submit:focus-visible {
    outline: 3px solid var(--dark);
    outline-offset: 3px;
}
 
/* =====================================================
   COLOANA DE INFORMATII (dreapta)
   ===================================================== */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
 
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
 
.contact__container.in-view .contact__info {
    opacity: 1;
    transform: translateY(0);
}
 
.contact__info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .06);
}
 
.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}
 
.contact__info-item:last-of-type {
    margin-bottom: 0;
}
 
.contact__info-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f7f5e6;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact__info-icon img,
.contact__info-icon svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
}
 
.contact__info-item h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 6px 0;
}
 
.contact__info-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}
 
.contact__info-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color .3s ease;
}
 
.contact__info-item a:hover {
    color: var(--text);
}
 
/* Social media */
.contact__social {
    display: flex;
    gap: 14px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, .06);
}
 
.contact__social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f7f5e6;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
 
.contact__social-link:hover {
    background: var(--yellow);
    color: #000;
    transform: translateY(-3px);
}
 
/* Mini harta */
.contact__map-wrapper {
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .06);
}
 
.contact__map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
 
/* =====================================================
   RESPONSIVE: SECTIUNE CONTACT
   ===================================================== */
@media (max-width: 992px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
 
@media (max-width: 576px) {
    .contact__container {
        padding: 90px 6%;
    }
 
    .contact__form,
    .contact__info-card {
        padding: 30px;
    }
 
    .contact__row {
        grid-template-columns: 1fr;
        gap: 22px;
    }
 
    .contact__submit {
        width: 100%;
        justify-content: center;
    }
}
 
/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: var(--dark);
    color: var(--white);
}
 
.site-footer__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding: 60px 7%;
}
 
.site-footer__logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 18px;
}
 
.site-footer__logo span {
    color: var(--yellow);
}
 
.site-footer__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #b8b8b8;
    max-width: 280px;
}
 
.site-footer__col h4 {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--yellow);
    margin: 0 0 22px 0;
}
 
.site-footer__links,
.site-footer__data {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
 
.site-footer__links a {
    color: #d8d8d8;
    text-decoration: none;
    font-size: 15px;
    transition: color .3s ease;
}
 
.site-footer__links a:hover {
    color: var(--yellow);
}
 
/* Buton "Setari Cookies" din coloana Legal.
   Este <button>, nu <a>, pentru ca deschide un dialog in pagina si nu navigheaza
   nicaieri. Stilizat identic cu linkurile vecine, ca sa arate ca parte din lista.
   Necesar pentru art. 7(3) GDPR: retragerea consimtamantului trebuie sa fie la fel
   de simpla ca acordarea lui, iar butonul flotant nu are eticheta text vizibila. */
.site-footer__cookie-btn {
    appearance: none;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    font-size: 15px;
    color: #d8d8d8;
    text-align: left;
    cursor: pointer;
    transition: color .3s ease;
}

.site-footer__cookie-btn:hover {
    color: var(--yellow);
}

.site-footer__cookie-btn:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
    border-radius: 2px;
}

.site-footer__data li {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.5;
}

/* Linkurile telefon/email din blocul de date firma pastreaza culoarea listei,
   ca sa nu rupa aspectul, dar raman actionabile pe mobil. */
.site-footer__data a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

.site-footer__data a:hover {
    color: var(--yellow);
}
 
/* Bara finala */
.site-footer__bottom {
    min-height: 70px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
 
.site-footer__bottom p {
    font-size: 14px;
    color: #b8b8b8;
    margin: 14px 0;
}
 
.site-footer__bottom a {
    color: #d8d8d8;
    text-decoration: underline;
    transition: color .3s ease;
}
 
.site-footer__bottom a:hover {
    color: var(--yellow);
}
 
/* =====================================================
   RESPONSIVE: FOOTER
   ===================================================== */
@media (max-width: 900px) {
    .site-footer__container {
        grid-template-columns: repeat(2, 1fr);
    }
}
 
@media (max-width: 560px) {
    .site-footer__container {
        grid-template-columns: 1fr;
        padding: 50px 6%;
    }
 
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 6%;
    }
}
 
/* =====================================================
   ACCESIBILITATE: respecta preferinta de reducere a miscarii
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .contact__intro,
    .contact__form,
    .contact__info {
        transition: opacity 0.3s ease !important;
        transform: none !important;
    }
}
/* =====================================================================
   COOKIE-CONSENT.CSS
   Banner de consimtamant cookie, sticky, independent de restul site-ului
   (variabile locale, clase proprii .cookie-*).
   ===================================================================== */

.cookie-consent,
.cookie-consent *,
.floating-actions,
.cookie-trigger {
    box-sizing: border-box;
    font-family: "Special Gothic", sans-serif;
}

.cookie-consent {
    --yellow: #e8d400;
    --text: #222;
    --gray: #666;
    --white: #fff;
    --dark: #1f1f1f;

    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;

    display: flex;
    justify-content: center;
    padding: 20px;

    /* ascuns implicit; JS adauga .is-visible cand trebuie afisat */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    pointer-events: none;
    transition: opacity .45s ease, transform .45s ease, visibility 0s linear .45s;
}

.cookie-consent.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .45s ease, transform .45s ease, visibility 0s linear 0s;
}

.cookie-consent__inner {
    width: 100%;
    max-width: 960px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .22);
    border: 1px solid rgba(0, 0, 0, .06);
    overflow: hidden;
}

/* =====================================================================
   VEDERE PRINCIPALA
   ===================================================================== */
.cookie-consent__main {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 26px 30px;
}

.cookie-consent__media {
    flex-shrink: 0;
    width: 92px;
    height: 92px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #fff8b5 0%, #e8d400 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}

.cookie-consent__media-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.85) 0 6px, transparent 7px),
        linear-gradient(135deg, #fff7bd 0%, #e8d400 55%, #c79c06 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}

.cookie-consent__text h2 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px 0;
}

.cookie-consent__text p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray);
    margin: 0;
}

.cookie-consent__text a {
    color: var(--text);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent__text a:hover {
    color: var(--yellow);
}

.cookie-consent__actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Butoane comune */
.cookie-btn {
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

/* "Refuza toate" - la fel de vizibil ca "Accepta toate", doar stil ghost */
.cookie-btn--ghost {
    background: transparent;
    color: var(--gray);
    border: 1px solid transparent;
}

.cookie-btn--ghost:hover {
    color: var(--text);
    background: #f5f5f5;
}

/* "Personalizeaza" */
.cookie-btn--outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid #ddd;
}

.cookie-btn--outline:hover {
    border-color: var(--yellow);
    background: #fffbe0;
}

.cookie-consent__actions .cookie-btn--outline[aria-expanded="true"] {
    border-color: var(--yellow);
    background: #fffbe0;
}

/* "Accepta toate" / "Salveaza preferintele" - actiunea principala */
.cookie-btn--solid {
    background: var(--dark);
    color: var(--white);
    border: 1.5px solid var(--dark);
}

.cookie-btn--solid:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(232, 212, 0, .35);
}

/* =====================================================================
   PANOU EXTINS: CATEGORII GRANULARE
   ===================================================================== */
.cookie-consent__preferences {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s ease;
    border-top: 1px solid transparent;
}

.cookie-consent__preferences.is-open {
    grid-template-rows: 1fr;
    border-top-color: rgba(0, 0, 0, .06);
}

.cookie-consent__preferences-inner {
    overflow: hidden;
}

.cookie-consent__prefs-intro {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.6;
    margin: 22px 30px 18px;
}

.cookie-category {
    padding: 16px 30px;
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.cookie-category:first-of-type {
    border-top: none;
}

.cookie-category__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
}

.cookie-category__heading {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-category__heading h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.cookie-category__badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #8a7d00;
    background: #fff8b5;
    padding: 3px 9px;
    border-radius: 20px;
}

.cookie-category > p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0 0 0 62px; /* aliniat sub text, dupa switch */
}

/* Comutator (switch) custom */
.cookie-switch {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.cookie-switch__track {
    width: 44px;
    height: 26px;
    background: #ddd;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    padding: 3px;
    transition: background .3s ease;
}

.cookie-switch__thumb {
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    transition: transform .3s ease;
}

.cookie-switch input:checked + .cookie-switch__track {
    background: var(--yellow);
}

.cookie-switch input:checked + .cookie-switch__track .cookie-switch__thumb {
    transform: translateX(18px);
}

.cookie-switch input:disabled + .cookie-switch__track {
    background: #cfcfcf;
    opacity: .8;
    cursor: not-allowed;
}

.cookie-switch input:focus-visible + .cookie-switch__track {
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
}

.cookie-consent__prefs-actions {
    padding: 20px 30px 26px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid rgba(0, 0, 0, .05);
    margin-top: 6px;
}

/* =====================================================================
   BUTON FLOTANT DE REDESCHIDERE A PREFERINTELOR
   ===================================================================== */
.floating-actions {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.back-to-top,
.cookie-trigger {
    position: relative;
    left: auto;
    bottom: auto;
    display: grid;
    place-items: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
    transition: opacity .25s ease, transform .25s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

.back-to-top {
    width: 52px;
    height: 52px;
    background-color: rgba(0, 0, 0, 0.78);
    color: #ffffff;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(0px);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(66px);
    pointer-events: auto;
}

.back-to-top:hover {
    background-color: rgba(0, 0, 0, 0.92);
}

.back-to-top__icon {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: invert(1) brightness(2);
}

.cookie-trigger {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--dark, #1f1f1f);
    color: #fff;
    font-size: 18px;
    padding: 0;
}

.cookie-trigger__image {
    width: 24px;
    height: 24px;
    display: block;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.9) 0 5px, transparent 6px),
        linear-gradient(135deg, #fff7bd 0%, #e8d400 55%, #c79c06 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}

.cookie-trigger:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
    background: #e8d400;
    color: #1f1f1f;
}

.back-to-top.visible + .cookie-trigger {
    transform: translateY(-64px);
}

.cookie-trigger[hidden] {
    display: none;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 860px) {
    .cookie-consent__main {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .cookie-consent__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-category > p {
        margin-left: 0;
        margin-top: 8px;
    }
}

@media (max-width: 600px) {
    .cookie-consent {
        padding: 0;
    }

    .cookie-consent__inner {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
    }

    .cookie-consent__main {
        padding: 22px 20px;
    }

    .cookie-consent__prefs-intro,
    .cookie-category,
    .cookie-consent__prefs-actions {
        padding-left: 20px;
        padding-right: 20px;
    }

    .floating-actions {
        left: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .back-to-top,
    .cookie-trigger {
        width: 44px;
        height: 44px;
    }

    .back-to-top.visible + .cookie-trigger {
        transform: translateY(-56px);
    }
}

/* =====================================================================
   ACCESIBILITATE
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    .cookie-consent,
    .cookie-consent__preferences,
    .cookie-btn,
    .cookie-switch__thumb,
    .cookie-trigger {
        transition-duration: .12s !important;
    }
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

#preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-width: 100%;
}
/* =====================================================================
   PAGINA 404
   ---------------------------------------------------------------------
   Ecran de eroare in stilul site-ului, ca vizitatorul ajuns pe o adresa
   gresita sa aiba unde merge mai departe in loc sa inchida fila.
   ===================================================================== */
/* Header-ul e conceput sa stea peste hero-ul intunecat, deci logo-ul si
   navigatia sunt deschise la culoare. Pagina 404 nu are hero, asa ca pe ea
   trebuie inversate, altfel raman invizibile pe fundalul crem. */
.page-404 .site-header .logo,
.page-404 .site-header nav ul li a {
    color: #1f1f1f;
}

.page-404 .site-header nav ul li a:hover {
    color: #8a7f00;
}

.notfound {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 7% 80px;
}

.notfound__inner {
    max-width: 640px;
    text-align: center;
}

.notfound__code {
    font-size: clamp(90px, 18vw, 170px);
    line-height: 1;
    font-weight: 700;
    color: var(--yellow, #e8d400);
    letter-spacing: -.03em;
}

.notfound__title {
    margin-top: 10px;
    font-size: clamp(26px, 4vw, 40px);
    color: var(--text, #222);
}

.notfound__text {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.notfound__actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.notfound__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    transition: transform .25s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

.notfound__btn--solid {
    background: var(--dark, #1f1f1f);
    color: #fff;
}

.notfound__btn--solid:hover {
    background: var(--yellow, #e8d400);
    color: #1f1f1f;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

.notfound__btn--ghost {
    border: 1px solid rgba(0, 0, 0, .18);
    color: var(--text, #222);
}

.notfound__btn--ghost:hover {
    border-color: var(--yellow, #e8d400);
    transform: translateY(-3px);
}

.notfound__links {
    margin-top: 46px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.notfound__links p {
    font-size: 14px;
    color: #888;
    margin-bottom: 14px;
}

.notfound__links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    justify-content: center;
}

.notfound__links a {
    font-size: 15px;
    color: #555;
    text-decoration: none;
    transition: color .3s ease;
}

.notfound__links a:hover {
    color: var(--yellow, #e8d400);
}

@media (max-width: 600px) {
    .notfound {
        padding: 100px 6% 60px;
    }
}

/* =====================================================
   PLACEHOLDER HARTA (consimtamant)
   -----------------------------------------------------
   Ocupa exact locul iframe-ului din .locatie__map-wrapper /
   .contact__map-wrapper, ca inlocuirea la acceptare sa nu miste layout-ul.
   Regulile "…map-wrapper iframe" existente se aplica automat iframe-ului
   injectat, fiind selectori de descendent.
   ===================================================== */
.map-consent {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 24px;
    text-align: center;
    background: #f2f2f0;
    color: #1f1f1f;
}

.map-consent__text {
    margin: 0;
    max-width: 42ch;
    font-size: .95rem;
    line-height: 1.5;
    color: #4a4a4a;
}

.map-consent__btn {
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    padding: 12px 26px;
    border: 0;
    border-radius: 999px;
    background: #1f1f1f;
    color: var(--yellow);
    transition: transform var(--transition-speed) ease,
                background var(--transition-speed) ease;
}

.map-consent__btn:hover { transform: translateY(-2px); background: #000; }
.map-consent__btn:focus-visible { outline: 3px solid #1f1f1f; outline-offset: 3px; }

.map-consent__link {
    font-size: .88rem;
    color: #4a4a4a;
    text-underline-offset: 3px;
}

.map-consent__link:focus-visible { outline: 2px solid #1f1f1f; outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
    .map-consent__btn { transition: none; }
    .map-consent__btn:hover { transform: none; }
}

/* =====================================================
   SKIP LINK
   -----------------------------------------------------
   Ascuns pana primeste focus. Primul element din <body>, deci prima oprire la
   Tab: sare peste antet si peste cele doua meniuri, direct in continut.
   ===================================================== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10001;
    padding: 12px 22px;
    background: var(--yellow);
    color: #1f1f1f;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    left: 0;
    outline: 3px solid #1f1f1f;
    outline-offset: -3px;
}

/* =====================================================
   IMAGINI: raport de aspect
   -----------------------------------------------------
   Toate imaginile au acum width/height in HTML, ca browserul sa rezerve locul
   inainte de descarcare (elimina saltul de layout / CLS). Regula de mai jos
   face ca dimensiunile declarate sa nu blocheze scalarea responsiva: latimea
   ramane cea din CSS, iar inaltimea se recalculeaza din raportul real.
   ===================================================== */
img {
    max-width: 100%;
    height: auto;
}
