
.despre-page {
    font-family: "Special Gothic", sans-serif;
}
 
.despre-page,
.despre-page * {
    box-sizing: border-box;
}
 
/* =====================================================
   HERO - DESPRE NOI
   ===================================================== */
.about-hero {
    /* variabile locale, izolate de restul site-ului */
    --yellow: #e8d400;
    --white: #fff;
 
    position: relative;
    min-height: 85vh;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate; /* creeaza un context de stacking curat pentru z-index */
}
 
/* Imaginea de fundal - separata de sectiune ca sa primeasca parallax */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* Aceasta este proprietatea cheie */
  object-fit: cover;
  
  /* Centrează imaginea pe ecran */
  object-position: center;
  
  z-index: -1; /* Trimite imaginea în spatele textului */
}
 
/* Overlay premium peste imagine, pentru lizibilitate */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .65));
    z-index: 1;
 
    opacity: 0;
    transition: opacity 1s ease;
}
 
.about-hero.in-view .hero-overlay {
    opacity: 1;
}
 
/* Forme decorative blur, foarte discrete */
.hero-blur {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
 
/* =====================================================
   CONTINUT CENTRAL
   ===================================================== */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    width: min(100%, 980px);
    text-align: center;
    padding: 0 24px;
}
 
/* Mic titlu (label) */
.hero-label {
    display: inline-block;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 18px;
 
    /* animatie initiala */
    opacity: 0;
    transform: translateY(-35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
 
.about-hero.in-view .hero-label {
    opacity: 1;
    transform: translateY(0);
}
 
/* Titlu principal */
.hero-content h1 {
    font-size: clamp(40px, 4.2vw, 66px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin: 0 0 24px 0;

    /* animatie initiala: fade + translateY + blur */
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
    will-change: opacity, transform, filter;
    transition: opacity 1.1s ease 0.2s, transform 1.1s ease 0.2s, filter 1.1s ease 0.2s;
}
 
.about-hero.in-view .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
 
/* Descriere */
.hero-content p {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .9);
    max-width: 780px;
    margin: 0 auto;
 
    /* animatie initiala */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease 0.45s, transform 0.9s ease 0.45s;
}
 
.about-hero.in-view .hero-content p {
    opacity: 1;
    transform: translateY(0);
}
 
/* Buton */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
 
    margin-top: 60px;
    padding: 22px 50px;
 
    background: var(--yellow);
    color: #222;
    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
 
    transition: transform .35s ease, box-shadow .35s ease, opacity 0.7s ease 0.7s, translate 0.7s ease 0.7s;
 
    /* animatie initiala */
    opacity: 0;
    transform: scale(.9);
}
 
.about-hero.in-view .hero-btn {
    opacity: 1;
    transform: scale(1);
}
 
/* Rescriem tranzitia dupa aparitie, ca hover-ul sa fie instant, fara delay mostenit */
.about-hero.in-view .hero-btn:hover {
    transform: translateY(-5px) scale(1);
    box-shadow: 0 18px 40px rgba(232, 212, 0, .35);
    transition: transform .35s ease, box-shadow .35s ease;
}
 
.hero-btn:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 4px;
}
 
/* =====================================================
   SCROLL INDICATOR
   ===================================================== */
.scroll-indicator {
    position: absolute;
    left: 10%;
    bottom: 50px;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
 
    /* animatie initiala: apare ultimul */
    opacity: 0;
    transition: opacity 0.8s ease 1s;
}
 
.about-hero.in-view .scroll-indicator {
    opacity: 1;
}
 
.scroll-indicator p {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    margin: 0;
}
 
/* Mouse minimalist */
.mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
 
.mouse span {
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: var(--yellow);
    animation: scrollDot 1.6s ease infinite;
}
 
@keyframes scrollDot {
    0%   { transform: translateY(0);    opacity: 1; }
    70%  { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(0);    opacity: 0; }
}
 
/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 52px;
    }
 
    .hero-content p {
        font-size: 22px;
    }
}
 
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }
 
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}
 
@media (max-width: 480px) {
    .hero-content {
        padding: 0 25px;
    }
 
    .hero-content h1 {
        font-size: 36px;
    }
}
 
/* =====================================================
   ACCESIBILITATE: respecta preferinta de reducere a miscarii
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .hero-label,
    .hero-content h1,
    .hero-content p,
    .hero-btn,
    .hero-overlay,
    .scroll-indicator {
        transition: opacity 0.3s ease !important;
        transform: none !important;
        filter: none !important;
    }
 
    .mouse span {
        animation: none;
    }
}

/* Container for the 20% height widget */
.partner-widget {
  width: 100%;
  height: 20vh; /* 20% of the screen height */
  min-height: 120px; /* Safety net for very small mobile screens */
  background-color: #ffffff; /* Matches the white space under your hero */
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Wrapper for the moving track */
.carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Optional: Creates a smooth fade effect on the left and right edges */
.fade-left, .fade-right {
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none; /* Allows clicking through the fade */
}
.fade-left {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}
.fade-right {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* The track that actually moves */
.carousel-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: scrollLeftToRight 35s linear infinite; 
}

@keyframes scrollLeftToRight {
    0% {
        transform: translate3d(-45%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* PAUSE ON HOVER */
.carousel-track:hover {
  animation-play-state: paused;
}

/* Individual Logo Styling */
.partner-link {
  display: inline-block;
  padding: 0 3rem; /* Spacing between logos */
  transition: transform 0.3s ease;
}

.partner-link img {
  height: 50px; /* Keeps icons small and uniform */
  width: auto;
  object-fit: contain;
  filter: grayscale(100%); /* Makes them look clean and uniform initially */
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* Pop and colorize on hover */
.partner-link:hover {
  transform: scale(1.1);
}
.partner-link:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
  .partner-link {
    padding: 0 1.5rem; /* Less space between logos on mobile */
  }
  .partner-link img {
    height: 35px; /* Smaller logos on mobile */
  }
  .fade-left, .fade-right {
    width: 10%; /* Smaller fade area */
  }
}

/* =====================================================
   STYLEDESPRE.CSS
   Stiluri specifice paginii "Despre Noi" - doar Hero-ul.
   Variabilele sunt definite local, scoped la .about-hero,
   ca sa nu depinda de / sa nu suprascrie variabilele
   globale din style.css-ul principal al site-ului.
   ===================================================== */

.despre-page {
    font-family: "Special Gothic", sans-serif;
}

.despre-page,
.despre-page * {
    box-sizing: border-box;
}

/* =====================================================
   HERO - DESPRE NOI
   ===================================================== */
.about-hero {
    /* variabile locale, izolate de restul site-ului */
    --yellow: #e8d400;
    --white: #fff;

    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate; /* creeaza un context de stacking curat pentru z-index */
}

/* Imaginea de fundal - separata de sectiune ca sa primeasca parallax */
.hero-bg {
    position: absolute;
    /* bleed suplimentar sus/jos ca parallax-ul sa nu lase goluri vizibile */
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Placeholder de culoare cat timp nu exista inca imaginea reala */
    background-color: #2b2b2b;

    z-index: 0;
    will-change: transform;
}

/* Overlay premium peste imagine, pentru lizibilitate */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .65));
    z-index: 1;

    opacity: 0;
    transition: opacity 1s ease;
}

.about-hero.in-view .hero-overlay {
    opacity: 1;
}

.hero-blur {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-blur-1 {
    width: 420px;
    height: 420px;
    top: -80px;
    right: 8%;
    background: radial-gradient(circle, rgba(232, 212, 0, .22) 0%, rgba(232, 212, 0, 0) 70%);
}

.hero-blur-2 {
    width: 360px;
    height: 360px;
    bottom: -60px;
    left: 6%;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, 0) 70%);
}

/* =====================================================================
   SECTIUNE: CINE SUNTEM / POVESTEA SI VALORILE (about-story)
   Prima sectiune de continut dupa Hero, in pagina Despre Noi.
   ===================================================================== */

.about-story {
    position: relative;
    overflow: hidden;
    background: var(--white, #fff);
}

/* Forme decorative blur, foarte discrete */
.about-story__blur {
    position: absolute;
    border-radius: 50%;
    opacity: .45;
    z-index: 0;
    pointer-events: none;
}

.about-story__blur--yellow {
    width: 460px;
    height: 460px;
    top: -140px;
    right: -100px;
    background: radial-gradient(circle, rgba(232, 212, 0, .55) 0%, rgba(232, 212, 0, 0) 70%);
}

.about-story__blur--gray {
    width: 380px;
    height: 380px;
    bottom: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(120, 120, 120, .3) 0%, rgba(120, 120, 120, 0) 70%);
}

.about-story__container {
    position: relative;
    z-index: 1;
    max-width: 1450px;
    margin: 0 auto;
    padding: 140px 7%;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: center;
}

/* =====================================================
   COLOANA STANGA: TEXT
   ===================================================== */
.about-text {
    /* animatie initiala */
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.about-story.in-view .about-text {
    opacity: 1;
    transform: translateX(0);
}

.about-story .section-label {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e8d400;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: clamp(50px, 4vw, 72px);
    font-weight: 900;
    line-height: 1.15;
    color: #222;
    margin: 0 0 35px 0;
}

.about-text > p {
    font-size: 22px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 35px 0;
}

/* Bloc evidentiat: "Mai mult decat transport de marfuri" */
.about-highlight h3 {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    margin: 0 0 20px 0;
}

.about-highlight p {
    font-size: 21px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

/* Statistici */
.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 55px;
    flex-wrap: wrap;
}

.stat {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-story.in-view .stat:nth-child(1) { transition-delay: 0.15s; }
.about-story.in-view .stat:nth-child(2) { transition-delay: 0.30s; }
.about-story.in-view .stat:nth-child(3) { transition-delay: 0.45s; }

.about-story.in-view .stat {
    opacity: 1;
    transform: translateY(0);
}

.stat h4 {
    font-size: 42px;
    font-weight: 900;
    color: #e8d400;
    margin: 0 0 6px 0;
}

.stat span {
    font-size: 18px;
    color: #666;
}

/* =====================================================
   COLOANA DREAPTA: DOUA IMAGINI SUPRAPUSE
   ===================================================== */
.about-images {
    position: relative;
}

.image-large {
    width: 100%;
    height: 620px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
    position: relative;
    background: #eee; /* placeholder vizual cat timp img are src gol */

    opacity: 0;
    transform: translateX(70px) scale(.95);
    transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}

.about-story.in-view .image-large {
    opacity: 1;
    transform: translateX(0) scale(1);
}

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

.about-story.in-view .image-large:hover {
    transform: translateY(-6px) scale(1.01);
    transition: transform 0.35s ease;
}

.image-small {
    width: 280px;
    height: 340px;
    position: absolute;
    bottom: -40px;
    left: -40px;

    border: 8px solid var(--white, #fff);
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
    overflow: hidden;
    background: #ddd; /* placeholder vizual cat timp img are src gol */

    opacity: 0;
    transform: translateY(50px) rotate(-5deg);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.about-story.in-view .image-small {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

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

.about-story.in-view .image-small:hover {
    transform: translateY(-8px) rotate(0);
    transition: transform 0.35s ease;
}

/* =====================================================
   RESPONSIVE: SUB 992px
   ===================================================== */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Imaginile vin deasupra textului */
    .about-images {
        order: -1;
        /* spatiu suplimentar ca imaginea mica sa nu iasa din container */
        margin-top: 40px;
    }
}

/* =====================================================
   RESPONSIVE: SUB 768px
   ===================================================== */
@media (max-width: 768px) {
    .about-story__container {
        padding: 90px 6%;
    }

    .image-large {
        height: 420px;
    }

    .image-small {
        width: 180px;
        height: 220px;
        left: -20px;
        bottom: -30px;
        border-width: 6px;
    }
}

/* Accesibilitate: respecta preferinta de reducere a miscarii */
@media (prefers-reduced-motion: reduce) {
    .about-text,
    .stat,
    .image-large,
    .image-small {
        transition: opacity 0.3s ease !important;
        transform: none !important;
    }
}

/* =====================================================================
   SECTIUNE: HUB-UL LOGISTIC (logistic-hub)
   A treia sectiune a paginii Despre Noi, dupa "Cine suntem".
   ===================================================================== */
 
.logistic-hub {
    position: relative;
    overflow: hidden;
    background: #fff;
}
 

 
/* Cercuri blur foarte discrete */
.logistic-hub__blur {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.logistic-hub__blur--yellow {
    width: 400px;
    height: 400px;
    top: 140px;
    left: -110px;
    background: radial-gradient(circle, rgba(232, 212, 0, .55) 0%, rgba(232, 212, 0, 0) 70%);
}

.logistic-hub__blur--gray {
    width: 340px;
    height: 340px;
    bottom: -90px;
    right: -90px;
    background: radial-gradient(circle, rgba(120, 120, 120, .3) 0%, rgba(120, 120, 120, 0) 70%);
}
 
.hub-container {
    position: relative;
    z-index: 1;
 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
 
    max-width: 1450px;
    margin: 0 auto;
    padding: 150px 7%;
}
 
/* =====================================================
   COLOANA STANGA: TEXT
   ===================================================== */
.hub-content {
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
 
.logistic-hub.in-view .hub-content {
    opacity: 1;
    transform: translateX(0);
}
 
.logistic-hub .section-label {
    display: inline-block;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e8d400;
    font-weight: 700;
    margin-bottom: 20px;
}
 
.hub-content h2 {
    font-size: clamp(52px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.15;
    color: #222;
    margin: 0 0 40px 0;
}
 
.hub-feature h3 {
    font-size: 30px;
    font-weight: 800;
    color: #222;
    margin: 0 0 15px 0;
}
 
.hub-feature p {
    font-size: 21px;
    line-height: 1.9;
    color: #666;
    margin: 0 0 35px 0;
}
 
.hub-feature:last-child p {
    margin-bottom: 0;
}
 
/* =====================================================
   COLOANA DREAPTA: COMPOZITIE DE IMAGINI + CARD FLOTANT
   ===================================================== */
.hub-gallery {
    position: relative;
}
 
/* Imaginea mare */
.hub-image-large {
    width: 100%;
    height: 720px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
    position: relative;
    background: #eee; /* placeholder vizual cat timp img are src gol */
 
    opacity: 0;
    transform: translateX(80px) scale(.95);
    transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}
 
.logistic-hub.in-view .hub-image-large {
    opacity: 1;
    transform: translateX(0) scale(1);
}
 
.hub-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
 
.hub-image-large:hover img {
    transform: scale(1.03);
}
 
/* Imaginea mica, suprapusa in dreapta sus */
.hub-image-small {
    position: absolute;
    top: -40px;
    right: -50px;
    width: 280px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
    background: #ddd; /* placeholder vizual cat timp img are src gol */
    z-index: 2;
 
    opacity: 0;
    transform: translateY(50px) rotate(-5deg);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}
 
.logistic-hub.in-view .hub-image-small {
    opacity: 1;
    transform: translateY(0) rotate(0);
}
 
/* Hover separat, fara delay-ul mostenit de la animatia de intrare */
.logistic-hub.in-view .hub-image-small:hover {
    transform: translateY(-8px) rotate(0);
    transition: transform 0.35s ease;
}
 
.hub-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
 
/* Card flotant cu statistici, peste imaginea mare, jos */
.hub-card {
    position: absolute;
    bottom: -30px;
    left: 40px;
    right: 40px;
    max-width: 420px;
 
    background: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
    border: 1px solid rgba(0, 0, 0, .05);
 
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 3;
 
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
 
.logistic-hub.in-view .hub-card {
    opacity: 1;
    transform: translateY(0);
}
 
.logistic-hub.in-view .hub-card:hover {
    transform: translateY(-5px);
    transition: transform 0.35s ease;
}
 
.hub-card__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
    color: #222;
}
 
.hub-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e8d400;
    color: #222;
    font-size: 13px;
    font-weight: 900;
}
 
/* =====================================================
   RESPONSIVE: SUB 992px
   ===================================================== */
@media (max-width: 992px) {
    .hub-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
 
    /* Imaginile trec deasupra textului */
    .hub-gallery {
        order: -1;
        /* spatiu suplimentar ca imaginea mica si cardul sa nu iasa din sectiune */
        margin-top: 60px;
        margin-bottom: 60px;
    }
}
 
/* =====================================================
   RESPONSIVE: SUB 768px
   ===================================================== */
@media (max-width: 768px) {
    .hub-container {
        padding: 90px 6%;
    }
 
    .hub-image-large {
        height: 420px;
    }
 
    .hub-image-small {
        width: 170px;
        height: 220px;
        top: -25px;
        right: -25px;
        border-width: 5px;
    }
 
    .hub-card {
        left: 20px;
        right: 20px;
        padding: 20px 22px;
    }
}
 
/* Accesibilitate: respecta preferinta de reducere a miscarii */
@media (prefers-reduced-motion: reduce) {
    .hub-content,
    .hub-image-large,
    .hub-image-small,
    .hub-card {
        transition: opacity 0.3s ease !important;
        transform: none !important;
    }
 
    .hub-image-large:hover img {
        transform: none;
    }
}

/* Variabile Globale (dacă nu le ai deja definite în site) */
:root {
  --arb-yellow: #f4c023;
  --arb-dark: #111111;
  --arb-gray: #888888;
  --arb-bg: #faf9f4;
  --arb-white: #ffffff;
}

/* Container Secțiune */
.team-section {
  background: var(--arb-bg);
  font-family: "Special Gothic", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Cercuri Blur Discrete */
.bg-blur {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
.yellow-blur {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--arb-yellow) 0%, rgba(244, 192, 35, 0) 70%);
  top: -10%;
  left: -10%;
}
.gray-blur {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #cccccc 0%, rgba(204, 204, 204, 0) 70%);
  bottom: 10%;
  right: -15%;
}

.team-container {
  max-width: 1450px;
  margin: auto;
  padding: 150px 7%;
  position: relative;
  z-index: 1;
}

/* Header General */
.section-header, .team-section-header {
  text-align: center;
  margin-bottom: 70px;
}
.small-title {
  color: var(--arb-yellow);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}
.main-title {
  font-size: 46px;
  font-weight: 800;
  color: var(--arb-dark);
  margin-bottom: 20px;
}
.subtitle, .team-subtitle {
  font-size: 18px;
  color: var(--arb-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Card CEO */
.ceo-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
  background: var(--arb-white);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  margin-bottom: 120px;
}
.ceo-image {
  width: 340px;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  object-position: 50% 60%;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  display: block;
}
.ceo-name {
  font-size: 42px;
  font-weight: 800;
  color: var(--arb-dark);
  margin: 0;
}
.ceo-role {
  font-size: 18px;
  color: var(--arb-gray);
  margin: 8px 0 30px 0;
  font-weight: 600;
}
.ceo-quote {
  font-size: 22px;
  line-height: 1.5;
  color: #444;
  font-style: italic;
  margin: 0 0 30px 0;
  border-left: 4px solid var(--arb-yellow);
  padding-left: 20px;
}
.ceo-signature {
  font-size: 24px;
  font-weight: 700;
  color: var(--arb-dark);
  margin-bottom: 40px;
}
.ceo-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--arb-dark);
  color: var(--arb-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.ceo-btn:hover {
  background: var(--arb-yellow);
  color: var(--arb-dark);
  transform: translateY(-3px);
}

/* Separator Echipă */
.team-section-header {
  margin-bottom: 50px;
}
.team-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--arb-dark);
  margin-bottom: 15px;
}

/* Grid Echipă */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Card Membru Echipă */
.team-card {
  background: var(--arb-white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  opacity: 0; /* Ascuns inițial pentru animație */
}
.team-img-wrapper {
  overflow: hidden;
}
.team-img1 {
  width: 100%;
  height: 520px;
  object-fit: cover;
    object-position: 50% 10%;
  transition: transform 0.5s ease;
  display: block;
}
.team-img2 {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 50% 20%;
  transition: transform 0.5s ease;
  display: block;
}
.team-info {
  padding: 35px;
}
.team-name {
  font-size: 30px;
  font-weight: 800;
  color: #222;
  margin: 0;
}
.team-role {
  font-size: 18px;
  color: #888;
  margin-top: 8px;
  margin-bottom: 25px;
}

/* Social Media Icons */
.social-links {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--arb-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icon svg {
  width: 20px;
  height: 20px;
}
.social-icon:hover {
  background: var(--arb-yellow);
  color: var(--arb-dark);
  transform: translateY(-4px);
}

/* Efecte Hover Card */
.team-card.is-visible:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.12);
}
.team-card.is-visible:hover .team-img1 {
  transform: scale(1.05);
}
.team-card.is-visible:hover .team-img2 {
  transform: scale(1.05);
}

/* Animații (Intersection Observer) */
.animate-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}
.animate-up.is-visible,
.animate-left.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* Animații Carduri Echipă pe rând */
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.team-card.is-visible {
  animation: fadeUpIn 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
  .ceo-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
  .ceo-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
  }
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .team-container {
    padding: 100px 5%;
  }
  .ceo-image {
    height: 340px;
    aspect-ratio: auto;
  }
  .ceo-card {
    padding: 30px;
  }
  .team-grid {
    grid-template-columns: 100%;
  }
}


/* =====================================================
   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);
}
 
.site-footer__data li {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.5;
}
 
/* 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;
    }
}
/* Stilul de bază al butonului */
.phone-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
  width: 40px; /* Cerc la început */
  padding: 0 10px;
  border: none;
  border-radius: 20px;
  background-color: #f0f2f5;
  color: #333333;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
  outline: none;
}

/* Extindere la Hover */
.phone-copy-btn:hover {
  width: 175px;
  background-color: #25d366;
  color: #ffffff;
}

.phone-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

.phone-number {
  font-size: 13px;
  font-weight: 600;
  margin-left: 10px;
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
}

.phone-copy-btn:hover .phone-number {
  opacity: 1;
}

/* Starea vizuală după ce s-a dat click */
.phone-copy-btn.copied {
  background-color: #128c7e !important;
  color: #ffffff !important;
}