@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=Urbanist:wght@300;400;600;800&display=swap');
:root {
    --bg-main: #0F1A17;
    --bg-sec: #14231F;
    --emerald: #10B981;
    --text: #E6F4F1;
    --glass: rgba(20, 35, 31, 0.98);
    --border: rgba(16, 185, 129, 0.15);
    --nav-h: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text);
    font-family: 'Urbanist', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-main);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeOut 0.8s ease-in-out 2.5s forwards;
}

.loading-content {
    text-align: center;
    animation: float 2s ease-in-out infinite;
}

.loading-logo {
    height: 120px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
    margin-bottom: 20px;
    aspect-ratio: auto;
}

.loading-screen h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    color: var(--emerald);
    letter-spacing: -1.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.loading-screen h2 span {
    color: #fff;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

h1,
h2,
h3,
h4,
.brand-name {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}


/* REVEAL ANIMACE */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* NAVBAR */

nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
    background: var(--glass);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}


/* LOGO FIX */

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.nav-logo-img {
    height: 90px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.2));
    aspect-ratio: auto;
}

.brand-name {
    font-size: 1.6rem;
    color: var(--emerald);
    letter-spacing: -1.5px;
}

.brand-name span {
    color: #fff;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    opacity: 0.7;
    font-size: 0.9rem;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--emerald);
}

.nav-links a:hover::after {
    width: 100%;
}


/* LANG PILL */

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-pill {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
    opacity: 0.4;
}

.lang-btn.active {
    background: var(--emerald);
    color: var(--bg-main);
    opacity: 1;
}


/* SECTIONS */

.section {
    padding: clamp(80px, 12vh, 140px) 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 120px;
    letter-spacing: -2px;
}

.footer {
    background: var(--bg-sec);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand .brand-name {
    font-size: 1.4rem;
}

.footer-brand p {
    margin-top: 10px;
    opacity: 0.7;
}

.footer-legal {
    font-style: italic;
    opacity: 0.7;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.package-card {
    text-align: center;
}

.package-card h3 {
    margin-bottom: 10px;
}

.package-card p {
    margin-bottom: 30px;
}

.featured {
    border: 2px solid var(--emerald);
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 60px 45px;
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glass-card:hover {
    border-color: var(--emerald);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}


/* TEAM SECTION RESPONSIVE */

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.team-section {
    padding-top: 200px;
}

.team-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--emerald);
    margin-bottom: 25px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.res-card {
    text-align: center;
}

.res-card .stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.res-card p {
    margin-bottom: 10px;
}

.role {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 10px;
}


/* SMOOTH CURSOR */

@media (pointer: fine) {
    body,
    a,
    button {
        cursor: none !important;
    }
    .cursor-dot,
    .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        border-radius: 50%;
        pointer-events: none;
        z-index: 999999;
        will-change: transform;
    }
    .cursor-dot {
        width: 8px;
        height: 8px;
        background: var(--emerald);
    }
    .cursor-outline {
        width: 45px;
        height: 45px;
        border: 2.5px solid var(--emerald);
        transition: transform 0.1s ease-out;
    }
}


/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -4px;
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    max-width: 900px;
    margin: 0 auto 50px;
    opacity: 0.8;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--emerald) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* HAMBURGER OPEN STATE */

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-content.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--glass);
    border-bottom: 1px solid var(--border);
    padding: 20px 40px;
    gap: 20px;
    animation: slideDown 0.3s ease-out;
}

.nav-content.active .nav-links {
    flex-direction: column;
    gap: 15px;
}

.nav-content.active .nav-right-group {
    flex-direction: column;
    gap: 15px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* RESPONZIVITA */

@media (max-width: 992px) {
    .nav-container {
        padding: 0 20px;
    }
    .nav-content {
        display: none;
    }
    .nav-logo-img {
        height: 70px;
    }
    .lang-pill {
        flex-wrap: wrap;
        gap: 5px;
    }
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.65rem;
    }
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 7px;
        cursor: pointer;
        z-index: 10001;
    }
    .hamburger span {
        width: 35px;
        height: 3px;
        background: var(--emerald);
        transition: 0.3s;
    }
    .section-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
        margin-bottom: 60px;
    }
    .glass-card {
        padding: 40px 30px;
    }
    .hero h1 {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .simple-nav .nav-content {
        display: flex;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .faq-item h4 {
        margin-bottom: 10px;
    }
    .section {
        padding: clamp(40px, 8vh, 80px) 0;
    }
    input,
    textarea {
        padding: 16px;
        font-size: 16px;
    }
    .btn {
        padding: 16px 32px;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0 15px;
        height: auto;
    }
    .nav-logo-img {
        height: 55px;
    }
    .lang-pill {
        flex-wrap: wrap;
        gap: 4px;
        padding: 3px;
    }
    .lang-btn {
        padding: 5px 8px;
        font-size: 0.6rem;
    }
    .brand-name {
        font-size: 1rem;
    }
    .section-title {
        font-size: clamp(1.3rem, 4vw, 2rem);
        margin-bottom: 30px;
    }
    .glass-card {
        padding: 25px 15px;
        border-radius: 16px;
    }
    .hero {
        min-height: 70vh;
        padding-top: 40px;
    }
    .hero h1 {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .section {
        padding: clamp(25px, 5vh, 50px) 0;
    }
    .img-wrapper {
        width: 140px;
        height: 140px;
        border-radius: 50%;
    }
    .container {
        padding: 0 12px;
    }
    .nav-content.active {
        padding: 10px;
    }
    .nav-content.active .nav-links {
        gap: 10px;
    }
    .faq-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .faq-item h4 {
        font-size: 0.95rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
        width: 100%;
    }
    .btn-nav {
        width: auto;
    }
    input,
    textarea {
        padding: 12px;
        margin-bottom: 12px;
        font-size: 16px;
        border-radius: 8px;
    }
    .card-icon {
        font-size: 2.5rem;
    }
}

.btn {
    padding: 22px 45px;
    border-radius: 20px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    font-family: 'Unbounded';
    font-size: 0.9rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

input,
textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--emerald);
}

.btn-primary {
    background: var(--emerald);
    color: var(--bg-main);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    border: 2px solid var(--border);
    color: #fff;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.faq-item h4 {
    margin-bottom: 15px;
}

.emerald-text {
    color: var(--emerald);
}

.btn-nav {
    padding: 12px 24px;
    font-size: 0.8rem;
}