
/* PRELOADER LOGO */
#preloader-door .door-logo img {
    width: 250px;
    max-width: 250px;
    height: auto;
    object-fit: contain;
}





@media (max-width: 768px) {

    /* navbar layout corect */
    .navbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* LOGO RĂMÂNE ÎN STÂNGA */
    .navbar .door-logo {
        position: static !important;
        transform: none !important;
        margin-right: auto;
    }

    /* glob + burger în dreapta */
    .lang-icon {
        margin-left: auto;
        margin-right: 12px;
    }

    .burger {
        margin-left: 0;
    }
}


@media (max-width: 768px) {

    .navbar .nav-links {
        left: 0 !important;
        transform: none !important;
        position: fixed;
    }

    .nav-links {
        top: 72px;
        left: 0;
        right: 0;
        height: calc(100vh - 72px);
        background: #111;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 1001;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}





















.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(38,38,38,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO STÂNGA */
.navbar .door-logo {
    flex: 0 0 auto;
}

.navbar .logo img {
    height: 100px;
    width: auto;
}

/* MENIU CENTRU */
.navbar .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 28px;
}

/* DREAPTA */
.navbar .lang-icon {
    margin-left: auto;
    margin-right: 16px;
}























/* ----- RESPONSIVE: Mobile ----- */
@media (max-width: 768px) {

    /* Container full width pe mobil */
    .section-dark .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
    }

    /* Coloane -> coloană + spațiere */
    .about-layout {
        display: block !important;
    }

    .about-text {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 30px !important; /* ⬅️ SPAȚIU ÎNTRE TEXT ȘI POZĂ */
    }

    .about-photo {
        width: 100% !important;
    }

    .about-photo img {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px;
    }

    .about-text p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}


.pricing-section {
    padding: 60px 0;
    background: #303030;
    text-align: center;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    width: 300px;
    box-shadow: 0 0 20px rgba(255 255 255);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card.highlighted {
    border: 2px solid #c9a46b;
    background-color: #fff9f0;
}

.pricing-stars {
    font-size: 24px;
    margin-bottom: 10px;
    color: #c9a46b;
}

.pricing-card h3 {
    margin: 0;
    font-size: 22px;
}

.pricing-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-features li {
    margin-bottom: 10px;
    font-size: 15px;
}

.pricing-price {
    font-size: 20px;
    color: #111;
    margin-bottom: 15px;
}

.pricing-cta {
    margin-top: 40px;
}

.btn {
    padding: 12px 24px;
    background-color: #c9a46b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #a87d44;
}

.review-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.review-rating {
    font-size: 18px;
    color: gold;
    margin-top: 8px;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.mosaic-grid-9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 10px;
}

.mosaic-img {
    width: 100%;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

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

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    background: #1f1f1f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    text-align: center;
    color: #f5f5f5;
}

.lightbox-content img {
    width: 100%;
    display: block;
}

.lightbox-text {
    padding: 20px;
}

.lightbox-title {
    font-size: 18px;
    color: #c9a269;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lightbox-desc {
    font-size: 14px;
    color: #ddd;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0,0,0,0.8);
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }


.steps-section {
    background-color: #1f1f1f;
    color: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.steps-header .section-subtitle {
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c9a269;
    margin-bottom: 10px;
}

.steps-header .section-title {
    font-size: 24px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Grid etape */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.step-item {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.step-item:hover {
    transform: translateY(-4px);
}

.step-icon {
    font-size: 32px;
    color: #c9a269;
    margin-bottom: 14px;
}

.step-item h3 {
    font-size: 15px;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.step-item p {
    font-size: 14px;
    color: #d6d6d6;
    margin: 0;
}

/* Buton mic CTA */
.cta-center {
    text-align: center;
}

.cta-btn-small {
    display: inline-block;
    padding: 10px 22px;
    font-size: 13px;
    text-transform: uppercase;
    background-color: #c9a269;
    color: #111;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: background 0.2s ease;
}

.cta-btn-small:hover {
    background-color: #ddb97b;
}


.why-item p {
    text-align: center !important;
}


/* NAVBAR – adaugăm align pentru limbă */
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* LINKS */
.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links .nav-link {
    position: relative;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f5f5f5;
    transition: color 0.2s ease;
}

/* link activ = galben + linie jos */
.nav-links .nav-link.active {
    color: #c9a269;
}

.nav-links .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #c9a269;
    border-radius: 999px;
}

/* hover */
.nav-links .nav-link:hover {
    color: #c9a269;
}

/* LANG SWITCH */
.lang-switch {
    position: relative;
    font-size: 13px;
}

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #3b3b3b;
    background-color: #1f1f1f;
    color: #f5f5f5;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    font-size: 11px;
}

.lang-current i {
    font-size: 10px;
}

/* dropdown list */
.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    background-color: #1f1f1f;
    border-radius: 10px;
    border: 1px solid #333;
    min-width: 80px;
    display: none;              /* ascuns implicit */
    z-index: 50;
}

.lang-menu.show {
    display: block;
}

.lang-menu li {
    padding: 6px 12px;
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f5f5f5;
    white-space: nowrap;
}

.lang-menu li:hover {
    background-color: #2a2a2a;
    color: #c9a269;
}

/* MOBILE – poți ajusta după cum ai deja */
@media (max-width: 768px) {
    .navbar-inner {
        gap: 12px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: #111;
        padding: 16px 20px;
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .lang-switch {
        margin-left: auto;
        margin-right: 12px;
    }
}

.reviews-section {
    background-color: #151515;
    color: #f5f5f5;
    padding: 80px 0;
}

.reviews-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Titlu secțiune */
.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-kicker {
    font-size: 13px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #c9a269;
    margin-bottom: 6px;
}

.reviews-header h2 {
    font-size: 20px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Carusel */
.reviews-carousel {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    position: relative;
}

/* Card recenzie */
.review-item {
    opacity: 0;
    transform: translateX(15px);
    pointer-events: none;
    position: absolute;
    inset: 0;
    padding: 30px 26px;
    background-color: #1f1f1f;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.review-item.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.review-text {
    font-size: 18px;
    line-height: 1.8;
    color: #e4e4e4;
    margin-bottom: 22px;
}

/* META CENTRATĂ */
.review-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 14px;
    text-align: center;        /* <- aici se centrează tot blocul */
}

.review-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.review-role {
    font-size: 13px;
    color: #b3b3b3;
    margin-bottom: 6px;
}

.review-stars {
    font-size: 14px;
    letter-spacing: 2px;
    color: #c9a269;
}

/* Butoane navigare */
.reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #f5f5f5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.1s ease;
}

.reviews-nav.prev {
    left: 10px;
}

.reviews-nav.next {
    right: 10px;
}

.reviews-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.05);
}

/* Bullets */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.reviews-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background-color: #555;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.reviews-dots .dot.is-active {
    width: 20px;
    background-color: #c9a269;
}

/* Responsive */
@media (max-width: 640px) {
    .reviews-section {
        padding: 60px 0;
    }

    .review-item {
        padding: 24px 20px;
    }

    .reviews-nav {
        /* dacă vrei să dispara pe mobil */
        display: none;
    }
}

.cta-section {
    position: relative;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;              /* să nu iasă poza în afară */
}

/* Imaginea de fundal din HTML */
.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;             /* acoperă toată secțiunea */
    z-index: -1;                   /* rămâne în spate */
}



/* Conținut */
.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 26px;
    color: #e4e4e4;
}

/* Buton */
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    background-color: #c9a269;
    color: #111;
    transition: all 0.2s ease;
}

.cta-btn:hover {
    background-color: #e1b978;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 70px 0;
    }

    .cta-overlay {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-content p {
        font-size: 14px;
    }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 coloane */
    gap: 30px;
}

.why-item {
    background-color: #262626;   /* card închis la culoare */
    border-radius: 12px;
    padding: 24px 20px;
    max-width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.why-icon {
    margin-bottom: 16px;
    text-align: center;
}

.why-icon i {
    font-size: 34px;
    color: #c9a269;
}

.why-item h3 {
    font-size: 18px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c9a269;
    margin-bottom: 10px;
    text-align: center;
}

.why-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #d6d6d6;
    text-align: left;
}

/* Responsive – 1 coloană pe mobil */
@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;  /* CENTRAT */
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.hero-title-box {
    text-align: center;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 26px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* Buton primar (verde sau culoarea brandului) */
.hero-btn.primary {
    background: #1db954;
    color: #fff;
}

.hero-btn.primary:hover {
    background: #17a347;
}

/* Buton secundar (transparent cu bordură albă) */
.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    backdrop-filter: blur(4px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}


/* RESET TOTAL PENTRU LOGO-URI IN SECTIUNEA PARTNERS */

/* containerul logo-ului */
.partners-section .partner-logo,
.partners-section .partner-logo a {
    position: relative;
    background: transparent !important;
    box-shadow: none !important;
}

/* anulăm orice overlay cu ::before / ::after */
.partners-section .partner-logo::before,
.partners-section .partner-logo::after,
.partners-section .partner-logo a::before,
.partners-section .partner-logo a::after {
    content: none !important;
    background: transparent !important;
}

/* imaginea propriu-zisă */
.partners-section .partner-logo img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1 !important;
    filter: none !important;           /* scoate grayscale / darken */
    mix-blend-mode: normal !important; /* scoate blend-uri ciudate */
    transition: transform 0.3s ease;   /* doar un mic zoom, fără întunecare */
}

/* asigurăm că NICI LA HOVER nu se pune nimic peste */
.partners-section .partner-logo:hover,
.partners-section .partner-logo:hover a,
.partners-section .partner-logo:hover img {
    background: transparent !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

/* opțional: doar un mic zoom la hover */
.partners-section .partner-logo:hover img {
    transform: scale(1.05);
}


/* ====== CONTAINER GENERAL ====== */
.constructions-section {
    max-width: 1921px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
    font-family: "Helvetica Neue", Arial, sans-serif;
    box-sizing: border-box;
}

.constructions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.constructions-header h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.constructions-header p {
    font-size: clamp(0.75rem, 1.1vw, 0.9rem);
    color: #777;
}

/* ====== ROW: COLAJ 9 POZE + POZA MARE ====== */
/* folosim GRID pentru un comportament mai bun pe toate ecranele */
.construction-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3.75rem);
    margin-bottom: clamp(3rem, 7vw, 7rem);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* când apare pe ecran */
.construction-row.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== COLAJ 9 POZE ====== */
.construction-media {
    width: 100%;
}

.mosaic-grid-9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

/* păstrăm pătrățelele – pe mobil se ajustează automat */
.mosaic-grid-9 img {
    width: 100%;
    aspect-ratio: 1 / 1;       /* menține fiecare poză pătrată */
    object-fit: cover;
    display: block;
}

/* ====== POZA MARE + TEXT PESTE ====== */
.construction-hero {
    position: relative;
    width: 100%;
    min-height: clamp(260px, 45vw, 460px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* overlay subtil */
.construction-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.04);
}

/* conținut centrat */
.construction-hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    color: #0d2340;
}

.construction-hero-inner h3 {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.construction-hero-inner p {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    max-width: 280px;
    line-height: 1.6;
}

/* ====== RESPONSIVE BREAKPOINTS ====== */

/* sub 992px – blocurile se pun unul sub altul */
@media (max-width: 992px) {
    .construction-row {
        grid-template-columns: 1fr;
    }

    /* punem mai întâi poza mare, apoi colajul – dacă vrei invers, scoate astea două linii */
    .construction-hero {
        order: -1;
    }
}

/* sub 600px – spacing și fonturi mai mici, colajul rămâne 3x3 dar scalable */
@media (max-width: 600px) {
    .constructions-section {
        padding: 3.5rem 1.25rem;
    }

    .construction-row {
        margin-bottom: 3.5rem;
        gap: 1.75rem;
    }

    .construction-hero-inner {
        padding: 2rem 1.5rem;
    }

    .construction-hero-inner p {
        max-width: 90%;
    }
}

/* grid text + foto */
.about-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;  /* text mai îngust, POZA mai lată */
    gap: 40px;
    align-items: center;
}

/* containerul pozei – fără box gri, fără border, fără min-height forțat */
.about-photo {
    background: transparent;     /* scoatem griul */
    border: none;                /* scoatem chenarul */
    display: block;
    overflow: hidden;
}

/* poza – umple toată coloana, cât de mare permite layout-ul */
.about-photo img {
    width: 100%;
    height: auto;                /* păstrează proporțiile naturale */
    display: block;
}


.hero {
    height: 80vh;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 52px;
}


:root {
    --accent: #c9a46b;
    --accent-soft: #d9b883;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #262626;
    color: #f5f5f5;
}

/* PRELOADER TIP "UȘI" */

#preloader-door {
    position: fixed;
    inset: 0;
    background: #111;
    z-index: 2000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader-door.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.door {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: #191919;
    transition: transform 0.6s ease-in-out;
}

.door-left {
    left: 0;
    transform: translateX(0);
}

.door-right {
    right: 0;
    transform: translateX(0);
}

/* când containerul are clasa .open, ușile se dau în lateral */
#preloader-door.open .door-left {
    transform: translateX(-100%);
}

#preloader-door.open .door-right {
    transform: translateX(100%);
}

/* logo în centru */

.door-logo {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f5f5f5;
}

.door-logo-box {
    border: 1px solid var(--accent);
    padding: 4px 8px;
    font-size: 11px;
}

.door-logo-text {
    color: var(--accent-soft);
    font-size: 13px;
}

/* conținut demo ca să vezi că se dezvăluie site-ul */

.page-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}


.testimonials-title {
    text-align: left;            /* sau center dacă îl vrei centrat */
    margin-bottom: 40px;
}

.testimonial {
    max-width: 320px;
}


:root {
    --bg-main: #262626;
    --bg-section: #303030;
    --bg-light: #e5e1db;
    --accent: #c9a46b;
    --accent-soft: #d9b883;
    --text: #f5f5f5;
    --text-muted: #ffffff;
    --border: #444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-main);
    color: var(--text);
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(38, 38, 38, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.logo-box {
    border: 1px solid var(--accent);
    padding: 4px 8px;
    font-size: 11px;
}

.logo-text {
    color: var(--accent-soft);
}

.nav-links {
    display: flex;
    gap: 24px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.nav-links a {
    position: relative;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--accent-soft);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent-soft);
    transition: width 0.2s ease;
}

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

/* BURGER pentru mobile */

.burger {
    display: none;
    flex-direction: column;
    width: 22px;
    height: 18px;
    justify-content: space-between;
    cursor: pointer;
}

.burger span {
    height: 2px;
    background: #fff;
    width: 100%;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 56px 0 auto 0;
        background: #181818;
        flex-direction: column;
        padding: 16px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.25s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .burger {
        display: flex;
    }
}

/* HERO */


.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.7));
}

.hero-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
}

.hero-title-box {
    text-align: center;
    color: var(--bg-light);
}

.hero-title-box h1 {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.hero-title-box p {
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* SECTIUNI GENERALE */

section {
    padding: 20px 0;
}

.section-dark {
    background: var(--bg-main);
}

.section-panel {
    background: #2c2c2c;
}

.section-light {
    background: var(--bg-light);
    color: #222;
}

.section-title {
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 20px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 24px;
}

/* GALERIE – grid cu carduri mici, ca în a doua poză */

.gallery-panel {
    background: var(--bg-light);
    padding: 60px 0 70px;
}

.gallery-title {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #444;
}

.gallery-grid {
    background: #ded9d0;
    padding: 24px;
    max-width: 950px;
    margin: 0 auto;
}

.gallery-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.gallery-card {
    background: #4a4a4a;
    color: var(--text);
    font-size: 13px;
}

.gallery-card img {
    height: 160px;
    object-fit: cover;
}

.gallery-card-body {
    padding: 10px 14px 14px;
}

.gallery-card-title {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    margin-bottom: 2px;
    color: var(--accent-soft);
}

.gallery-card-text {
    font-size: 11px;
    color: #ddd;
}

@media (max-width: 600px) {
    .gallery-grid {
        padding: 16px;
    }
}


/* TESTIMONIALE – 01 / 02 / 03 */

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    font-size: 12px;
}

.testimonial-num {
    font-size: 42px;
    color: var(--accent-soft);
    margin-bottom: 10px;
}

.testimonial-date {
    font-size: 17px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 17px;      /* ← font corect */
    line-height: 1.7;
    color: var(--text-muted);
}

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

/* CONTACT – adresă + formular + hartă */

.contact-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
}

.contact-block {
    background: var(--bg-light);
    color: #222;
    padding: 32px;
    font-size: 13px;
}

.contact-block h3 {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
    margin-bottom: 18px;
}

.contact-block p + p {
    margin-top: 6px;
}

.contact-form {
    background: var(--bg-light);
    padding: 32px;
}

.contact-form h3 {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
    margin-bottom: 20px;
    color: #444;
}

.form-group {
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #999;
    padding: 8px 10px;
    font-size: 12px;
    outline: none;
    background: #f8f6f2;
}

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

.btn-send {
    border: 1px solid #444;
    background: #444;
    color: #f5f5f5;
    padding: 8px 22px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
}

.map-frame {
    margin-top: 22px;
    border: 0;
    width: 100%;
    height: 200px;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.footer {
    padding: 20px 0;
    background: #000000;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-box {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* Responsive – pe mobil, totul pe coloană */
@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* PARTENERI – logo-uri parteneri */

.partners-section {
    background: var(--bg-light);
    color: #222;
    padding: 60px 0 70px;
}

.partners-inner {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.partners-title {
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 10px;
}

.partners-subtitle {
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #444;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.partner-logo {
    flex: 0 0 150px;
    max-width: 170px;

    opacity: 0.7;
    transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.partner-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .partner-logo {
        flex: 0 0 90px;
    }
}


/* ===============================
LANGUAGE MODAL – IOS CENTERED
INDEPENDENT, FĂRĂ CONFLICT
=============================== */

#langModalOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.35s ease;
}

#langModalOverlay.show {
    display: flex;
    opacity: 1;
}

#langModal {
    background: rgba(40,40,40,0.95);
    backdrop-filter: blur(32px);
    width: 90%;
    max-width: 360px;
    padding: 28px 24px 32px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);

    transform: scale(0.85);
    opacity: 0;
    transition: all 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

#langModalOverlay.show #langModal {
    transform: scale(1);
    opacity: 1;
}

.langModal-title {
    text-align: center;
    margin-bottom: 22px;
    font-size: 17px;
    letter-spacing: 0.05em;
}

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

.langModal-item {
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.langModal-item:last-child {
    border-bottom: none;
}

.langModal-item:hover {
    background: rgba(255,255,255,0.08);
}

.langModal-flag {
    margin-right: 8px;
}

.langModal-check {
    opacity: 0;
    transition: 0.2s ease;
}

.langModal-item.active .langModal-check {
    opacity: 1;
}

.lang-icon {
    cursor: pointer;
    font-size: 18px;
    color: #f5f5f5;
    padding: 8px 10px;
    border-radius: 50%;
    transition: 0.25s ease;
}

.lang-icon:hover {
    background: rgba(255,255,255,0.12);
}

/* ===== GLOB LANGUAGE ICON – DEFAULT (desktop) ===== */
.lang-icon {
    cursor: pointer;
    font-size: 18px;
    color: #f5f5f5;
    padding: 8px 10px;
    border-radius: 50%;
    transition: 0.25s ease;
    margin-left: 12px; /* distanță față de meniu */
}

/* ===== MOBILE POSITIONING ===== */
@media (max-width: 768px) {

    /* RESET complet pentru icon glob */
    .lang-icon {
        position: relative !important;
        top: unset !important;
        right: unset !important;

        margin-left: auto !important; /* îl împinge la dreapta */
        margin-right: 12px !important;

        padding: 6px 8px;
        font-size: 20px;
        background: none;
    }

    /* navbar-ul aliniaza totul corect */
    .navbar-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* burger-ul rămâne ultimul la dreapta */
    .burger {
        margin-right: 10px;
    }
}



.about-title {
    color: #c9a269;
    font-size: 32px; /* +20% față de ce aveai */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-subtitle {
    font-size: 18px; /* subtitlu elegant */
    color: #e0d4c2;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.about-paragraph {
    font-size: 19px; /* +20% față de aprox. 16px */
    line-height: 1.75;
    margin-bottom: 18px;
    color: #f1f1f1;
}

.steps-title {
    color: #c9a269 !important;
    text-align: center;
    font-size: 28px;
    letter-spacing: 0.18em;
    margin-bottom: 0;   /* elimină spațiul */
}

.steps-subtitle {
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-top: 4px;     /* distanță minimă și elegantă */
    margin-bottom: 35px; /* păstrăm spațiul față de grid */
}



/* ===== OVERLAY FULL SCREEN MENIU ===== */
#mobileMenuOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 900; /* sub navbar dar peste tot */
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

#mobileMenuOverlay.show {
    display: block;
    opacity: 1;
}

/* MENIU MOBIL FULL SCREEN */
@media (max-width: 768px) {

    .nav-links {
        position: fixed;
        top: 56px;
        right: 0;
        left: 0;
        height: calc(100vh - 56px);
        background: #111;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        text-align: center;

        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links .nav-link {
        font-size: 20px;
        margin: 12px 0;
    }

    /* glob + burger pe aceeași linie */
    .lang-icon {
        position: static !important;
        margin-right: 10px;
    }

    .navbar-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}


/* ===== Centrare completă secțiune DE CE NOI pe mobil ===== */
@media (max-width: 768px) {

    /* Centrare titlu */
    .testimonials-section .section-subtitle {
        text-align: center !important;
    }

    /* Grid devine coloană + centrat */
    .testimonials {
        text-align: center !important;
        justify-items: center !important;
    }

    /* Fiecare testimonial centrat */
    .testimonial {
        text-align: center !important;
        max-width: 100%;
    }

    /* Număr + subtitlu + text centrate */
    .testimonial-num,
    .testimonial-date,
    .testimonial-text {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
}