/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

main {
    margin: 0;
    padding: 0;
}

/* Header Styles */
/* Header Styles – versiunea FINALĂ */
.site-header {
    position: fixed;               /* ca să fie mereu peste hero & pagină */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent !important;  /* transparent la top */
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0); /* fără umbră la top */
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

/* Când dau scroll, abia atunci devine închis la culoare */
.site-header.scrolled {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.0) 100%
    ) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.site-header.scrolled {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.0) 100%
    );
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    position: relative;
}

.nav-logo {
    flex: 1;
    display: flex;
}

.nav-logo img {
    height: 45px;
    width: auto;
}

.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    position: relative;
    transition: all 0.2s ease;
    padding-bottom: 0.25rem;
}

.main-nav a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.2s ease;
}

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

.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.nav-cta {
    display: inline-flex;
    padding: 0.65rem 1.2rem;
    background: transparent;
    color: #FCC300;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid #FCC300;
    box-shadow: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: rgba(252, 195, 0, 0.12);
    box-shadow: 0 0 18px rgba(252, 195, 0, 0.25);
}

.nav-cta-mobile {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 25vh;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.0) 100%
    );
    z-index: 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url("assets/bg-default.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transition: opacity 0.5s ease-in-out;
}

.hero-background.fade-out {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    padding: 120px 2rem 2rem;
    flex: 1;
    width: 100%;
    perspective: 1000px;
}

.hero-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.12s ease-out;
}

.hero-logo {
    display: block;
    max-width: 1200px;
    width: 100%;
    height: auto;
}

.hero-tagline {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    max-width: 650px;
    line-height: 1.5;
}

.hero-subtext {
    font-size: 1.05rem;
    opacity: 0.85;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Hero Slider */
.hero-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    background: transparent;
    z-index: 2;
    gap: 1rem;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.slider-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
}

.slider-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.slider-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.slider-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.thumbnail {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.25s ease;
    flex-shrink: 0;
    width: 120px;
    height: 70px;
}

.thumbnail:hover,
.thumbnail:focus {
    border-color: #d4af37;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    outline: none;
}

.thumbnail.is-active {
    border-color: #d4af37;
    border-width: 3px;
    transform: scale(1.03);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.4), 0 6px 16px rgba(212, 175, 55, 0.35);
}

.thumbnail.is-active:hover {
    transform: scale(1.08);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Color drip overlay on hero */
.hero {
    position: relative;
    overflow: hidden;
  }
  
  /* Container linii – peste background & overlay */
  .hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    /* fără z-index explicit: va fi peste overlay (-1, -2) și sub content,
       pentru că apare înainte de .hero-content în HTML */
  }
  
  /* Ridicăm conținutul peste linii */
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-slider {
    position: relative;
    z-index: 2;
  }
  
  /* Fiecare linie verticală */
  .hero-line {
    position: relative;
    width: 2px;          /* după ce vezi efectul, poți pune 1px */
    height: 100%;
    overflow: hidden;
  }
  
  /* Picătura care curge */
  .hero-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: -20%;
    width: 100%;
    height: 10vh;
    opacity: 0; /* la început invizibil */
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      #ffffff 75%,
      #ffffff 100%
    );
    animation: hero-drop 6s linear infinite;
    animation-fill-mode: forwards;
  }
  
  /* Culori diferite pentru fiecare linie */
  .hero-line:nth-child(1)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FF4500 75%, #FF4500 100%);
    animation-delay: 0.5s;
  }
  
  .hero-line:nth-child(2)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #32CD32 75%, #32CD32 100%);
    animation-delay: 1s;
  }
  
  .hero-line:nth-child(3)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #1E90FF 75%, #1E90FF 100%);
    animation-delay: 1.5s;
  }
  
  .hero-line:nth-child(4)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFD700 75%, #FFD700 100%);
    animation-delay: 2s;
  }
  
  .hero-line:nth-child(5)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #8A2BE2 75%, #8A2BE2 100%);
    animation-delay: 2.5s;
  }
  
  .hero-line:nth-child(6)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #20B2AA 75%, #20B2AA 100%);
    animation-delay: 3s;
  }
  
  .hero-line:nth-child(7)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #DC143C 75%, #DC143C 100%);
    animation-delay: 3.5s;
  }
  
  .hero-line:nth-child(8)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #00FA9A 75%, #00FA9A 100%);
    animation-delay: 4s;
  }
  
  .hero-line:nth-child(9)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FF1493 75%, #FF1493 100%);
    animation-delay: 4.5s;
  }
  
  .hero-line:nth-child(10)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #00BFFF 75%, #00BFFF 100%);
    animation-delay: 5s;
  }
  
  /* Animația de "picurare" */
  @keyframes hero-drop {
    0% {
      top: -20%;
      opacity: 0;      /* invizibil la start */
    }
    10% {
      opacity: 1;      /* fade-in scurt la început */
    }
    90% {
      opacity: 1;      /* rămâne vizibil cât timp cade */
    }
    100% {
      top: 110%;
      opacity: 0;      /* dispare când iese din ecran */
    }
  }
/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-right .nav-cta {
        display: none;
    }

    .main-nav {
        position: fixed !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        left: 0 !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 3000;
        padding: 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    .main-nav--open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0) !important;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 300px;
    }

    .main-nav ul li {
        list-style: none;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-nav a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        text-decoration: none;
        text-align: center;
        display: block;
        width: 100%;
    }

    .main-nav a::after {
        display: none;
    }

    .nav-cta-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav .nav-cta-mobile .nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.9rem 1.6rem;
        background: transparent;
        color: #FCC300;
        border: 1px solid #FCC300;
        border-radius: 999px;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s ease;
        width: auto;
        margin: 0 auto;
    }

    .main-nav .nav-cta-mobile .nav-cta:hover {
        background: rgba(252, 195, 0, 0.12);
        box-shadow: 0 0 18px rgba(252, 195, 0, 0.25);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-close {
        position: fixed;
        top: 2rem;
        right: 2rem;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 2.5rem;
        line-height: 1;
        cursor: pointer;
        z-index: 3001;
        display: none;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

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

    .nav-close:hover {
        color: #FCC300;
        transform: rotate(90deg);
    }

    .hero-content {
        padding: 100px 1.5rem 1.5rem;
    }

    .hero-logo {
        max-width: 860px;
    }

    .hero-tagline {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
        max-width: 90%;
        margin-top: 1.5rem;
    }

    .hero-subtext {
        font-size: 0.95rem;
        max-width: 85%;
    }

    .hero-slider {
        padding: 1rem 1rem;
        margin-bottom: 1rem;
        gap: 0.75rem;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }

    .slider-thumbnails {
        gap: 0.75rem;
    }

    .thumbnail {
        width: 90px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 600px;
    }
}

/* Who We Are Section */
.section-who {
    background-color: #000;
    color: #ffffff;
    padding: 6rem 2rem;
}

.section-who__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1.1fr;
    column-gap: 2.5rem;
    align-items: stretch;
}

.section-who__col {
    will-change: transform, opacity;
}

.section-who__col--left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 100%;
}

.section-who__col--center {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1; /* imagine sub text */

}

.section-who__col--right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 340px;
    z-index: 3; /* text deasupra imaginii */

}

.section-who__label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0;
    font-style: italic;
}

.section-who__headline {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2.8rem;
    line-height: 1.05;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    color: #ffffff;
}

.section-who__headline-primary {
    color: #FCC300;
}

.section-who__image-wrapper {
    position: relative;          /* adăugat */
    background-color: #0b0d10;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
}

/* Desktop-only bottom fade (no dark overlay) */
.section-who__image-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.section-who__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section-who__text {
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 1.25rem;
}

.section-who__text--secondary {
    margin-bottom: 2rem;
}

.section-who__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.4rem;
    border-radius: 999px;
    border: 1px solid #FCC300;
    background-color: transparent;
    color: #FCC300;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.section-who__button:hover {
    background-color: #FCC300;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
}

@media (max-width: 992px) {
    .section-who__inner {
        grid-template-columns: 1fr;
        row-gap: 3rem;
        text-align: left;
    }

    .section-who__col--left,
    .section-who__col--center,
    .section-who__col--right {
        display: block;
        max-width: none;
        position: static;
        width: auto;
        margin-top: 0;
        margin-bottom: 0;
    }

    .section-who__col--center {
        order: -1; /* image first */
    }

    .section-who__label {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .section-who__inner {
        position: relative;
        display: block;
    }

    .section-who__col--left {
        position: relative;
        z-index: 2;
        max-width: 70%;
        margin-bottom: 3rem;
        z-index: 4; /* text deasupra imaginii */

    }

    .section-who__headline {
        font-size: 2rem;
        line-height: 1.1;
    }

    .section-who__col--center {
        position: absolute;
        top: 4rem;
        right: 1.5rem;
        width: 50%;
        z-index: 1;
        order: 0; /* reset order */
    }

    .section-who__image-wrapper {
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
        width: 100%;
        max-width: 260px;           /* limită pe mobil */
        margin-left: auto;          /* o împinge spre dreapta în coloana ei */
    }

    /* Întunecăm imaginea pe mobil */
    .section-who__image-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);  /* dark overlay peste imagine */
        pointer-events: none;
        z-index: 1;
    }

    /* Mobile inner shadow / fade jos -> în background-ul negru (overrides desktop ::after) */
    .section-who__image-wrapper::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 40%;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.0) 100%
        );
        pointer-events: none;
        z-index: 2;
    }

    .section-who__col--right {
        position: relative;
        margin-top: 4rem;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .section-who {
        padding: 4rem 1.5rem;
    }

    .section-who__headline {
        font-size: 2.1rem;
    }
}

@media (max-width: 480px) {
    .section-who__col--left {
        max-width: 65%;
    }

    .section-who__col--center {
        width: 45%;
        top: 3rem;
        right: 1rem;
    }

    .section-who__headline {
        font-size: 1.8rem;
    }
    .section-who__image-wrapper {
        max-width: 220px;  /* și mai controlată pe ecrane foarte mici */
    }
}

/* Desktop image fade (only bottom inner shadow, not dark overlay) */
.section-who__image-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.0) 100%
    );
}

/* Prevent the mobile dark overlay from appearing on desktop */
@media (min-width: 769px) {
    .section-who__image-wrapper::before {
        display: none !important;
    }

    /* You can increase brightness if needed */
    .section-who__image {
        filter: none;
    }
}

/* Products Section */
.section-products {
    background-color: #000;
    color: #ffffff;
    padding: 6rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-products__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-products__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.section-products__eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.7;
    font-style: italic;
}

.section-products__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-products__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    position: relative;
}

.section-products__arrow:hover {
    background: rgba(252, 195, 0, 0.2);
    border-color: #FCC300;
    color: #FCC300;
    transform: scale(1.1);
}

.section-products__arrow:active {
    transform: scale(0.95);
}

.section-products__arrow:focus {
    outline: 2px solid rgba(252, 195, 0, 0.5);
    outline-offset: 2px;
}

.section-products__index-nav {
    display: flex;
    gap: 1.5rem;
}

.section-products__index {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.section-products__index:hover {
    color: rgba(255, 255, 255, 0.7);
}

.section-products__index.is-active {
    color: #FCC300;
    opacity: 1;
}

.section-products__gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: center;
}

.section-products__image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.section-products__image--left,
.section-products__image--right {
    height: 500px;
}

.section-products__image--center {
    height: 580px;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.section-products__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease;
}

.section-products__headline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    line-height: 1.1;
    z-index: 3;
    max-width: 90%;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    white-space: pre-line;
}

.section-products__footer {
    text-align: center;
}

.section-products__description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.section-products__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.6rem;
    border-radius: 999px;
    border: 1px solid #FCC300;
    background-color: transparent;
    color: #FCC300;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.section-products__button:hover {
    background-color: #FCC300;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
}

@media (max-width: 992px) {
    .section-products__gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-products__image--left,
    .section-products__image--right {
        display: none;
    }

    .section-products__image--center {
        height: 500px;
        width: 100%;
    }
}

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

    .section-products__header {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .section-products__eyebrow {
        text-align: center;
    }

    .section-products__controls {
        gap: 0.75rem;
    }

    .section-products__arrow {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .section-products__index-nav {
        gap: 1rem;
    }

    .section-products__headline {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .section-products__image--center {
        height: 400px;
    }

    .section-products__description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-products__headline {
        font-size: 1.6rem;
        letter-spacing: 0.08em;
    }

    .section-products__image--center {
        height: 350px;
    }
}

/* Global Franchise Network Section */
/* GLOBAL SECTION — FIXED WITH STARFIELD SUPPORT */
.section-global {
    position: relative;
    padding: 8rem 2rem;
    color: #ffffff;
    overflow: hidden;
}

/* BACKGROUND LAYER (SEMI-TRANSPARENT SO STARS ARE VISIBLE) */
.section-global::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35); /* transparent enough to show stars */
    z-index: 0;
    pointer-events: none;
}

/* STARFIELD CANVAS */
#global-stars {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* stars sit ABOVE background, but BELOW content */
    pointer-events: none;
}

/* SECTION CONTENT */
.section-global__inner {
    position: relative;
    z-index: 5; /* content must be ABOVE stars */
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.1fr;
    column-gap: 3rem;
    align-items: center;
    background: transparent !important; /* IMPORTANT */
}

/* TEXT */
.section-global__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.section-global__title {
    font-family: "Georgia", serif;
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.section-global__text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

/* BUTTON (FCC300) */
/* FINAL FIX — FORCE BUTTON TO DISPLAY ALWAYS ABOVE EVERYTHING */
.section-global__button {
    position: relative !important;
    z-index: 9999 !important;
    display: inline-flex !important;
    padding: 0.9rem 2.6rem !important;
    border-radius: 999px !important;
    border: 2px solid #FCC300 !important;
    background: transparent !important;
    color: #FCC300 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    opacity: 1 !important;
}

/* Hover */
.section-global__button:hover {
    background: #FCC300 !important;
    color: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45) !important;
}

/* GLOBE AREA */
.section-global__visual {
    position: relative;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* când globul intră în modul „franchise”, îl lăsăm să ocupe toată lățimea și să stea pe centru */
.section-global__visual.section-global__visual--expanded {
    grid-column: 1 / -1;          /* ia ambele coloane ale grilei */
    justify-content: center;      /* centru pe orizontală */
}

/* ca să fie tot timpul centrat în containerul lui */
.section-global__globe-placeholder {
    margin: 0 auto;
    transform-origin: center center;
}

.section-global__globe-placeholder {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #333 0%, #050608 60%, #000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-global__globe-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


/* MOBILE */
@media (max-width: 992px) {
    .section-global__inner {
        grid-template-columns: 1fr;
        row-gap: 3rem;
        background: transparent !important;
    }

    .section-global__visual {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-global__inner {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-global__content {
        text-align: center !important;
        align-items: center !important;
    }

    .section-global__eyebrow,
    .section-global__title,
    .section-global__text,
    .section-global__button {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* 👇 AICI E FIXUL IMPORTANT */
    .section-global__visual {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 1.5rem 0;
    }

    .section-global__globe-placeholder {
        width: min(70vw, 300px);  /* îi dăm o lățime clară */
        max-width: 300px;
    }
}

/* 🌌 INNER SHADOW TOP & BOTTOM FOR STARFIELD SECTION */
.section-global {
    position: relative;
    overflow: hidden;
}

/* Two fade masks — one top, one bottom */
.section-global::before,
.section-global::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 18vh;
    pointer-events: none;
    z-index: 4; /* above stars, below content */
}

/* Top fade */
.section-global::before {
    top: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.6) 35%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* Bottom fade */
.section-global::after {
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.6) 35%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* Ensure content stays ABOVE fade masks */
.section-global__inner {
    position: relative;
    z-index: 5;
}


@media (max-width: 480px) {
    .section-global__globe-placeholder {
        width: min(80vw, 240px);
        max-width: 240px;
    }
}





/* ---------- OPEN A FRANCHISE (inside global section) ---------- */

.section-franchise {
    position: relative;
    padding: 5rem 2rem 6rem;
    color: #ffffff;
    z-index: 5;
    text-align: center;

    /* 👇 important: CTA-ul e ascuns la început */
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
}

.section-franchise__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-franchise__title {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2.6rem;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.section-franchise__title span {
    color: #FCC300;
}

.section-franchise__text {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

/* Buton în stil Ferrara (auriu) */
.section-franchise__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.8rem;
    border-radius: 999px;
    border: 2px solid #FCC300;
    background: #FCC300;      /* 👈 acum e mereu auriu */
    color: #000;              /* 👈 text negru permanent */
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.section-franchise__button:hover {
    background: #ffd944;      /* un pic mai deschis la hover */
    border-color: #ffd944;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
}

/* Overlay cu ? peste glob */
.section-global__globe-placeholder {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    will-change: transform, filter;
}

.section-global__globe-question {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia", "Times New Roman", serif;

    font-size: 200px; /* aproape cât întreg globul – scalat proporțional */
    font-weight: 400;
    color: #FCC300 !important;

    text-shadow: 
        0 0 25px rgba(0, 0, 0, 0.9),
        0 0 35px rgba(0, 0, 0, 0.85),
        0 0 60px rgba(0, 0, 0, 0.7);

    opacity: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .section-franchise {
        padding: 3.5rem 1.5rem 4.5rem;
    }

    .section-franchise__title {
        font-size: 2.1rem;
    }

    .section-franchise__text {
        font-size: 0.95rem;
    }
}


.section-franchise__title {
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.9),
                 0 0 12px rgba(0, 0, 0, 0.7);
}

.section-franchise__text {
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.85),
                 0 0 8px rgba(0, 0, 0, 0.6);
}

.section-franchise__title span {
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
}










/* Why Ferrara Design Section */
.section-why {
    background: #050608;
    color: #fff;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Subtle radial background glow */
.section-why::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(
        circle,
        rgba(252, 195, 0, 0.03) 0%,
        rgba(252, 195, 0, 0.01) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.section-why__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-why__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    opacity: 0.7;
    display: block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-style: italic;
}

.section-why__title {
    font-family: "Georgia", serif;
    font-size: 2.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    font-weight: 400;
    position: relative;
}

.section-why__divider {
    width: 0;
    height: 2px;
    background: #FCC300;
    margin: 0 auto 4rem;
    opacity: 0;
}

.section-why__grid {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.usp {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1.5rem 0;
    opacity: 0.35;
    transition: all 0.3s ease;
    cursor: default;
    width: 100%;
}

/* Odd items (1, 3, 5...) - Left aligned */
.usp:nth-child(odd) {
    justify-content: flex-start;
    align-self: flex-start;
}

/* Even items (2, 4, 6...) - Right aligned */
.usp:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-self: flex-end;
}

.usp.is-active {
    opacity: 1;
}

.usp:hover {
    transform: scale(1.02);
}

.usp__icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.usp.is-active .usp__icon {
    background: rgba(252, 195, 0, 0.15);
    border-color: #FCC300;
}

.usp__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: background 0.4s ease;
}

.usp.is-active .usp__icon::before {
    background: #FCC300;
    box-shadow: 0 0 10px rgba(252, 195, 0, 0.5);
}

.usp__content {
    flex: 1;
    text-align: left;
    max-width: 400px;
}

/* Right-aligned items have right-aligned text */
.usp:nth-child(even) .usp__content {
    text-align: right;
}

.usp__title {
    font-family: "Georgia", serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 0.35;
}

.usp.is-active .usp__title {
    opacity: 1;
}

.usp:hover .usp__title {
    color: #FCC300;
    text-shadow: 0 0 15px rgba(252, 195, 0, 0.4);
}

.usp__text {
    font-size: 0.95rem;
    opacity: 0.35;
    line-height: 1.7;
    transition: opacity 0.3s ease;
}

.usp.is-active .usp__text {
    opacity: 1;
}

.usp:hover .usp__text {
    opacity: 1;
}

@media (max-width: 991px) {
    /* Override alternating layout on tablet and below */
    .usp:nth-child(odd),
    .usp:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        align-self: flex-start;
    }

    .usp:nth-child(even) .usp__content {
        text-align: left;
    }
}

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

    .section-why__title {
        font-size: 2.1rem;
        margin-bottom: 1.5rem;
    }

    .section-why__divider {
        margin-bottom: 3rem;
    }

    .section-why__grid {
        gap: 3rem;
        max-width: 100%;
    }

    .usp {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 1.5rem;
        justify-content: flex-start !important;
    }

    .usp__icon {
        width: 75px;
        height: 75px;
        min-width: 75px;
    }

    .usp__content {
        text-align: left !important;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .section-why__grid {
        gap: 2.5rem;
    }

    .usp {
        padding: 1rem 0;
    }

    .usp__icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
}


/* Blog / News Section */
.section-blog {
    background: #050608;
    color: #fff;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-blog__inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-blog__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    opacity: 0.7;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-style: italic;
    color: #fff;
}

.section-blog__title {
    font-family: "Georgia", serif;
    font-size: 2.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #fff;
}

.section-blog__description {
    font-size: 1.05rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    opacity: 0.85;
    line-height: 1.7;
    font-weight: 300;
    color: #fff;
}

.section-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.section-blog .blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.section-blog .blog-card:hover {
    border-color: rgba(252, 195, 0, 0.35) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(252, 195, 0, 0.1);
    transform: none !important;
}

.section-blog .blog-card__image-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.section-blog .blog-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.section-blog .blog-card:hover .blog-card__image {
    transform: scale(1.05);
}

.section-blog .blog-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    color: #fff;
}

.section-blog .blog-card__title,
.section-blog .blog-card h3 {
    font-family: "Georgia", serif !important;
    font-size: 1.2rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin: 0 0 1rem 0 !important;
    font-weight: 400 !important;
    color: #fff !important;
    line-height: 1.4 !important;
    transition: color 0.3s ease;
}

.section-blog .blog-card:hover .blog-card__title,
.section-blog .blog-card:hover h3 {
    color: #FCC300 !important;
}

.section-blog .blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
}

.section-blog .blog-card__date,
.section-blog .blog-card__author {
    color: rgba(255, 255, 255, 0.65);
}

.section-blog .blog-card__separator {
    opacity: 0.4;
    color: rgba(255, 255, 255, 0.4);
}

.section-blog .blog-card__read {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(252, 195, 0, 0.7) !important;
    font-weight: 500;
    margin-top: auto;
    transition: color 0.3s ease;
    display: block;
}

.section-blog .blog-card:hover .blog-card__read {
    color: #FCC300 !important;
}

.section-blog__cta {
    text-align: center;
}

.section-blog__button {
    display: inline-flex;
    padding: 0.9rem 2.6rem;
    border-radius: 999px;
    border: 2px solid #FCC300;
    background: transparent;
    color: #FCC300;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.section-blog__button:hover {
    background: #FCC300;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
}

/* Responsive Styles for Blog Section */
@media (max-width: 992px) {
    .section-blog__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

    .section-blog__title {
        font-size: 2.1rem;
        margin-bottom: 1rem;
    }

    .section-blog__description {
        font-size: 0.95rem;
        margin-bottom: 3rem;
    }

    .section-blog__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .section-blog .blog-card__content {
        padding: 1.5rem;
    }

    .section-blog .blog-card__title {
        font-size: 1.1rem;
    }
}

/* Force blog cards to be fully visible (fix dim 3rd card) */
.section-blog .blog-card,
.section-blog .blog-card * {
  opacity: 1 !important;
  filter: none !important;
}


/* Showcase / Featured Projects Section */
.section-showcase {
    background: #050608;
    color: #fff;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-showcase__inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-showcase__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    opacity: 0.7;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-style: italic;
    color: #fff;
}

.section-showcase__title {
    font-family: "Georgia", serif;
    font-size: 2.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #fff;
}

.section-showcase__description {
    font-size: 1.05rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    opacity: 0.85;
    line-height: 1.7;
    font-weight: 300;
    color: #fff;
}

.section-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.section-showcase .showcase-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    /* Ensure cards are visible by default - GSAP will handle animation */
    opacity: 1;
    visibility: visible;
    transform: none;
}

.section-showcase .showcase-card:hover {
    border-color: rgba(252, 195, 0, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(252, 195, 0, 0.1);
    transform: none;
}

.section-showcase .showcase-card__image-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 62.5%; /* 16:10 aspect ratio (cinematic) */
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.section-showcase .showcase-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.section-showcase .showcase-card:hover .showcase-card__image {
    transform: scale(1.05);
}

.section-showcase .showcase-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    z-index: 2;
}

.section-showcase .showcase-card__title {
    font-family: "Georgia", serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.section-showcase .showcase-card:hover .showcase-card__title {
    color: #FCC300;
}

.section-showcase__cta {
    text-align: center;
}

.section-showcase__button {
    display: inline-flex;
    padding: 0.9rem 2.6rem;
    border-radius: 999px;
    border: 2px solid #FCC300;
    background: transparent;
    color: #FCC300;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.section-showcase__button:hover {
    background: #FCC300;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
}

/* Showcase Modal */
.showcase-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.showcase-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.showcase-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.showcase-modal__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-modal__close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1002;
}

.showcase-modal__close:hover {
    background: rgba(252, 195, 0, 0.2);
    border-color: #FCC300;
    color: #FCC300;
    transform: rotate(90deg);
}

.showcase-modal__figure {
    margin: 0;
    position: relative;
}

.showcase-modal__image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(252, 195, 0, 0.2);
}

.showcase-modal__caption {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Georgia", serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FCC300;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Responsive Styles for Showcase Section */
@media (max-width: 992px) {
    .section-showcase__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

    .section-showcase__title {
        font-size: 2.1rem;
        margin-bottom: 1rem;
    }

    .section-showcase__description {
        font-size: 0.95rem;
        margin-bottom: 3rem;
    }

    .section-showcase__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .section-showcase .showcase-card__overlay {
        padding: 1.5rem;
    }

    .section-showcase .showcase-card__title {
        font-size: 1.1rem;
    }

    .showcase-modal__caption {
        bottom: -50px;
        font-size: 1rem;
    }
}


/* Footer */
.site-footer {
    position: relative;
    background: #050608;
    color: #fff;
    padding: 5rem 2rem 3rem;
    overflow: hidden;
}

#footer-stars {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


@keyframes footerGlowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-10px);
    }
}

.site-footer__inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__column {
    display: flex;
    flex-direction: column;
}

/* Hide toggle buttons on desktop */
.site-footer__toggle {
    display: none;
}

/* Content always visible on desktop */
.site-footer__content {
    display: block;
    max-height: none;
    overflow: visible;
    padding: 0;
}

.site-footer__heading {
    font-family: "Georgia", serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #fff;
}

.site-footer__brand-name {
    font-family: "Georgia", serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #FCC300;
    margin-bottom: 1rem;
}

.site-footer__text {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.site-footer__text strong {
    color: #fff;
    font-weight: 500;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__links li {
    margin-bottom: 0.75rem;
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__text a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.site-footer__links a:hover,
.site-footer__contact a:hover,
.site-footer__text a:hover {
    color: #FCC300;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
}

.site-footer__disclaimer {
    flex: 1;
    min-width: 300px;
}

.site-footer__copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.site-footer__disclaimer-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.site-footer__social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.site-footer__social-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.site-footer__social-link:hover {
    color: #FCC300;
}

.site-footer__back-to-top {
    display: flex;
    align-items: center;
}

.site-footer__back-to-top-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.site-footer__back-to-top-link:hover {
    color: #FCC300;
}

/* Responsive Footer Styles */
@media (max-width: 992px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__social {
        order: -1;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .site-footer__column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-footer__column:last-child {
        border-bottom: none;
    }

    /* Show toggle buttons on mobile */
    .site-footer__toggle {
        display: flex;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: transparent;
        border: none;
        padding: 1rem 0;
        cursor: pointer;
        text-align: left;
        color: inherit;
    }

    .site-footer__toggle:hover {
        opacity: 0.9;
    }

    .site-footer__toggle .site-footer__heading {
        margin: 0;
        font-size: 0.9rem;
        pointer-events: none;
    }

    .site-footer__chevron {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.6);
        transition: transform 0.3s ease, color 0.3s ease;
        display: inline-block;
        transform: rotate(0deg);
    }

    .site-footer__toggle[aria-expanded="true"] .site-footer__chevron {
        transform: rotate(90deg);
        color: #FCC300;
    }

    /* Accordion Content - Mobile Only */
    .site-footer__content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        display: block;
    }

    .site-footer__toggle[aria-expanded="true"] + .site-footer__content {
        max-height: 500px;
        padding: 0 0 1rem 0;
    }

    .site-footer__heading {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .site-footer__brand-name {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .site-footer__text {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    /* Clamp About text to 2 lines on mobile */
    .site-footer__column:first-child .site-footer__text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .site-footer__links {
        padding-top: 0.5rem;
    }

    .site-footer__links li {
        margin-bottom: 0.5rem;
    }

    .site-footer__links a,
    .site-footer__contact a,
    .site-footer__text a {
        font-size: 0.8rem;
        padding: 0.25rem 0;
        display: inline-block;
    }

    .site-footer__contact {
        padding-top: 0.5rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1rem;
    }

    .site-footer__disclaimer {
        min-width: 100%;
        order: 3;
    }

    .site-footer__copyright {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }

    .site-footer__disclaimer-text {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .site-footer__social {
        flex-wrap: wrap;
        gap: 1rem;
        order: 1;
    }

    .site-footer__social-link {
        font-size: 0.75rem;
    }

    .site-footer__back-to-top {
        order: 2;
    }

    .site-footer__back-to-top-link {
        font-size: 0.75rem;
    }

    /* Reduce star opacity on mobile */
    #footer-stars {
        opacity: 0.4;
    }
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: #050608;
}

/* canvas cu stele */
#footer-stars {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Fade overlay – face stelele să apară treptat */
.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    /* fade de sus în jos */
    background: linear-gradient(
        to bottom,
        rgba(5, 6, 8, 1) 0%,
        rgba(5, 6, 8, 0.85) 15%,
        rgba(5, 6, 8, 0.4) 35%,
        rgba(5, 6, 8, 0) 60%
    );
}

/*DE SCOS*/
.section-products__img {
    transform: rotate(180deg);
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.page-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #050608;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader__stars {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.loader__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.loader__logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader__logo {
    height: 78px;
    width: auto;
    filter: drop-shadow(0 0 25px rgba(252, 195, 0, 0.6)) 
            drop-shadow(0 0 50px rgba(252, 195, 0, 0.3))
            drop-shadow(0 0 80px rgba(252, 195, 0, 0.15));
    animation: loaderGlow 2s ease-in-out infinite;
}

@keyframes loaderGlow {
    0%, 100% {
        filter: drop-shadow(0 0 25px rgba(252, 195, 0, 0.6)) 
                drop-shadow(0 0 50px rgba(252, 195, 0, 0.3))
                drop-shadow(0 0 80px rgba(252, 195, 0, 0.15));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(252, 195, 0, 0.8)) 
                drop-shadow(0 0 70px rgba(252, 195, 0, 0.5))
                drop-shadow(0 0 100px rgba(252, 195, 0, 0.25));
        transform: scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .loader__logo {
        animation: none;
        filter: drop-shadow(0 0 25px rgba(252, 195, 0, 0.7)) 
                drop-shadow(0 0 50px rgba(252, 195, 0, 0.4));
    }
}

.loader__progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 280px;
}

.loader__progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.loader__progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FCC300 0%, rgba(252, 195, 0, 0.8) 100%);
    border-radius: 999px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(252, 195, 0, 0.5);
}

.loader__text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .loader__logo {
        height: 65px;
    }

    .loader__progress {
        width: 240px;
    }

    .loader__text {
        font-size: 0.7rem;
    }
}




