/* general */
* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Geom', sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #000000; 
    background-image: url('/images/subtle-noise.png');
    background-attachment: fixed;
    color: #ffffff; 
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Geom', sans-serif;
    font-weight: 700;
}

/* video */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 50%, #000000 95%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}


.hero-content h1 {
    font-size: 4.5rem;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 2.5rem;
    color: white;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* galerie scroll */
.scroll-gallery {
    overflow: hidden;
    width: 100%;
}

.scroll-gallery-section {
    padding: 60px 0;
    background-color: #000000;
    overflow: hidden;
}

.scroll-gallery-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scroll-gallery-row {
    display: flex;
    width: fit-content;
    gap: 20px;
    align-items: center;
    will-change: transform;
}

.scroll-gallery-row:first-child {
    padding-left: 0;
}

.scroll-gallery-row:last-child {
    padding-left: 0;
}

.scroll-gallery-item {
    flex-shrink: 0;
    width: 500px;
    height: 350px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 25px rgba(56, 56, 56, 0.8); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.scroll-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Responsive - consolidat la final */

/* bara de navigatie */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    z-index: 9999;
    transition: all 0.4s ease, transform 0.3s ease;
}

.main-nav.secondary-nav {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.main-nav.secondary-nav:hover {
    background-color: rgba(0, 0, 0, 0.95);
}

.main-nav.scrolled {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.main-nav.scrolled:hover {
    padding: 1.5rem 2rem;
    background-color: rgba(0, 0, 0, 0.95);
}

.main-nav.hidden {
    transform: translateY(-100%);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.main-nav.scrolled .nav-logo img {
    height: 40px;
}

.main-nav.scrolled:hover .nav-logo img {
    height: 60px;
}

/* Container pentru meniu si social media */
.nav-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: center;
}

.main-nav ul {
    margin: 0; 
    padding: 0; 
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    margin-left: 2rem;
}

.main-nav ul li {
    display: inline-block; 
    margin: 0;
    line-height: 1;
}

.main-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
    display: inline-block; 
    white-space: nowrap; 
}

/* Înlocuiește secțiunea .main-nav ul li a:hover existentă */
.main-nav ul li a:hover {
    color: white; /* Menținem culoarea albă a textului */
    text-decoration: underline; /* Adăugăm sublinierea */
    text-underline-offset: 5px; /* Opțional: adaugă puțin spațiu între text și linie pentru un aspect mai curat */
}

/* sectiunea de continut */
.content-section {
    padding: 60px 0;
}

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

.content-section h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.content-section.dark-bg {
    background: transparent;
}

/* video */
.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
}



/* galerie imagini */
.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    width: 450px;
    max-width: 100%;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}



/* footer */
/* ===== FOOTER ===== */
.site-footer {
    background-color: #0a0a0a;
    padding: 2rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-brand-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: inline-block;
    width: fit-content;
    flex-shrink: 0;
}

.footer-logo img {
    height: 55px;
    width: auto;
}

.footer-tags {
    color: #888;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E0E0E0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: #0a0a0a;
}

.footer-copyright {
    color: #666;
    font-size: 0.78rem;
    margin: 0;
}

.footer-column h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-style: normal;
    font-family: 'Geom', sans-serif;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-column ul li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-column ul li svg {
    flex-shrink: 0;
    color: #E0E0E0;
}

.footer-column ul li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

/* pagina oferte */
.page-content-wrapper {
    min-height: 100vh;
    padding: 120px 20px 50px;
    background: transparent;
    color: #333333;
    overflow-x: hidden;
}

.page-title {
    text-align: center;
    margin-bottom: 60px;
    color: rgb(255, 255, 255);
    color: #ffffff;
}

.page-title h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-title p {
    font-size: 1.2rem;
    color: #ffffff;
}


/* beneficii */
/* Layout oferte - beneficii + formular side by side */
.oferte-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.benefits-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-card {
    background: linear-gradient(135deg, #b0b0b0 0%, #E0E0E0 100%);
    border-radius: 15px;
    padding: 20px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.benefit-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon i {
    color: black;
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.benefit-text {
    text-align: left;
}

.benefit-card h3 {
    color: rgb(0, 0, 0);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-card p {
    color: #000000;
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 500;
}

/* FORMULAR */
.form-section {
    margin: 0;
    padding: 40px;
    background: #000000;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #E0E0E0;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}

.form-container h2 {
    color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    color: rgb(255, 255, 255);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(42, 42, 42, 0.8);
    border: 2px solid #444;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666;
    background-color: rgba(42, 42, 42, 1);
    box-shadow: none;
    transform: translateY(-2px);
}

/* Elimină fundalul alb de la autocomplete */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(42, 42, 42, 1) inset !important;
    -webkit-text-fill-color: #ffffff !important;
    border-color: #666;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group select option {
    background: #1a1a1a;
    color: rgb(255, 255, 255);
    padding: 10px;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #b0b0b0 0%, #E0E0E0 100%);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #b0b0b0 0%, #E0E0E0 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

#message {
    text-align: center;
    font-weight: 700;
    margin-top: 25px;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: 10px;
}

/* HEADER PAGINI SECUNDARE */
.secondary-page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}


/* pagina echipa */
.band-intro {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 1.5rem 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.intro-content p:first-child {
    margin-top: 0;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
    margin-bottom: 1.5rem;
    text-align: left;
}

.intro-content p {
    font-size: 1.2rem;
    color: rgb(255, 255, 255);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
}

/* Sectiune membri echipa */
.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 2rem;
}

.team-section h2 {
    font-size: 3rem;
    color: black;
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.team-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
}

/* Soliștii - mai aerisit */
.team-row-soloists {
    gap: 3rem;
}

/* Instrumentiștii - mai compact */
.team-row-band {
    gap: 1rem;
}

.team-member {
    width: 280px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.member-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    margin: 12px;
    width: calc(100% - 24px);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.05);
    transform-origin: center 20%;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.member-info h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.member-info .role {
    font-size: 1rem;
    color: #E0E0E0;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-info .description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Call to Action */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    margin: 3rem auto;
    max-width: 800px;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #b0b0b0 0%, #E0E0E0 100%);
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .oferte-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-section {
        order: -1;
    }

    .benefits-section {
        order: 1;
    }
}

@media (max-width: 968px) {
    .main-nav {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0;
    }
    
    .nav-logo {
        order: 0;
        width: auto;
        justify-content: flex-start;
        margin-right: auto;
    }
    
    .main-nav ul {
        order: 1;
        margin-left: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
}



/* Sectiunea Despre Noi */
.about-section {
    padding: 60px 20px;
    background-color: transparent;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.about-intro {
    max-width: 980px;
    margin: 0 auto 35px;
}

.about-intro h2 {
    font-size: 3rem;
    margin: 0 0 1rem;
    text-transform: none;
    letter-spacing: normal;
}

.about-intro p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.7;
}

.about-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.about-info-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 22px 24px;
    text-align: left;
}

.about-info-card h4 {
    margin: 0 0 0.6rem;
    font-size: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-info-card p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.55;
}

.about-cta {
    text-align: center;
    margin-top: 32px;
}

.media-cta {
    text-align: center;
    margin-top: 40px;
}

.youtube-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Stil pentru butonul din interiorul coloanei */
.button-wrapper {
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 1rem;
    padding: 0.5rem;
}

/* Sectiunea de recenzii */
.reviews-section {
    padding: 60px 0;
    background-color: #000000;
}

.reviews-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.reviews-container h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.review-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-stars {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #cccccc;
    font-style: italic;
    margin-bottom: 15px;
    flex: 1;
}

.review-author {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 600;
}

/* Responsive recenzii */
@media (max-width: 968px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .reviews-container h2 {
        font-size: 2rem;
    }

    .review-image {
        height: 200px;
    }

    .review-content {
        padding: 15px 20px;
    }

    .review-stars {
        margin-bottom: 8px;
        font-size: 1.1rem;
    }

    .review-text {
        margin-bottom: 10px;
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Buton fix social media (FAB) */
.fab-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.fab-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #b0b0b0 0%, #E0E0E0 100%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    order: 2;
}

.fab-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

.fab-toggle svg {
    width: 24px;
    height: 24px;
    fill: black;
}

.fab-icon-close {
    display: none;
}

.fab-social.active .fab-icon-open {
    display: none;
}

.fab-social.active .fab-icon-close {
    display: block;
}

.fab-social.active .fab-toggle {
    transform: rotate(90deg);
}

.fab-social.active .fab-toggle:hover {
    transform: rotate(90deg) scale(1.1);
}

.fab-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    order: 1;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fab-social.active .fab-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.fab-option {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.fab-option svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.fab-option:hover {
    transform: scale(1.15);
}

.fab-youtube {
    background: #FF0000;
}

.fab-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.fab-facebook {
    background: #1877F2;
}

.fab-tiktok {
    background: #000000;
    border: 1px solid #333;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none; /* Ascuns pe desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1300;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animatie X cand e activ */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Overlay meniu mobil */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    pointer-events: none;
}

.mobile-overlay.active {
    display: block;
}

/* --- SECȚIUNE SPLIT: PAȘI + CONTACT --- */
.split-section {
    padding: 60px 0;
    background-color: #000000;
}

.split-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.split-left .section-header {
    margin-bottom: 2rem;
}

.split-left .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.split-left .subtitle {
    color: #aaa;
    font-size: 1rem;
}

.steps-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.split-right-col .section-header {
    margin-bottom: 2rem;
}

.split-right-col .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.split-right-col .subtitle {
    color: #aaa;
    font-size: 1rem;
}

.contact-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-item svg {
    flex-shrink: 0;
    color: #ccc;
}

.contact-info-item .contact-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-info-item a,
.contact-info-item span {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-panel .cta-button {
    text-align: center;
    margin-top: 0.5rem;
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* --- SECȚIUNE PAȘI COLABORARE (Versiune nouă cu bordură fixă) --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 3rem;
    padding: 0 1rem;
}

.step-card {
    background: rgba(0, 0, 0, 0.6);
    /* BORDURĂ PERMANENTĂ de culoarea formularului */
    border: 2px solid #E0E0E0; 
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}


/* Numărul mare de pe fundal - VIZIBIL PERMANENT */
.step-number {
    font-size: 5rem;
    font-weight: 900;
    /* Culoare albastră cu 15% opacitate pentru a se vedea clar mereu */
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: 0;
}

/* Textul propriu-zis deasupra numărului */
.step-card h3 {
    font-size: 1.3rem;
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* Adaptare pentru telefoane (Mobile) */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .step-card {
        padding: 2rem 1.5rem;
    }
    .split-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .steps-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .contact-panel {
        padding: 2rem 1.5rem;
    }
    .split-right-col .section-header {
        text-align: center;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    *:not(.scroll-gallery-row):not(.scroll-gallery-item) {
        max-width: 100vw;
    }

    img:not(.scroll-gallery-item img) {
        max-width: 100%;
        height: auto;
    }

    /* Hamburger menu */
    .hamburger {
        display: flex; /* Afișat pe mobil */
        align-items: center;
        margin-left: auto;
        margin-right: 0.5rem;
        width: 40px;
        height: 40px;
    }

    .main-nav {
        padding: 0.75rem 0.5rem;
        height: 56px;
        display: flex;
        align-items: center;
        width: 100%;
    }

    /* Ascunde meniul desktop pe mobil */
    .main-nav > ul {
        display: none;
    }

    .main-nav.scrolled {
        padding: 0.75rem 0.5rem;
        background-color: rgba(0, 0, 0, 0.95);
    }

    .main-nav.scrolled:hover {
        padding: 0.75rem 0.5rem;
    }

    .main-nav.secondary-nav {
        position: fixed;
    }

    .main-nav.hidden {
        transform: none;
    }

    /* Meniul hamburger deschis */
    .main-nav ul.open {
        display: flex !important;
        position: fixed;
        top: 56px;
        right: 0;
        width: 75vw;
        max-width: 280px;
        height: calc(100vh - 56px);
        background: #000000;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        margin: 0;
        padding: 0;
        z-index: 9999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .main-nav ul li {
        display: block;
        width: 100%;
        text-align: center;
    }

    .main-nav ul.open li a {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
        font-family: 'Geom', sans-serif;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: 2px;
        border-bottom: none;
        color: #ffffff !important;
        opacity: 1 !important;
        text-decoration: none;
        background: none;
        text-shadow: none;
    }

    .main-nav ul.open li a:hover,
    .main-nav ul.open li a:focus,
    .main-nav ul.open li a:active,
    .main-nav ul.open li a.active {
        background: none;
        color: #ffffff;
        font-weight: 900;
        text-decoration: none;
    }

    .nav-content {
        display: contents;
    }

    .nav-logo img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .nav-logo {
        width: 40px;
        height: 40px;
    }

    .main-nav.scrolled .nav-logo img {
        height: 35px;
    }

    .main-nav.scrolled:hover .nav-logo img {
        height: 35px;
    }

    /* Scroll gallery */
    .scroll-gallery {
        overflow: hidden;
        width: 100%;
    }

    .scroll-gallery-row {
        max-width: none !important;
        gap: 15px;
    }

    .scroll-gallery-item {
        width: 85vw;
        max-width: none;
        height: 220px;
    }

    .scroll-gallery-item img {
        max-width: none;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Video grid */
    .videos-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand-top {
        justify-content: center;
    }

    .footer-logo img {
        height: 40px !important;
        width: auto !important;
    }

    .footer-copyright {
        text-align: center;
        padding: 0 10px;
        word-break: break-word;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column ul {
        align-items: center;
    }

    .footer-column ul li {
        justify-content: center;
    }

    /* Team member - fit screen on mobile */
    .team-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .team-member {
        width: calc(100% - 2rem);
        max-width: 350px;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .team-section h2 {
        font-size: 2rem;
    }

    /* Benefits section */
    .oferte-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 10px;
        overflow: hidden;
    }

    .form-section {
        order: -1;
        padding: 20px 15px;
        border-radius: 15px;
        box-sizing: border-box;
        max-width: 100%;
    }

    .form-container h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }

    .benefits-section {
        order: 1;
    }

    .benefit-card {
        padding: 16px 20px;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    .page-title h1 {
        font-size: 2rem;
    }

    /* Image gallery */
    .image-gallery {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .gallery-item {
        width: 100%;
        max-width: 100%;
    }

    .gallery-item img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    /* FAB Social */
    .fab-social {
        bottom: 20px;
        right: 20px;
        transform: scale(0.85);
    }

    .fab-toggle {
        width: 48px;
        height: 48px;
    }

    .fab-option {
        width: 44px;
        height: 44px;
    }

    .fab-toggle svg {
        width: 20px;
        height: 20px;
    }

    .fab-option svg {
        width: 18px;
        height: 18px;
    }

    /* Hero content */
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .content-section h2 {
        font-size: 2.5rem;
    }

    /* Content sections padding */
    .content-section {
        padding: 40px 20px;
    }

    .about-section {
        padding: 40px 20px;
    }

    .reviews-section {
        padding: 40px 0;
    }

    .split-section {
        padding: 40px 0;
    }

    .scroll-gallery-section {
        padding: 40px 0;
    }

    .about-container {
        max-width: 100%;
    }

    .about-intro {
        margin-bottom: 24px;
    }

    .about-intro h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-intro p {
        font-size: 1rem;
    }

    .about-benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-info-card h4 {
        font-size: 1.2rem;
    }

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