@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700;900&display=swap');

body {
    font-family: 'Segoe UI', sans-serif;
    background-size: cover;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
    background: none;
}

body::before {
    display: none;
}

/* LUMINITE */
.light-particles {
    position: fixed;
    /* fix, să stea pe toată pagina */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* întreaga înălțime a viewport-ului */
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    /* sub conținut, deasupra fundalului */
}

.light-particles span {
    position: absolute;
    top: -10px;
    /* start deasupra vizibilului */
    display: block;
    background: radial-gradient(circle, #fff, #ffff99, #ffd700);
    border-radius: 50%;
    filter: blur(2px);
    box-shadow: 0 0 10px #fff, 0 0 20px #ffd700, 0 0 30px #ffcc33;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fall {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    25% {
        transform: translateX(-10px) translateY(25vh) scale(0.8);
        opacity: 1;
    }

    50% {
        transform: translateX(10px) translateY(50vh) scale(1.1);
        opacity: 1;
    }

    75% {
        transform: translateX(-15px) translateY(75vh) scale(1);
        opacity: 0.9;
    }

    100% {
        transform: translateX(0) translateY(100vh) scale(1.2);
        opacity: 0;
    }
}
/* Ascunde particulele pe ecrane mai mici de 768px */
@media (max-width: 768px) {
    .light-particles span:nth-child(n+31) {
        display: none;
    }
}
/* HEADER */


/* LOGO */
.logo-img {
    height: 70px !important;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
    /* opțional */
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.logo-img:hover {
    transform: scale(1.05);
    /* efect mic la hover */
}

.tiktok-btn {
    background-color: #e62e2e;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    /* strat de bază negru semi-transparent */
    backdrop-filter: blur(20px);
    /* efect blur sticlă */
    margin-bottom: 100px;

}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right .tiktok-btn {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-right: 20px;
}

.header-right .tiktok-btn:hover {
    transform: scale(1.05);
    background-color: #ff4545;
}

@media (max-width: 576px) {

    .tiktok-btn {
        padding: 2px 7px;
        font-size: 0.6rem !important;
    }

}
/* Container Imagine Intro */
.intro-image {
    width: 60% !important;
    margin: 60px auto 40px auto;
    border-radius: 35px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 500px;
    /* container mai mare pe desktop */
    border: 2px solid rgba(255, 255, 255, 0.6);
    /* 🔥 Border alb */
}

/* Imagine pe desktop */
.intro-image img {
    width: 100%;
    height: 650px;
    /* mai mare + se vede mai mult */
    object-fit: cover;
    /* cinematic */
    display: block;
}

/* Overlay subtil */
.intro-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.35));
}

/* TABLET */
@media (max-width: 992px) {
    .intro-image {
        width: 90% !important;
        min-height: 400px;
    }

    .intro-image img {
        height: 500px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .intro-image {
        width: 80% !important;
        min-height: auto;
        margin-top: 20px !important;
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.7);
        height: 253px;
                /* cu 1px mai mic decât înainte */
        /* mai subțire pe telefon */
    }

    .intro-image img {
        object-fit: contain;
        /* NU taie imaginea */
        width: 100%;
        height: auto;
        max-height: none;
    }

    .intro-image::after {
        background: none;
        /* opțional: fără overlay pe mobil */
    }
}

/* Container Hero */
.hero {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 70% !important;
    margin-top: 80px !important;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 35px;
    background: rgba(0, 0, 0, 0.582);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    align-items: stretch;
    padding: 0px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    flex-direction: row;
}

/* Imagine Hero */
.hero-image {
    width: 50%;
    border-radius: 25px;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateX(20px);
    position: relative;
    min-height: 500px;
}

.hero-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    pointer-events: none;
}

/* Conținut Hero */
.hero-content {
    width: 50%;
    color: #fff;
    font-family: 'Great Vibes', cursive;
    padding-left: 40px;
}

.hero-content h1 {
    font-family: 'Playfair Display', 'Trajan', 'Times New Roman', serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    color: white;
}

.hero-content h2 {
    font-family: 'Playfair Display', 'Trajan', 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
    text-transform: uppercase;
    color: #c21717;
}

.hero-content p {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 100;
    line-height: 1.6;
    color: white;
}

/* Butoane */
.buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.buttons a {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 6px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Stiluri butoane */
.btn-primary {
    background-color: #c21717;
    color: white;
}

.btn-primary:hover {
    background-color: #c21717;
}

.btn-secondary {
    background-color: transparent;
    color: #c21717;
    border: 2px solid #c21717;
}

.btn-secondary:hover {
    background-color: #c21717;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image,
    .hero-content {
        width: 100%;
        padding: 15px;
    }

    .hero-image {
        transform: translateX(0);
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero {
        /* Asigură că elementele sunt stivuite vertical */
        flex-direction: column;
        min-height: auto;
        padding: 0 !important;

    }
    .hero-image,
    .hero-content {
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-image {
        order: -1;
        /* O valoare negativă (sau 1) o va muta înaintea elementului cu ordinea implicită (0) */
        transform: translateX(0);
 min-height: 300px !important;  
     position: relative !important;
  }


    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .buttons {
        margin-top: 5px !important;
        /* Folosiți !important pentru a suprascrie valoarea de desktop */
    }

    .buttons a {
        font-size: 0.9rem;
        /* Font mai mic */
        padding: 5px 15px;
        /* Padding redus */
    }

    /* Dacă ați folosit clasele Bootstrap, asigurați-vă că le suprascrieți */
    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 5px 15px;
        margin-top: 1px;
    }
}


/* STATISTICA */
/* --- Secțiunea de Statistici --- */
.stats-section {
    margin: 40px auto;
    padding: 30px 25px;
    width: 60%;
    max-width: 900px !important;
    border-radius: 35px;
    text-align: center;
    /* Efect Glassmorphism */
    background: rgba(0, 0, 0, 0.582);
    /* fundal semi-transparent mai ușor */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    /* similar cu hero */
}

.stats-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 2.3rem;
    /* puțin mai mic decât 2.2rem */
    color: white;
    margin-bottom: -10px;
    /* mai puțin spațiu */
    text-transform: uppercase;
    letter-spacing: 3px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    /* mai compact */
    flex-wrap: wrap;
    /* se poate adapta pe ecrane mici */
}

.stat-item {
    flex: 1;
    padding: 15px;
    /* padding mai mic pentru compactare */
    min-width: 150px;
    /* să nu se strângă prea mult pe mobil */
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 3rem;
    /* mai mic decât 4rem */
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    /* puțin mai mic */
    color: #e62e2e;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 0.95rem;
    /* mai mic și compact */
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@media (max-width: 576px) {

    /* Ajustarea lățimii containerului (din cererea anterioară) */
    .stats-section {
        width: 60% !important;
        margin: 20px auto !important;
        padding: 20px 10px !important;
    }

    /* 1. Titlul Secțiunii */
    .stats-section h2 {
        font-size: 1.5rem !important;
        /* Redus de la 2.3rem */
        letter-spacing: 2px;
        margin-bottom: 10px !important;
    }

    /* 2. Numerele Statistice (500+, 15+, 98%) */
    .stat-number {
        font-size: 2rem !important;
        /* Redus de la 3rem */
        margin-bottom: 5px;
    }

    /* 3. Etichetele Statistice (PROIECTE ILUMINATE, etc.) */
    .stat-label {
        font-size: 0.75rem;
        /* Redus de la 0.85rem */
        margin-bottom: 10px;
    }

    /* 4. Descrierea Statisticilor */
    .stat-description {
        font-size: 0.8rem;
        /* Redus de la 0.95rem */
    }

    /* ... restul stilurilor dvs. pentru butoane și Hero ... */
}

/* --- SECȚIUNEA MAGIA (VARIANTĂ CU TEXT SUS ȘI IMAGINE JOS) --- */

.magic-section {
    display: flex;
    flex-direction: column;
    /* textul deasupra, imaginea dedesubt */
    justify-content: flex-start;
    align-items: center;
    width: 70% !important;
    margin: 40px auto;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.582);
    /* fundal negru semi-transparent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    padding: 40px 50px;
    min-height: 400px;
    position: relative;
}


/* --- TEXT SUS (mutat mai aproape de marginea de sus) --- */
.magic-content {
    width: 100%;
    text-align: left;
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    z-index: 2;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: -10px;
    /* urcă textul și mai sus */
}

.magic-content h2 {
    font-family: 'Playfair Display', 'Trajan', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    text-transform: uppercase;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

.magic-content p {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* --- IMAGINEA JOS --- */
.magic-image {
    width: 80%;
    height: 400px !important;
    border-radius: 35px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)), url('tableta2.jpeg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    transform: translateY(0px);
}

@media (max-width: 576px) {

    /* Ajustarea lățimii containerului pe mobil (dacă este necesar) */
    .magic-section {
        width: 95%;
        /* Ocupă aproape tot ecranul */
        padding: 20px 15px;
        /* Padding redus */
    }

    /* Mărim lățimea conținutului la 100% și reducem padding-ul lateral */
    .magic-content {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    /* 1. Titlul (H2) */
    .magic-content h2 {
        font-size: 1.5rem;
        /* Redus de la 2rem */
        margin-bottom: 10px;
    }

    /* 2. Paragrafele (P) */
    .magic-content p {
        font-size: 0.9rem;
        /* Redus de la 1rem */
        line-height: 1.4;
    }

    /* 3. Imaginea (Opțional: o facem mai scurtă pe mobil) */
    .magic-image {
        height: 200px;
        /* Înălțime mai mică pentru mobil */
    }
}

/*LUCRUL NOSTRU*/
.process-section {
    margin: 40px auto;
    padding: 5px 40px;
    border-radius: 35px;
    background: rgba(0, 0, 0, 0.582);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
    max-width: 1000px;
}

.process-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.process-intro {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px !important;
}

.timeline {
    position: relative;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 80px;
    height: 80px;
    /* înălțimea controlată — linia și cifrele stau centrate aici */
}

.timeline-axis {
    position: absolute;
    top: 50%;
    /* mutăm linia exact pe mijlocul containerului */
    left: 5%;
    width: 90%;
    height: 3px;
    background-color: #8e2625;
    transform: translateY(-50%);
    z-index: 2;
}

.axis-dot {
    position: absolute;
    top: 50%;
    /* punctele pe mijloc */
    transform: translate(-50%, -50%);
    /* centru perfect */
    width: 40px;
    height: 40px;
    background-color: #3d120e;
    border: 3px solid #8e2625;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 5;
    box-shadow: 0 0 10px rgba(230, 46, 46, 0.8);
}


/* Poziționare puncte pe axă */
.dot-1 {
    left: 10%;
}

.dot-2 {
    left: 35%;
}

.dot-3 {
    left: 60%;
}

.dot-4 {
    left: 85%;
}

.timeline-content {
    margin-top: -30px;
    /* urcă textul mai aproape de axă */
}

/* Text blocks */
.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.timeline-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

/* ✅ Responsive: pe mobil, linia dispare și blocurile devin verticale */
@media (max-width: 768px) {
    .timeline {
        display: none;
    }

    /* 1. CONTAINERUL EXTERIOR (.process-section) */
    .process-section {
        /* Păstrează lățimea îngustă și anulează limitele mari de desktop */
        width: 80%;
        max-width: 80%;
        /* 🔥 Reducem MARGINILE EXTERIOARE */
        margin: 60px auto 30px auto !important;
        /* 🔥 Reducem PADDING-UL INTERIOR */
        padding: 10px 10px 10px 30px !important;
    }

    /* 2. TITLUL ȘI INTRODUCEREA */
    .process-section h2 {
        font-size: 1.4rem;
        margin-bottom: 5px;

    }

    .process-intro {
        font-size: 0.9rem;
        margin-bottom: 5px;
        /* Spațiu mic după introducere */
    }

    /* 3. BLOCURILE DE CONȚINUT (.timeline-content) */

    .row.g-4 {
        /* Zero spațiu vertical între rândurile de pe mobil */
        --bs-gutter-y: 0 !important;
    }

    /* Spațiu între blocurile de conținut (între col-12) */
    .row>.col-12 {
        padding-top: 0px !important;
        /* Foarte puțin spațiu între elemente */
        padding-bottom: 5px !important;
    }

    .timeline-content {
        margin-top: -20px;
        padding: 5px 10px;
        /* Padding minimal în jurul textului din interiorul blocului */
    }

    .timeline-content h3 {
        font-size: 1rem;
        margin-bottom: 0px !important;
        /* Spațiu aproape inexistent după H3 */
    }

    .timeline-content p {
        font-size: 0.85rem;
        line-height: 1.2;
        margin-bottom: 0;
    }
}



/* DECOR PERFEECT */

/* ===== SECTIUNEA DECOR ===== */
.decor-section {
    width: 70%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.582);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}



/* CONȚINUT */
.decor-section {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    color: white;
}

.decor-content h2 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 200;
}

.decor-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.decor-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: invert(1) brightness(1.3);
}

.decor-item h3 {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.decor-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.decor-img {
    max-width: 100%;
    width: 90%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

.decor-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

/* --- ANIMAȚIE FADE-IN --- */
[data-aos] {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ===== MODIFICĂRI PENTRU DESKTOP LARG ===== */
@media (min-width: 992px) {
    .decor-image {
        min-height: 400px;
        /* păstrează spațiu minim */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .decor-image img {
        width: 80%;
        /* lățimea imaginii pe desktop */
        height: auto;
    }



}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .decor-section {
        flex-direction: column;
        width: 90%;
    }

    .decor-image {
        width: 100%;
        min-height: 300px;
        border-radius: 25px 25px 0 0;
    }

    .decor-content {
        width: 100%;
        padding: 25px 20px;
        text-align: center;
    }

    .decor-section h2 {
        font-size: 1.6rem;
        margin: 10px 0 40px 0;
        text-align: center;
    }

    .decor-content>p {
        top: 0;
        font-size: 0.95rem;
        margin-bottom: 10px;
        text-align: center;
        margin-top: -30px;
        text-align: left;
    }

    .decor-list {
        align-items: center;
        margin-top: 10px;
    }

    .decor-icon {
        display: none;
    }

    /* Asigură că textul rămâne centrat */
    .decor-inner {
        flex-direction: column;
        align-items: center;
        /* sau flex-start dacă vrei textul la stânga */
        text-align: center;
    }

    .decor-text h3,
    .decor-text p {
        text-align: left;
    }
}


/* CONCEPT */

/* Containerul extern - Glassmorphism întunecat */
/* ===== CONCEPTS SECTION ===== */
.concepts-section {
    background: rgba(0, 0, 0, 0.582);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    width: 85%;
    max-width: 1200px;
    padding: 40px 20px;
}

.concepts-container {
    width: 100%;
    margin: 0 auto;
}


.concepts-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    /* nu bold */
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.concepts-intro {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    width: 100%;
    margin: 0 auto;
}

/* ===== GRID / FLEX ===== */
.concepts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: -100px;
    /* aici controlezi spațiul între carduri */
    justify-content: space-between;
}

.concept-item {
    flex: 1 1 calc(25% - 15px);
    /* 4 pe rând pe desktop */
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
    /* fundal vizibil */
    border-radius: 35px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: scale(0.95);
    min-height: auto;
}

.concept-item:hover {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 25px;
}

.concept-image {
    width: 90%;
    aspect-ratio: 1 / 0.8;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
    max-height: 180px;
}

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

.concept-item h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.15rem;
    color: white;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.concept-item p {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    min-height: 50px;
}

/* Buton */
.concept-button-container {
    text-align: center;
    margin-top: 20px;
}

.btn-concepts {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 30px;
    background-color: #c21717;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-concepts:hover {
    background-color: #ff4545;
}

[data-aos].aos-animate .concept-item {
    opacity: 1 !important;
    transform: scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .concepts-grid {
        gap: 15px;
        justify-content: center;
    }

    .concept-item {
        flex: 1 1 calc(50% - 15px);
        /* 2 pe rând pe tablet */
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .concepts-grid {
        flex-direction: column;
        gap: 20px;
    }

    .concept-item {
        flex: 1 1 100%;
        /* 1 pe rând pe mobil */
        min-height: auto;
    }

    .concepts-section h2 {
        font-size: 1.5rem;
    }
}


/* FAȚADA CASEI TALE */
.facade-section {
    background: rgba(0, 0, 0, 0.582);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 60px 15px;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.facade-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.facade-intro,
.facade-footer {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Galerie imagini - grid fix */
.facade-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    /* păstrează proporția */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .facade-section {
        padding: 25px 15px;
        max-width: 600px;
    }

    .facade-section h2 {
        font-size: 1.6rem;
    }

    .facade-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .facade-section {
        max-width: 95%;
    }

    .facade-section h2 {
        font-size: 1.4rem;
    }

    .facade-intro,
    .facade-footer {
        font-size: 0.9rem;
    }

    .facade-gallery {
        grid-template-columns: 1fr;
        /* 1 pe rând pe mobil */
    }
}


/* --- Stiluri pentru Secțiunea Detalii Grădină (DETALIILE CARE FAC DIFERENȚA) --- */

.details-section {
    /* Structură similară cu hero, dar cu imaginea pe stânga */
    display: flex;
    flex-direction: row;
    /* Aranjare normală: imagine stânga, conținut dreapta */
    gap: 0;
    padding: 0px 0 50px 0;
    margin: 50px auto 100px auto;
    width: 80%;
    max-width: 1300px;
    border-radius: 35px;
    overflow: hidden;
    /* Efectul de Glassmorphism ÎNTUNECAT */
    background: rgba(0, 0, 0, 0.582);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.details-image {
    /* Coloana Imaginii Mari (Stânga) */
    width: 40%;
    /* Proporție mai mică pentru imagine decât la hero */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    /* Padding interior pentru a da spațiu imaginii */
    box-sizing: border-box;
    border-radius: 35px;
}

.details-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.details-content {
    /* Coloana de text și imagini mici (Dreapta) */
    width: 60%;
    padding: 20px 50px 50px 50px;
    box-sizing: border-box;
    text-align: left;
}

.details-section h2 {
    /* Titlul mare */
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-info h3 {
    /* Subtitlul "COPĂCEII CU GHIRLANDĂ" */
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #e62e2e;
    /* Roșu pentru accent */
    margin-bottom: 15px;
}

.product-info p {
    /* Paragrafele de descriere */
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== IMAGINI CU COPĂCEII ===== */
.color-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.color-options img {
    width: auto;
    /* aceeași lățime pentru toate */
    height: 130px;
    /* aceeași înălțime pentru toate */
    object-fit: contain;
    /* păstrează proporțiile */
    border-radius: 35px;
    /* colțuri rotunjite */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.color-options img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* TABLETĂ */
@media (max-width: 768px) {
    .details-section {
        width: 90%;
        padding: 20px;
        margin: 40px auto;
    }

    .details-section h2 {
        font-size: 1.6rem;
    }

    .product-info h3 {
        font-size: 1.3rem;
    }

    .product-info p {
        font-size: 1rem;
    }

    .color-options {
        border-radius: 25px;
    }
}

/* TELEFOANE */
@media (max-width: 480px) {
    .details-section {
        width: 80% !important;
        padding: 15px;
        margin: 30px auto;
    }

    .details-section h2 {
        font-size: 1.3rem;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .product-info p {
        font-size: 0.9rem;
    }

    .color-options img {
        border-radius: 25px !important;
    }
}

/* --- Stiluri pentru Secțiunea Finală CTA --- */

.cta-section {
    margin: 40px auto 80px auto;
    /* mai puțin spațiu de sus/jos */
    padding: 10px 50px;
    /* padding mai mic pentru a urca textul */
    width: 85%;
    /* container mai îngust */
    max-width: 900px;
    /* limită mai mică */
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.582);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    text-align: left;
    /* aliniere text la stânga */
}

/* Titlul principal */
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    /* nu mai e bold */
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    /* mai aproape de textul de jos */
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Paragraful de text */
.cta-section p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Caseta garanție */
.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
    padding: 15px 20px;
    max-width: 800px;
    background-color: #5d1414;
    border-radius: 20px;
    text-align: left;
}

.guarantee-box p {
    margin: 0;
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
}

/* Buton CTA */
.btn-cta {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 35px;
    border-radius: 30px;
    background-color: #e62e2e;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 46, 46, 0.4);
    margin-bottom: 20px;
}

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

@media (max-width: 480px) {
    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* ==== FOOTER – versiune compactă și responsive ==== */

.main-footer {
    width: 100%;
    margin: 40px 0 0 0;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    text-align: center;
    box-sizing: border-box;
}

/* Container */
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Titlu */
.main-footer h1 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
}

/* Text intro */
.footer-intro {
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.45;
    opacity: 0.85;
}

/* Linie */
.contact-divider {
    width: 80%;
    max-width: 700px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto 30px auto;
}

/* Contact Icons Container */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Fiecare item */
.contact-item {
    width: 200px;
    text-align: center;
}

/* Icon */
.contact-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
    filter: invert(1) brightness(1.4);
}

/* Subtitluri */
.contact-item h4 {
    font-size: 0.95rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

/* Text mic */
.contact-item p {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* Buttons */
.footer-btn {
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 18px;
    background: #e62e2e;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #ff4949;
}

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

    .main-footer {
        padding: 35px 15px;
    }

    .main-footer h1 {
        font-size: 1.3rem;
    }

    .footer-intro {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .contact-item {
        width: 100%;
    }

    .contact-item h4 {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .footer-btn {
        font-size: 0.8rem;
        padding: 7px 16px;
    }
}

/* ==== MOBILE MIC (sub 480px) ==== */
@media (max-width: 480px) {

    .main-footer {
        padding: 30px 12px;
    }

    .main-footer h1 {
        font-size: 1.15rem;
    }

    .footer-intro {
        font-size: 0.8rem;
        max-width: 90%;
    }

    .contact-icon {
        width: 26px;
        height: 26px;
    }

    .footer-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}