@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

html {
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    background-color: #1E0F2F;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

body {
    background-color: #1E0F2F;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

/* header */

header {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
}

/* Desktop */
@media (min-width: 1025px) {
    header {
        padding-top: 1vh;
        height: 110px;
    }

    .logo {
        justify-self: center;
    }

    .logo a {
        display: block;
        line-height: 0;
    }

    .logo img {
        height: 110px;
    }

    .navbar {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .nav-links {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5vw;
    }

    .nav-links a {
        text-decoration: none;
        color: #ffffff;
        line-height: 1.375em;
        padding: 0 15px;
    }

    .nav-links a.active {
        color: #FF8400;
        border-bottom: 3px solid #FF8400;
        padding-bottom: 15px;
    }

    .nav-links a:hover {
        color: #FF8400;
        border-bottom: 3px solid #FF8400;
        padding-bottom: 15px;
    }

    .phone-button {
        justify-self: center;
        background-color: #222222;
        padding: 15px 12px 15px 12px;
        border-radius: 60px;
    }

    .phone-button a {
        color: #FF8400;
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .phone-button:hover {
        transform: scale(1.1);
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .phone-button svg {
        font-size: 21px;
        padding-right: 5px;
    }

    .ham-menu {
        display: none;
    }
}

/* Tablet/Laptop */
@media (min-width: 769px) and (max-width: 1024px) {
    header {
        padding-top: 1vh;
        height: 110px;
    }

    .logo {
        justify-self: center;
    }

    .logo a {
        display: block;
        line-height: 0;
    }

    .logo img {
        height: 100px;
    }

    .navbar {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .nav-links {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1vw;
    }

    .nav-links a {
        font-size: 14px;
        text-decoration: none;
        color: #ffffff;
        line-height: 22px;
        padding: 0 10px;
    }

    .nav-links a.active {
        color: #FF8400;
        border-bottom: 2px solid #FF8400;
        padding-bottom: 15px;
    }

    .phone-button {
        justify-self: center;
        background-color: #222222;
        padding: 15px 12px 15px 12px;
        border-radius: 60px;
    }

    .phone-button a {
        font-size: 14px;
        color: #FF8400;
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .phone-button svg {
        font-size: 21px;
        padding-right: 5px;
    }

    .ham-menu {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    header {
        height: 100px;
        padding: 10px 0;
    }

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

    .logo img {
        height: 100px;
        padding-left: 5vw;
    }

    .nav-links {
        display: none;
    }

    .phone-button {
        display: none;
    }

    .ham-menu {
        padding-right: 11.5vw;
        display: flex;
        flex-direction: column;
        gap: 7.5px;
    }

    .ham-menu span {
        width: 50px;
        height: 3px;
        background-color: #FF8400;
        border-radius: 2px;
        transition: 0.3s;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        position: absolute;
        gap: 10px;
        top: 100px;
        left: 0;
        width: 100%;
        padding: 15px 5vw 80px 5vw;
        list-style: none;
        margin: 0;
        background-color: #1E0F2F;
        text-align: left;
    }

    .nav-links.active a.active {
        color: #FF8400;
        padding-left: 0;
    }

    .nav-links.active a {
        color: #ffffff;
        text-decoration: none;
        padding: 15px;
        padding-left: 0;
        display: block;
        min-width: 140px;
    }

    .nav-links.active a::before {
        content: '';
        display: inline-block;
        width: 12px;
        height: 2px;
        background-color: #FF8400;
        margin-right: 15px;
        vertical-align: middle;
    }

    .ham-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .ham-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    header:has(.ham-menu.active) {
        background-color: #1E0F2F;
        opacity: 95%;

    }

    .nav-links.active::after {
        content: '';
        display: block;
        width: auto;
        align-self: stretch;
        height: 1px;
        background-color: #FF8400;
        margin: 20px -5vw;
    }

    .phone-button.mobile-active {
        display: block;
        background-color: #222222;
        padding: 15px 12px;
        border-radius: 60px;
        position: absolute;
        top: 450px;
        left: auto;
        right: 5vw;
        width: fit-content;
    }

    .phone-button.mobile-active a {
        color: #FF8400;
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .phone-button.mobile-active svg {
        font-size: 21px;
        padding-right: 5px;
    }

}

html {
    scroll-behavior: smooth;
}

/* Butoane rapide */
.whatsapp-button {
    position: fixed;
    bottom: 4vw;
    right: 4vw;
    z-index: 1000;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-button a:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.back-to-top {
    position: fixed;
    bottom: 4vw;
    left: 4vw;
    z-index: 1000;
}

.back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #FF8400;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top a:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Home Page */

/* Section 1 */

.first-section {
    width: 100vw;
    height: 100vh;
    background-image: url('../img/dj_setup.webp');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.main-title {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Dosis', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 68px;
    color: #FF8400;
    text-align: center;
    margin: 0;
    -webkit-text-stroke: 2.5px white;
}

@media (min-width: 1440px) {
    .main-title {
        font-size: 108px;
        line-height: 120px;
        -webkit-text-stroke: 4.5px white;
    }

    .main-title .main-title-br {
        display: none;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .main-title {
        font-size: 88px;
        line-height: 100px;
        -webkit-text-stroke: 4px white;
    }

    .main-title .main-title-br {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .main-title {
        font-size: 68px;
        -webkit-text-stroke: 3px white;
    }

    .first-section {
        background-attachment: scroll;
    }
}

/* Section 2 */

.despre-noi-section {
    padding: 50px 5vw;
    background-image: url('../img/despre_noi_bckg.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.despre-noi-section>* {
    position: relative;
    z-index: 2;
}

.title-separator {
    width: 40vw;
    height: 2px;
    background-color: #FF8400;
    margin: 0 auto;
    flex-shrink: 0;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop */
@media (min-width: 1025px) {
    .despre-noi-section {
        height: 60vh;
    }

    .section-title {
        font-family: 'Dosis', sans-serif;
        font-size: 36px;
        color: white;
        text-align: center;
        margin: 0 0 15px 0;
        flex-shrink: 0;
        -webkit-text-stroke: 1px #FF8400;
    }

    .despre-noi-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
        flex: 1;
    }

    .image-container {
        max-height: 70%;
        overflow: hidden;
    }

    .despre-noi-subtitle {
        font-family: 'Dosis', sans-serif;
        font-size: 24px;
        color: #FF8400;
        margin: 0 0 15px 0;
    }

    .despre-noi-description p {
        font-family: 'Lato', sans-serif;
        font-size: 14px;
        line-height: 1.5;
        color: white;
        margin: 0 0 10px 0;
    }
}

/* Tablet/Laptop */
@media (min-width: 769px) and (max-width: 1024px) {
    .despre-noi-section {
        background-attachment: scroll;
    }

    .section-title {
        font-family: 'Dosis', sans-serif;
        font-size: 30px;
        color: white;
        text-align: center;
        margin: 0 0 15px 0;
        flex-shrink: 0;
        -webkit-text-stroke: 1px #FF8400;
    }

    .despre-noi-container {
        padding-top: 3vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
        flex: 1;
    }

    .image-container {
        overflow: hidden;
    }

    .despre-noi-subtitle {
        font-family: 'Dosis', sans-serif;
        font-size: 20px;
        color: #FF8400;
        margin: 0 0 15px 0;
    }

    .despre-noi-description p {
        font-family: 'Lato', sans-serif;
        font-size: 12px;
        line-height: 1.5;
        color: white;
        margin: 0 0 10px 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .despre-noi-section {
        background-attachment: scroll;
    }

    .section-title {
        font-family: 'Dosis', sans-serif;
        font-size: 40px;
        color: white;
        text-align: center;
        margin: 0 0 15px 0;
        flex-shrink: 0;
        -webkit-text-stroke: 1px #FF8400;
    }

    .despre-noi-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        flex: 1;
    }

    .image-container {
        padding-top: 5vh;
        overflow: hidden;
    }

    .despre-noi-subtitle {
        font-family: 'Dosis', sans-serif;
        font-size: 20px;
        color: #FF8400;
        margin: 0 0 15px 0;
    }

    .despre-noi-description p {
        font-family: 'Lato', sans-serif;
        font-size: 12px;
        line-height: 1.5;
        color: white;
        margin: 0 0 10px 0;
    }
}

/* Section 3 */
.servicii-section {
    padding: 50px 5vw;
    background-color: #1E0F2F;
    display: flex;
    flex-direction: column;
}

.servicii-container {
    align-items: stretch;
    padding-top: 5vh;
}

.serviciu-card {
    text-align: center;
}

.serviciu-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    padding-bottom: 3vh;
}

.serviciu-title {
    padding-bottom: 1.5vh;
    font-family: 'Dosis', sans-serif;
    color: #FF8400;
    margin: 15px 0 10px 0;
}

.serviciu-description {
    font-family: 'Lato', sans-serif;
    color: white;
    text-align: justify;
    margin: 0;
}

/* Desktop */
@media (min-width: 1025px) {
    .servicii-container {
        display: grid;
        height: 60vh;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        flex: 1;
    }

    .serviciu-title {
        font-size: 20px;
    }

    .serviciu-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Tablet/Laptop */
@media (min-width: 769px) and (max-width: 1024px) {
    .servicii-container {
        padding-top: 5vh;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        flex: 1;
    }

    .serviciu-title {
        font-size: 20px;
    }

    .serviciu-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .servicii-container {
        padding-top: 5vh;
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 1;
    }

    .serviciu-title {
        font-size: 18px;
    }

    .serviciu-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .serviciu-card {
        padding-bottom: 4vh;
    }
}

/* Section 4 */
.forth-section {
    background-image: url('../img/servicii_bckg.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 80px 5vw;
}

.forth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(21, 21, 20, 0.7);
    z-index: 1;
}

.forth-section::after {
    content: '';
    position: absolute;
    inset: -10% -5%;
    background:
        radial-gradient(60% 60% at 20% 25%, rgba(255, 132, 0, 0.2) 0%, transparent 70%),
        radial-gradient(70% 70% at 80% 35%, rgba(255, 179, 71, 0.18) 0%, transparent 75%);
    opacity: 0.7;
    mix-blend-mode: screen;
    filter: blur(0.5px);
    animation: forthGlow 12s ease-in-out infinite alternate;
    z-index: 1;
    pointer-events: none;
}

.forth-section>* {
    position: relative;
    z-index: 2;
}

.forth-title {
    font-family: 'Dosis', sans-serif;
    color: white;
    margin: 0 0 20px 0;
    font-weight: 100;
}

.forth-subtitle {
    font-family: 'Open Sans', sans-serif;
    color: #FF8400;
    margin: 0;
}

.special-service-card {
    background-color: rgba(0, 0, 0, 0.72);
    border: 2px solid #FF8400;
    border-radius: 18px;
    padding: 48px 56px;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

.special-service-eyebrow {
    font-family: 'Open Sans', sans-serif;
    color: #FF8400;
    letter-spacing: 6px;
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
}

.special-service-title {
    font-family: 'Dosis', sans-serif;
    color: #ffffff;
    font-size: 44px;
    margin: 0;
    line-height: 1.15;
}

.special-service-price {
    font-family: 'Dosis', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 28px;
    margin: 0;
    text-transform: uppercase;
    min-height: 110px;
}

.special-service-description {
    font-family: 'Open Sans', sans-serif;
    color: #f4f4f4;
    font-size: 18px;
    margin: 0;
}

.special-price-old {
    color: rgba(255, 255, 255, 0.65);
    font-size: 32px;
    position: relative;
    padding: 6px 18px;
    transform: translateY(0);
}

.special-price-old::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    height: 3px;
    background: linear-gradient(135deg, #FF8400, #FFB347);
    transform: scaleX(0);
    transform-origin: left;
}

.special-price-new {
    color: #101010;
    font-size: 42px;
    padding: 10px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #FF8400, #FFB347);
    box-shadow: 0 20px 50px rgba(255, 132, 0, 0.45);
    opacity: 0;
    transform: scale(0.85);
}

.special-service-offer {
    font-family: 'Open Sans', sans-serif;
    color: #FFB347;
    font-size: 16px;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.special-service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #FF8400, #FFB347);
    color: #101010;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(255, 132, 0, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.special-service-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px rgba(255, 132, 0, 0.55);
}

.special-service-link-icon {
    display: inline-flex;
    transition: transform 0.25s ease;
}

.special-service-link:hover .special-service-link-icon {
    transform: translateX(4px);
}


/* Desktop */
@media (min-width: 1025px) {
    .forth-section {
        min-height: 45vh;
    }

    .forth-title {
        font-size: 48px;
    }

    .forth-subtitle {
        font-size: 24px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .forth-section {
        min-height: 45vh;
        background-attachment: scroll;
    }

    .forth-title {
        font-size: 36px;
    }

    .forth-subtitle {
        font-size: 20px;
    }

    .special-service-card {
        padding: 44px 40px;
        max-width: 640px;
        gap: 18px;
    }

    .special-service-title {
        font-size: 38px;
    }

    .special-service-price {
        font-size: 26px;
        min-height: 100px;
    }

    .special-service-description {
        font-size: 17px;
    }

    .special-price-old {
        font-size: 28px;
    }

    .special-price-new {
        font-size: 36px;
        padding: 10px 22px;
    }

    .special-service-link {
        padding: 12px 28px;
    }

}

/* Mobile */
@media (max-width: 768px) {
    .forth-section {
        min-height: 45vh;
        background-attachment: scroll;
        padding: 60px 24px;
    }

    .forth-section::after {
        opacity: 0.55;
        filter: blur(1px);
    }

    .special-service-card {
        padding: 36px 28px;
        max-width: 90%;
        gap: 16px;
    }

    .special-service-eyebrow {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .special-service-title {
        font-size: 32px;
    }

    .special-service-price {
        font-size: 24px;
        min-height: 96px;
    }

    .special-service-description {
        font-size: 16px;
    }

    .special-price-old {
        font-size: 26px;
    }

    .special-price-new {
        font-size: 32px;
        padding: 8px 20px;
    }

    .special-service-offer {
        font-size: 14px;
    }

    .special-service-link {
        width: 100%;
        justify-content: center;
    }

}

.special-service-card.price-animate .special-price-old {
    animation: priceOldMove 2.2s ease-out forwards;
}

.special-service-card.price-animate .special-price-old::after {
    animation: priceOldStrike 2.2s ease forwards;
}

.special-service-card.price-animate .special-price-new {
    animation: priceNewReveal 2.2s ease-out forwards;
    animation-delay: 1.2s;
}

@keyframes forthGlow {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.65;
    }

    50% {
        transform: translate3d(-2%, -1%, 0) scale(1.04);
        opacity: 0.75;
    }

    100% {
        transform: translate3d(2%, 1%, 0) scale(1.02);
        opacity: 0.6;
    }
}

@keyframes priceOldMove {
    0% {
        transform: translateY(0);
        color: #FFB347;
    }

    45% {
        transform: translateY(0);
        color: #FFB347;
    }

    55% {
        transform: translateY(-18px);
        color: rgba(255, 255, 255, 0.65);
    }

    100% {
        transform: translateY(-18px);
        color: rgba(255, 255, 255, 0.65);
    }
}

@keyframes priceOldStrike {
    0% {
        transform: scaleX(0);
    }

    40% {
        transform: scaleX(0);
    }

    60% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(1);
    }
}

@keyframes priceNewReveal {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    55% {
        opacity: 0;
        transform: scale(0.75);
    }

    75% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {

    .special-price-old,
    .special-price-old::after,
    .special-price-new {
        animation: none;
        transform: none;
        opacity: 1;
    }

    .special-price-old::after {
        transform: scaleX(1);
    }

    .special-price-old {
        text-decoration: line-through;
    }

    .forth-section::after {
        animation: none;
        opacity: 0.35;
    }

    .special-service-link:hover .special-service-link-icon {
        transform: none;
    }
}

@media (max-width: 768px) {
    .forth-title {
        font-size: 28px;
    }

    .forth-subtitle {
        font-size: 18px;
    }
}


/* Section 5 */
.echipa-section {
    padding: 50px 5vw;
    background-color: #1E0F2F;
    display: flex;
    flex-direction: column;
}

.membru-card {
    text-align: center;
    position: relative;
    padding-top: 5vh;
    transition: transform 0.3s;
}

.membru-card:hover {
    transform: scale(1.05);
}

.membru-card img {
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.membru-info {
    background-color: #FF8400;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    margin-top: -10px;
}

.membru-name {
    font-family: 'Dosis', sans-serif;
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

@media (min-width: 1440px) {
    .echipa-container {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 360px));
        column-gap: 56px;
        row-gap: 36px;
        justify-content: center;
        align-items: start;
        flex: 1;
    }

    .echipa-section {
        height: auto;
    }

    .membru-card img {
        height: 340px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .echipa-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 360px));
        column-gap: 56px;
        row-gap: 28px;
        justify-content: center;
        align-items: start;
        flex: 1;
    }

    .membru-card img {
        height: 320px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .echipa-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        flex: 1;
    }

    .membru-card img {
        height: 35vh;
    }

    .membru-card {
        padding-top: 4vh;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .echipa-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 1;
    }

    .membru-card img {
        height: 40vh;
    }

    .membru-card {
        padding-top: 4vh;
    }
}

/* Section 6 */
.galerie-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #1E0F2F;
}

.svg-container {
    margin-top: 7.5vh;
    display: flex;
    justify-content: center;
    color: #FF8400;
}

.video-presentation {
    max-width: 1200px;
    margin: 40px auto;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.video-controls {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.video-controls {
    opacity: 1;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.video-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.nav-arrow {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}


.nav-arrow:hover {
    transform: scale(1.3);
}

.video-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: background 0.3s;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background: #FF8400;
}

.photo-gallery {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.gallery-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo-item {
    overflow: hidden;
    border-radius: 10px;
}

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

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

.column-1 .small {
    height: 25%;
}

.column-1 .large {
    height: 50%;
}

.column-2 .large {
    height: 50%;
}

.column-2 .small {
    height: 25%;
}

.column-3 .small {
    height: 25%;
}

.column-3 .large {
    height: 50%;
}

.instagram-button {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #FF8400;
    padding: 15px 30px;
    border-radius: 30px;
    color: #FF8400;
    text-decoration: none;
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-button:hover {
    background: #FF8400;
    color: white;
}

.instagram-button svg {
    fill: currentColor;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Tablet/Laptop */
@media (min-width: 769px) and (max-width: 1024px) {}

/* Mobile */
@media (max-width: 768px) {
    .dot {
        width: 10px;
        height: 10px;
    }

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

    .instagram-button {
        padding: 15px 25px;
        font-size: 14px;
        max-width: 220px;
    }

    .photo-gallery {
        flex-direction: column;
        gap: 15px;
    }

    .gallery-column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .photo-item {
        height: 200px;
    }
}

/* Section 7 */
.echipament-section {
    padding: 80px 5vw;
    background-color: #1E0F2F;
}

.echipament-container {
    padding-top: 7.5vh;
    max-width: 1200px;
    margin: 0 auto;
}

.echipament-row {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3vw;
    align-items: center;
    margin-bottom: 60px;
}

.echipament-row.reverse {
    grid-template-columns: 1.25fr 1fr;
}

.echipament-row.reverse .echipament-content {
    order: 2;
}

.echipament-row.reverse .echipament-image {
    order: 1;
}

.echipament-title {
    font-family: 'Dosis', sans-serif;
    font-size: 40px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: left;
    -webkit-text-stroke: 0.75px #FF8400;
}

.echipament-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 100;
    color: white;
    line-height: 1.6;
    text-align: justify;
}

.echipament-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.echipament-row.reverse .echipament-title {
    text-align: right;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .echipament-row {
        gap: 4vw;
        margin-bottom: 50px;
    }

    .echipament-image img {
        height: 250px;
    }
}

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

    .echipament-row,
    .echipament-row.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .echipament-row.reverse .echipament-content,
    .echipament-row.reverse .echipament-image {
        order: unset;
    }

    .echipament-image,
    .echipament-row.reverse .echipament-image {
        order: 1;
    }

    .echipament-content,
    .echipament-row.reverse .echipament-content {
        order: 2;
    }

    .echipament-image img {
        height: 250px;
    }

    .echipament-title,
    .echipament-row.reverse .echipament-title {
        font-size: 30px;
        text-align: center;
        font-weight: 500;
    }

    .echipament-description {
        font-size: 16px;
        font-weight: 200;
        text-align: justify;
    }
}

/* Section 8 */
.testimonials-section {
    padding: 80px 5vw;
    background-image: url('../img/testimonial_bckg.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.testimonials-section>* {
    position: relative;
    z-index: 2;
}

.testimonials-container {
    position: relative;
    max-width: 600px;
    margin: 60px auto;
    height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-text {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    max-width: 500px;
}

.testimonial-name {
    font-family: 'Dosis', sans-serif;
    color: white;
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.testimonial-stars {
    color: #FF8400;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dots .dot:hover,
.testimonial-dots .dot.active {
    background: #FF8400;
    transform: scale(1.2);
}

.google-review-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #FF8400;
    border-radius: 25px;
    color: #FF8400;
    text-decoration: none;
    font-family: 'Dosis', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.google-review-link:hover {
    background: #FF8400;
    color: white;
}

@media (min-width: 1440px) {
    .testimonials-section {
        background-attachment: fixed;
        height: fit-content;
    }
}

/* Desktop */
@media (min-width: 1025px) and (max-width: 1439px) {
    .testimonials-section {
        background-attachment: fixed;
        height: fit-content;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-section {
        background-attachment: scroll;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .testimonials-section {
        background-attachment: scroll;
    }

    .testimonials-container {
        height: 450px;
        margin-bottom: 0;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-name {
        font-size: 18px;
    }

    .testimonial-stars {
        font-size: 18px;
    }

    .google-review-link {
        margin-bottom: 0;
    }
}

/* Section 9 */
.footer-section {
    padding: 60px 5vw 30px;
    background-color: #1E0F2F;
    text-align: center;
}

.footer-separator-2 {
    width: 20vw;
    height: 2px;
    background-color: #FF8400;
    margin: 30px auto;
}

.footer-title {
    font-family: 'Dosis', sans-serif;
    font-size: 36px;
    color: white;
    margin: 0;
    -webkit-text-stroke: 1px #FF8400;
    margin-top: 2.5vh;
}

.footer-description {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 30px auto;
    margin-top: 7.5vh;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10vw;
    margin-bottom: 7.5vh;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

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

.contact-value a,
a.contact-value {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover,
a.contact-value:hover {
    color: #FF8400;
}

.contact-label {
    font-family: 'Dosis', sans-serif;
    color: #FF8400;
    font-size: 14px;
    font-weight: 600;
}

.contact-value {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 16px;
}

.footer-credits {
    font-family: 'Lato', sans-serif;
    color: #FF8400;
    font-size: 14px;
    margin-top: 20px;
}

.footer-credits strong {
    color: #FF8400;
}

.footer-credits a {
    color: #FF8400;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-credits a:hover {
    opacity: 0.8;
}

.pioneer-link {
    margin-top: 20px;
    font-size: 12px;
}

.pioneer-link a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.pioneer-link a:hover {
    color: #FF8400;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-separator-2 {
        width: 35vw;
        margin-bottom: 0;
    }

    .footer-title {
        font-size: 28px;
    }

    .footer-description {
        font-size: 14px;
        margin-top: 5vh;
        margin-bottom: 5vh;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-item {
        align-items: flex-start;
        text-align: left;
        gap: 10px;
        justify-self: center;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }

    .contact-value {
        font-size: 14px;
    }

    .contact-value {
        font-size: 14px;
    }
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Servicii */
.servicii-hero {
    height: 100vh;
    background: linear-gradient(rgba(30, 15, 47, 0.8), rgba(30, 15, 47, 0.8)), url('../img/servicii_bckg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0;
}

.servicii-hero-title {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Dosis', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 68px;
    color: #FF8400;
    text-align: center;
    margin: 0;
    -webkit-text-stroke: 2.5px white;
}

.servicii-hero-subtitle {
    position: absolute;
    width: 100%;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0;
    background: linear-gradient(45deg, #FF8400, #ffffff, #FF8400);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 132, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.servicii-rsvp-highlight {
    padding: 120px 5vw 100px;
    background: radial-gradient(circle at top left, rgba(255, 132, 0, 0.2), transparent 45%),
        radial-gradient(circle at bottom right, rgba(255, 179, 71, 0.18), transparent 55%),
        linear-gradient(180deg, #1E0F2F 0%, #140821 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.servicii-rsvp-container {
    width: 100%;
}

.special-service-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    list-style: none;
    margin: 16px 0 24px;
    padding: 0;
}

.special-service-benefits li {
    font-family: 'Open Sans', sans-serif;
    color: #f4f4f4;
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.special-service-benefits li::before {
    content: '✓';
    color: #FFB347;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

.servicii-main {
    padding: 80px 5vw;
    background-color: #1E0F2F;
}

.servicii-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}

.serviciu-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.serviciu-item:hover {
    transform: translateY(-10px);
}

.serviciu-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.serviciu-content {
    padding: 30px;
}

.serviciu-title {
    font-family: 'Dosis', sans-serif;
    font-size: 22px;
    color: #FF8400;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.serviciu-description {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

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

.max-persons {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 14px;
    font-style: italic;
    margin: 0 0 20px 0;
    opacity: 0.8;
    text-align: center;
}


.serviciu-features li {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 13px;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.serviciu-features li::before {
    content: '✓';
    color: #FF8400;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.servicii-cta {
    background: linear-gradient(135deg, #FF8400, #e67300);
    padding: 60px 5vw;
    text-align: center;
}

.pricing-intro {
    padding: 60px 5vw;
    background: linear-gradient(135deg, rgba(255, 132, 0, 0.1), rgba(30, 15, 47, 0.9));
    text-align: center;
}

.pricing-intro-title {
    font-family: 'Dosis', sans-serif;
    font-size: 28px;
    color: #FF8400;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.pricing-intro-text {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-section {
    padding: 80px 5vw;
    background-color: #1E0F2F;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: #FF8400;
    background-color: rgba(255, 132, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF8400;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Dosis', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-family: 'Dosis', sans-serif;
    font-size: 24px;
    color: #FF8400;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-family: 'Dosis', sans-serif;
    font-size: 48px;
    color: white;
    font-weight: 700;
}

.price-currency {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #FF8400;
    font-weight: 600;
}

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

.pricing-features li {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    color: #FF8400;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pricing-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF8400;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Dosis', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background-color: white;
    color: #FF8400;
}

.pricing-card.featured .pricing-button {
    background-color: white;
    color: #FF8400;
}

.pricing-card.featured .pricing-button:hover {
    background-color: #FF8400;
    color: white;
}

/* Lighting section styling */
.lighting-section {
    background: linear-gradient(135deg, rgba(30, 15, 47, 0.9), rgba(60, 30, 80, 0.9));
    padding-top: 60px;
    padding-bottom: 80px;
}

.lighting-grid {
    margin-top: 40px;
}

.lighting-card {
    background: linear-gradient(135deg, rgba(255, 132, 0, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 132, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lighting-card.featured {
    background: linear-gradient(135deg, rgba(255, 132, 0, 0.2), rgba(255, 255, 255, 0.08));
    border: 2px solid rgba(255, 132, 0, 0.4);
}

.lighting-card .pricing-title {
    font-size: 22px;
    letter-spacing: 1px;
}

.lighting-button {
    background: linear-gradient(135deg, #FF8400, #e67300);
    border: none;
}

.lighting-button:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 132, 0, 0.3);
}

.lighting-card.featured .lighting-button {
    background: white;
    color: #FF8400;
}

.lighting-card.featured .lighting-button:hover {
    background: linear-gradient(135deg, #FF8400, #e67300);
    color: white;
}

.simple-section {
    background-color: #1E0F2F;
    padding: 80px 5vw;
    position: relative;
}

.simple-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 132, 0, 0.3), transparent);
}

.simple-grid {
    margin-top: 50px;
}

.simple-card {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 2px solid #FF8400;
    box-shadow: 0 0 15px rgba(255, 132, 0, 0.2);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.simple-card:hover {
    transform: translateY(-5px);
    border-color: #FF8400;
    box-shadow: 0 10px 25px rgba(255, 132, 0, 0.4);
}

.simple-card-image {
    margin: -30px -30px 20px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.simple-card-image img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.simple-features {
    margin: 15px 0 25px;
}

.simple-card .pricing-title {
    margin-bottom: 15px;
}

.simple-description {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0;
    opacity: 0.8;
    min-height: 70px;
}

.simple-button {
    background-color: transparent;
    border: 1px solid #FF8400;
    color: #FF8400;
    padding: 10px 20px;
    font-size: 14px;
}

.simple-button:hover {
    background-color: #FF8400;
    color: white;
}

.cta-title {
    font-family: 'Dosis', sans-serif;
    font-size: 36px;
    color: white;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.cta-description {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 18px;
    margin: 0 0 30px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #FF8400; /* Orange background */
    color: white; /* White text for better contrast */
    border: 2px solid #FF8400;
}

.cta-button.primary:hover {
    background-color: transparent;
    color: #FF8400;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #FF8400;
}

.lighting-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 10px 10px 0 0;
    margin: -40px -30px 20px;
}

.lighting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.price-asterisk {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
}

.price-asterisk:hover {
    color: white !important;
}

.pricing-note {
    padding: 40px 5vw;
    background: linear-gradient(135deg, rgba(255, 132, 0, 0.08) 0%, rgba(30, 15, 47, 0.95) 100%);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 132, 0, 0.2);
}

.pricing-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 132, 0, 0.5), transparent);
}

.pricing-note-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-note p {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.pricing-note strong {
    color: #FF8400;
    font-size: 18px;
}

@media (min-width: 1440px) {

    /* Align lighting cards with sonorizare card width */
    .lighting-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Extras section needs five cards on a single row */
    .simple-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Tighter image to keep similar card height */
    .lighting-image {
        height: 140px;
        margin: -30px -30px 15px;
    }

    .servicii-hero-title {
        font-size: 108px;
        line-height: 120px;
        -webkit-text-stroke: 4.5px white;
    }

    .servicii-hero-subtitle {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .servicii-grid {
        gap: calc(30px + (60 - 30) * ((100vw - 1440px) / (1920 - 1440)));
    }
}

/* Desktop */
@media (min-width: 1025px) and (max-width: 1439px) {
    .servicii-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    /* Match sonorizare: 4 columns on desktop */
    .lighting-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    /* Display all extras cards on one row */
    .simple-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
    }

    /* Reset old centering rule for 5th card */
    .lighting-grid .lighting-card:nth-child(5),
    .simple-grid>.pricing-card:nth-child(5) {
        grid-column: auto;
        max-width: none;
        width: auto;
        margin-left: 0;
        margin-right: 0;
    }

    /* Reduce image height so overall card height matches sonorizare */
    .lighting-image {
        height: 120px;
        margin: -30px -30px 15px;
    }

    .servicii-hero-title {
        font-size: 88px;
        line-height: 100px;
        -webkit-text-stroke: 4px white;
    }

    .servicii-hero-subtitle {
        font-size: 26px;
        letter-spacing: 2.5px;
    }

    .simple-description {
        min-height: 90px;
    }
}

/* Tablet/Laptop */
@media (min-width: 769px) and (max-width: 1024px) {
    .servicii-hero-title {
        font-size: 68px;
        -webkit-text-stroke: 3px white;
    }

    .servicii-hero {
        height: 70vh;
    }

    .servicii-rsvp-highlight {
        padding: 100px 6vw 80px;
    }

    .special-service-benefits {
        gap: 10px 18px;
    }

    .servicii-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .serviciu-content {
        padding: 25px;
    }

    .pricing-card {
        padding: 35px 25px;
    }

    .price-amount {
        font-size: 42px;
    }

    .servicii-hero-subtitle {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .lighting-grid,
    .simple-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .lighting-grid .lighting-card:nth-child(5),
    .simple-grid>.pricing-card:nth-child(5) {
        grid-column: 1 / -1;
        margin-left: auto;
        margin-right: auto;
        justify-self: center;
        width: min(320px, 60vw);
        max-width: 320px;
    }

    .simple-card-image {
        margin: -25px -25px 15px;
    }

    .simple-card-image img {
        height: 180px;
    }

    .lighting-card,
    .simple-card {
        padding: 25px;
    }

    .simple-description {
        min-height: 80px;
    }

    .lighting-section,
    .simple-section {
        padding: 60px 4vw;
    }

    .lighting-card .pricing-title,
    .simple-card .pricing-title {
        font-size: 18px;
    }

    .lighting-button,
    .simple-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .lighting-image {
        width: 100%;
        margin: -20px -20px 15px;
    }

    .servicii-hero-title {
        font-size: 56px;
        line-height: 68px;
        -webkit-text-stroke: 2.5px white;
    }

    .servicii-hero {
        height: 100vh;
        margin-top: 0;
    }

    .servicii-rsvp-highlight {
        padding: 80px 6vw 60px;
    }

    .servicii-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .servicii-hero-subtitle {
        font-size: 18px;
        letter-spacing: 1.5px;
        top: 68%;
    }

    .lighting-grid,
    .simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card,
    .lighting-card,
    .simple-card {
        padding: 20px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .simple-description {
        min-height: auto;
    }

    .simple-card::before {
        opacity: 0.2;
    }

    .lighting-section,
    .simple-section {
        padding: 50px 4vw;
    }

    .pricing-features {
        width: 100%;
        text-align: left;
    }

    .lighting-card .pricing-features li {
        text-align: left;
    }

    .pricing-button,
    .lighting-button,
    .simple-button {
        width: auto;
        min-width: 180px;
        padding: 12px 25px;
        display: block;
        margin: 0 auto;
        text-align: center;
        font-size: 14px;
        border-radius: 30px;
    }

    .simple-card-image {
        margin: -24px -24px 18px;
    }

    .simple-card-image img {
        width: calc(100% + 48px);
        margin-left: -24px;
        height: 220px;
    }

    .pricing-header {
        margin-bottom: 15px;
        text-align: center;
    }

    .pricing-price {
        justify-content: center;
    }

    .pricing-note {
        padding: 30px 4vw;
    }

    .pricing-note p {
        font-size: 14px;
    }

    .pricing-note strong {
        font-size: 16px;
    }

    .special-service-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 14px 0 22px;
    }

    .special-service-benefits li {
        font-size: 14px;
        padding-left: 18px;
    }

    .simple-card-majorat .pricing-header,
    .simple-card-majorat .pricing-features {
        text-align: center;
    }

    .simple-card-majorat .pricing-features li {
        padding-left: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .simple-card-majorat .pricing-features li::before {
        position: static;
    }
}

/* Mobile-optimized Hero Asset */
@media (max-width: 768px) {
    .first-section {
        background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../img/dj_setup_mobile.webp') !important;
    }
}

/* Galerie */
.galerie-hero {
    height: 100vh;
    background: linear-gradient(rgba(30, 15, 47, 0.8), rgba(30, 15, 47, 0.8)), url('../img/galerie_bckg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0;
}

.galerie-hero-title {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Dosis', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 68px;
    color: #FF8400;
    text-align: center;
    margin: 0;
    -webkit-text-stroke: 2.5px white;
}

.galerie-hero-subtitle {
    position: absolute;
    width: 100%;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0;
    background: linear-gradient(45deg, #FF8400, #ffffff, #FF8400);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 132, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.galerie-videos {
    padding: 80px 5vw;
    background-color: #1E0F2F;
    text-align: center;
}

.galerie-photos {
    padding: 80px 5vw;
    text-align: center;
    background-color: #1E0F2F;
}

.galerie-cta {
    background: linear-gradient(135deg, #FF8400, #e67300);
    padding: 60px 5vw;
    text-align: center;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.video-item {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    min-height: 200px;
    opacity: 1;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 132, 0, 0.3);
}

.video-item.expanding,
.video-item.collapsing {
    pointer-events: none;
}

.video-item.expanding {
    opacity: 0;
    transform: translateY(20px);
}

.video-item.collapsing {
    opacity: 0;
    transform: translateY(-20px);
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.photos-grid .photo-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    opacity: 1;
}

.photos-grid .photo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 132, 0, 0.3);
}

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

.photos-grid .photo-item:hover img {
    transform: scale(1.1);
}

.photos-grid .photo-item.expanding,
.photos-grid .photo-item.collapsing {
    pointer-events: none;
}

.photos-grid .photo-item.expanding {
    opacity: 0;
    transform: translateY(20px);
}

.photos-grid .photo-item.collapsing {
    opacity: 0;
    transform: translateY(-20px);
}



.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #FF8400;
}

.photo-item.hidden,
.video-item.hidden {
    display: none;
}

.load-more-btn {
    display: block;
    margin: 40px auto;
    padding: 15px 30px;
    background-color: #FF8400;
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: white;
    color: #FF8400;
    transform: scale(1.05);
}

.load-more-btn.hidden {
    display: none;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@media (min-width: 1440px) {
    .galerie-hero-title {
        font-size: 108px;
        line-height: 120px;
        -webkit-text-stroke: 4.5px white;
    }

    .galerie-hero-subtitle {
        font-size: 28px;
        letter-spacing: 3px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .galerie-hero-subtitle {
        font-size: 26px;
        letter-spacing: 2.5px;
    }

    .galerie-hero-title {
        font-size: 88px;
        line-height: 100px;
        -webkit-text-stroke: 4px white;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .galerie-hero-subtitle {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .galerie-hero-title {
        font-size: 68px;
        line-height: 80px;
        -webkit-text-stroke: 3px white;
    }

    .galerie-hero {
        background-attachment: scroll;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .galerie-hero-subtitle {
        font-size: 18px;
        letter-spacing: 1.5px;
        top: 68%;
    }

    .galerie-hero-title {
        font-size: 56px;
        line-height: 68px;
        -webkit-text-stroke: 2.5px white;
    }

    .galerie-hero-subtitle {
        font-size: 16px;
    }

    .videos-grid,
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }

    .photos-grid .photo-item {
        width: 100%;
    }


}


/* Echipa */
/* Echipa Page */
.echipa-hero {
    height: 100vh;
    background: linear-gradient(135deg, #1E0F2F 0%, #2A1B3D 30%, #3D2A4F 60%, #1E0F2F 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.echipa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 132, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 132, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 132, 0, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.echipa-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 132, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 132, 0, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.08), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    opacity: 0.6;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-10px) translateX(5px);
    }

    50% {
        transform: translateY(0px) translateX(-5px);
    }

    75% {
        transform: translateY(10px) translateX(0px);
    }
}

.echipa-hero>* {
    position: relative;
    z-index: 2;
}

.echipa-hero-title {
    font-family: 'Dosis', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 68px;
    color: #FF8400;
    text-align: center;
    margin: 0 0 20px 0;
    -webkit-text-stroke: 2.5px white;
}

.echipa-hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0;
    background: linear-gradient(45deg, #FF8400, #ffffff, #FF8400);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    letter-spacing: 2px;
}

.echipa-main {
    padding: 80px 5vw;
    background: linear-gradient(180deg, #1E0F2F 0%, #2A1B3D 50%, #1E0F2F 100%);
    position: relative;
}

.echipa-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 30%, rgba(255, 132, 0, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 132, 0, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: linear-gradient(135deg, rgba(255, 132, 0, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 132, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 132, 0, 0.2);
    border-color: rgba(255, 132, 0, 0.3);
}

.member-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.member-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, rgba(30, 15, 47, 0.8));
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.member-name {
    font-family: 'Dosis', sans-serif;
    font-size: 24px;
    color: #FF8400;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.member-role {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: white;
    margin: 0 0 15px 0;
    font-weight: 600;
    opacity: 0.9;
}

.member-description {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    opacity: 0.8;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.member-special {
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.skill-tag {
    background: linear-gradient(135deg, #FF8400, #e67300);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.echipa-values {
    padding: 80px 5vw;
    background: linear-gradient(135deg, #2A1B3D 0%, #3D2A4F 25%, #1E0F2F 50%, #3D2A4F 75%, #2A1B3D 100%);
    position: relative;
}

.echipa-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 132, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 132, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.echipa-values>* {
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 45px 25px;
    background: linear-gradient(135deg, rgba(255, 132, 0, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 25px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 2px solid rgba(255, 132, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 132, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 8s linear infinite;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 132, 0, 0.25);
    border-color: rgba(255, 132, 0, 0.4);
}

.value-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.value-icon {
    color: #FF8400;
    transition: transform 0.25s ease, filter 0.25s ease;
    position: relative;
    z-index: 2;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 132, 0, 0.6));
}

.value-title {
    font-family: 'Dosis', sans-serif;
    font-size: 22px;
    color: #FF8400;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.25s ease, text-shadow 0.25s ease;
    position: relative;
    z-index: 2;
}

.value-item:hover .value-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 132, 0, 0.5);
}

.value-description {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
    transition: opacity 0.25s ease;
    position: relative;
    z-index: 2;
}

.value-item:hover .value-description {
    opacity: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.echipa-cta {
    background: linear-gradient(135deg, #FF8400, #e67300);
    padding: 60px 5vw;
    text-align: center;
}

@media (min-width: 1440px) {
    .team-grid {
        grid-template-columns: repeat(4, minmax(0, 360px));
        column-gap: 56px;
        row-gap: 36px;
        justify-content: center;
        align-items: start;
    }

    .member-image {
        height: 340px;
    }

    .member-description {
        -webkit-line-clamp: 7;
    }

    .echipa-hero-title {
        font-size: 108px;
        line-height: 120px;
        -webkit-text-stroke: 4.5px white;
    }

    .echipa-hero-subtitle {
        font-size: 28px;
        letter-spacing: 3px;
    }

    /* gaps handled above to match home */
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .echipa-hero-title {
        font-size: 88px;
        line-height: 100px;
        -webkit-text-stroke: 4px white;
    }

    .echipa-hero-subtitle {
        font-size: 26px;
        letter-spacing: 2.5px;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 360px));
        column-gap: 56px;
        row-gap: 28px;
        justify-content: center;
        align-items: start;
    }

    .member-image {
        height: 320px;
    }

    .member-description {
        -webkit-line-clamp: 6;
    }

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

@media (min-width: 769px) and (max-width: 1024px) {
    .echipa-hero-title {
        font-size: 68px;
        line-height: 80px;
        -webkit-text-stroke: 3px white;
    }

    .echipa-hero-subtitle {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .member-description {
        -webkit-line-clamp: 5;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .member-content {
        padding: 25px;
    }

    /* No special centering needed now that we have an even count */

    .value-item {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .echipa-hero-title {
        font-size: 56px;
        line-height: 68px;
        -webkit-text-stroke: 2.5px white;
    }

    .echipa-hero-subtitle {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .member-image {
        height: 250px;
    }

    .member-content {
        padding: 25px;
    }

    .value-item {
        padding: 35px 20px;
    }

    .value-item:hover {
        transform: translateY(-5px);
    }

    .value-item::before {
        animation: none;
    }

    .member-skills {
        justify-content: center;
    }
}

/* Contact */
.contact-hero {
    height: 100vh;
    background: linear-gradient(135deg, #1E0F2F 0%, #2A1B3D 30%, #3D2A4F 60%, #1E0F2F 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 132, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 132, 0, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.contact-hero>* {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-family: 'Dosis', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 68px;
    color: #FF8400;
    text-align: center;
    margin: 0 0 20px 0;
    -webkit-text-stroke: 2.5px white;
}

.contact-hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0;
    background: linear-gradient(45deg, #FF8400, #ffffff, #FF8400);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    letter-spacing: 2px;
}

.contact-main {
    padding: 80px 5vw;
    background: linear-gradient(180deg, #1E0F2F 0%, #2A1B3D 50%, #1E0F2F 100%);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container .title-separator {
    max-width: 800px;
}

.contact-info-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 132, 0, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 132, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 132, 0, 0.2);
    border-color: rgba(255, 132, 0, 0.3);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 132, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    font-family: 'Dosis', sans-serif;
    color: #FF8400;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.contact-details p {
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 16px;
    margin: 0 0 5px 0;
}

.contact-details p a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details p a:hover {
    color: #FF8400;
}

.contact-details span {
    font-family: 'Lato', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.social-links {
    margin-top: 40px;
}

.social-text {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-links h3 {
    font-family: 'Dosis', sans-serif;
    color: #FF8400;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255, 132, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8400;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #FF8400;
    color: white;
    transform: translateY(-3px);
}

.contact-map {
    padding: 80px 5vw;
    background-color: #1E0F2F;
    text-align: center;
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-map .title-separator {
    max-width: 800px;
}

@media (min-width: 1440px) {
    .contact-hero-title {
        font-size: 108px;
        line-height: 120px;
        -webkit-text-stroke: 4.5px white;
    }

    .contact-hero-subtitle {
        font-size: 28px;
        letter-spacing: 3px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .contact-hero-title {
        font-size: 88px;
        line-height: 100px;
        -webkit-text-stroke: 4px white;
    }

    .contact-hero-subtitle {
        font-size: 26px;
        letter-spacing: 2.5px;
    }

    .contact-container {
        max-width: 600px;
    }

    .contact-container .title-separator {
        max-width: 600px;
    }

    .map-container {
        max-width: 600px;
    }

    .contact-map .title-separator {
        max-width: 600px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-hero-title {
        font-size: 68px;
        line-height: 80px;
        -webkit-text-stroke: 3px white;
    }

    .contact-hero-subtitle {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }

    .contact-container .title-separator {
        max-width: 600px;
    }

    .map-container {
        max-width: 600px;
    }

    .contact-map .title-separator {
        max-width: 600px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 56px;
        line-height: 68px;
        -webkit-text-stroke: 2.5px white;
    }

    .contact-hero-subtitle {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-info-item {
        padding: 20px;
        gap: 15px;
    }

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(30, 15, 47, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    z-index: 9999;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 132, 0, 0.3);
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.cookie-consent p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.cookie-consent-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-consent button {
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cookie-consent .accept-cookies {
    background: linear-gradient(135deg, #FF8400, #e67300);
    color: white;
}

.cookie-consent .accept-cookies:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 132, 0, 0.4);
}

.cookie-consent .reject-cookies {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-consent .reject-cookies:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        padding: 15px 20px;
        max-width: 85%;
    }

    .cookie-consent p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .cookie-consent button {
        padding: 8px 15px;
        font-size: 13px;
    }
}