        :root {
            --primary: #19222d;
            --accent: #00c853;
            --light: #f4f7fb;
            --muted: #8a9bad
        }

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

        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: var(--primary);
            color: var(--light);
            line-height: 1.6;
            scroll-behavior: smooth
        }

        a {
            text-decoration: none;
            color: inherit
        }
.form-message {
    margin-bottom: 20px;
    padding: 12px 20px;
    border-radius: 6px;
    background-color: #f0f4f8;
    color: #19222d;
    font-weight: bold;
    text-align: center;
}
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: #0d141c;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .5);
            animation: slideDown 0.6s ease
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }

            to {
                transform: translateY(0)
            }
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 14px 20px
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            animation: pulse 3s infinite ease-in-out
        }

        .logo img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            filter: brightness(0) invert(1)
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1)
            }

            50% {
                transform: scale(1.05)
            }
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 20px
        }

        nav li a {
            color: var(--muted);
            font-weight: 500;
            transition: color .3s
        }

        nav li a:hover {
            color: var(--accent)
        }

        .cta,
        button {
            position: relative;
            overflow: hidden;
            background: var(--accent);
            padding: 10px 16px;
            border-radius: 10px;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            display: inline-block;
            transition: background .3s, transform .2s, box-shadow .2s
        }

        .cta:hover,
        button:hover {
            background: #00b44c;
            transform: scale(1.05);
            box-shadow: 0 0 12px rgba(0, 200, 83, 0.6)
        }

        .cta:active,
        button:active {
            transform: scale(0.95);
            box-shadow: 0 0 6px rgba(0, 200, 83, 0.8)
        }

        .cta::after,
        button::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            transition: transform .6s ease, opacity .6s ease;
            opacity: 0;
            pointer-events: none
        }

        .cta:active::after,
        button:active::after {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1
        }

        main {
            padding-top: 90px
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer
        }

        .menu-toggle span {
            width: 26px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: .3s
        }

        @media(max-width:900px) {
            nav ul {
                position: absolute;
                top: 100%;
                right: 0;
                background: #0d141c;
                flex-direction: column;
                width: 240px;
                padding: 20px;
                gap: 16px;
                display: none;
                border-radius: 0 0 10px 10px
            }

            nav ul.show {
                display: flex
            }

            nav ul li:last-child {
                margin-top: 10px
            }

            .menu-toggle {
                display: flex
            }

            .nav>.cta {
                display: none
            }
        }

        @media(min-width:901px) {
            nav ul li:last-child {
                display: none
            }
        }

        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 30px;
            padding: 80px 20px;
            background: linear-gradient(120deg, #10171f, #19222d);
            animation: fadeIn 1.2s ease
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .hero-text {
            flex: 1;
            min-width: 280px;
            max-width: 500px
        }

        .hero-text h1 {
            font-size: 2.6rem;
            margin-bottom: 14px
        }

        .hero-text p {
            color: var(--muted);
            font-size: 1.1rem
        }

        .hero-text .actions {
            margin-top: 20px;
            display: flex;
            gap: 14px
        }

        .hero img {
            flex: 1;
            min-width: 280px;
            max-width: 520px;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .5);
            transition: transform .4s
        }

        .hero img:hover {
            transform: scale(1.05)
        }

        section {
            padding: 70px 20px;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease
        }

        section.visible {
            opacity: 1;
            transform: translateY(0)
        }

        section h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: #fff;
            position: relative
        }

        section h2::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent);
            margin: 10px auto 0;
            border-radius: 2px
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px
        }

        .service {
            background: #111922;
            padding: 24px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 6px 16px rgba(0, 0, 0, .4);
            transition: transform .3s, box-shadow .3s
        }

        .service:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, .5)
        }

        .service img {
            width: 30%;
            border-radius: 12px;
            margin-bottom: 14px;
            transition: transform .4s
        }

        .service img:hover {
            transform: scale(1.05)
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 16px
        }

        .portfolio-grid div {
            min-height: 350px;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform .3s;
     
        }
        .portfolio-grid div:hover {
            transform: scale(1.05)
        }

        .about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center
        }

        .about img {
            width: 100%;
            border-radius: 14px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .5)
        }

        .contact {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .contact-card {
            background: #111922;
            padding: 30px 24px;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .5);
            flex: 1 1 300px;
            max-width: 500px;
            transition: transform .3s, box-shadow .3s;
        }

        .contact-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, .5);
        }

        .contact-card h2 {
            margin-bottom: 20px;
            color: var(--accent);
            font-size: 1.6rem;
            text-align: center;
        }

        .contact-card input,
        .contact-card textarea,
        .contact-card button {
            width: 100%;
            margin-bottom: 14px;
        }

        .contact-card button {
            background: var(--accent);
            color: #fff;
            padding: 12px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
        }

        .contact-card button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 12px rgba(0, 200, 83, 0.6);
        }

        /* Stil pentru date de contact cu iconițe */
        .contact-info .info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            background: #0d141c;
            padding: 12px 16px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
            transition: transform .3s, box-shadow .3s;
        }

        .contact-info .info-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, .5);
        }

        .contact-info .info-item span {
            font-size: 1.4rem;
        }

        .contact-info .info-item p {
            margin: 0;
            font-size: 1rem;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 14px
        }

        input,
        textarea {
            padding: 14px;
            border: none;
            border-radius: 10px;
            background: #0d141c;
            color: #fff;
            font-size: 1rem;
            transition: box-shadow .3s, transform .2s
        }

        input:focus,
        textarea:focus {
            outline: 2px solid var(--accent);
            box-shadow: 0 0 8px rgba(0, 200, 83, 0.6);
            transform: scale(1.02)
        }

        footer {
            background: #0d141c;
            padding: 24px;
            text-align: center;
            color: var(--muted);
            font-size: .9rem
        }

        @media(max-width:768px) {
            .about {
                grid-template-columns: 1fr
            }

            .contact {
                grid-template-columns: 1fr
            }

            .hero-text h1 {
                font-size: 2rem
            }
        }

        /* Lightbox pentru acreditări */
        #lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }

        #lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
        }

        #lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
        }

        .hover-img {
            width: 300px;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
        }

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

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

        .program-card {
            background: #111922;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .5);
            transition: transform .3s, box-shadow .3s;
        }

        .program-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, .5);
        }

        .program-card.green {
            border-top: 4px solid #00c853;
        }

        .program-card.yellow {
            border-top: 4px solid #ffeb3b;
            color: #fff;
        }

        .program-card.red {
            border-top: 4px solid #f44336;
        }

        .program-card h3 {
            margin-bottom: 10px;
        }

        .program-card ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        .program-card ul li {
            margin-bottom: 6px;
        }
        li {
            list-style-type: none;
        }
        .program-card.motivation {
            background: #19222d;
            border-top: 4px solid #00c853;
            color: #fff;
            padding: 24px;
            position: relative;
            top: 40px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .5);
            transition: transform .3s, box-shadow .3s;
        }

        .program-card.motivation:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, .5);
        }

        .program-card.motivation h3 {
            margin-bottom: 12px;
        }

        #lang-switch img.selected {
            border-color: var(--accent);
            transform: scale(1.1);
            transition: transform 0.2s, border-color 0.2s;
        }

        #lang-switch img:hover {
            transform: scale(1.05);
        }