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

html, body {
    height: 100%;
}

body {
    background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, transparent 40%, rgba(0, 0, 0, 0.1) 100%),
    #0d0d0d;
    background-attachment: fixed;
    font-family: 'Segoe UI', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: screen;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 6px 6px, 8px 8px, 4px 4px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 2;
}

.center-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-selector {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    width: 350px;
    height: auto;
    display: block;
    margin: 0 auto 75px;
}

.menu-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 20px 30px;
    border: 1px solid #d4af37;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    background-color: rgba(212, 175, 55, 0.03);
    width: fit-content;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    border: 1px solid #d4af37;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    width: 260px;
}

.lang-btn:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
    transform: scale(1.05);
    background-color: rgba(212, 175, 55, 0.05);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(10px, 2vw, 15px) clamp(15px, 4vw, 60px);
    background: rgba(13, 13, 13, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 200;
    flex-wrap: wrap;
}

.nav-logo {
    height: clamp(30px, 4vw, 40px);
}

.nav-links {
    display: flex;
    gap: clamp(6px, 1.5vw, 20px);
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.75rem, 1.2vw, 0.95rem);
    letter-spacing: 1px;
    padding: clamp(8px, 1vw, 12px) clamp(16px, 2.5vw, 26px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #0d0d0d;
    background: rgba(212, 175, 55, 0.9);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.8);
    transform: scale(1.05);
}

section {
    padding: 140px 60px 100px;
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 2;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #d4af37;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.hero h1 {
    font-size: 3rem;
    max-width: 800px;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #d4af37;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    color: #cccccc;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid #d4af37;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.cta-btn:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
    transform: scale(1.05);
    background-color: rgba(212, 175, 55, 0.05);
}

.about p {
    max-width: 700px;
    margin: 0 auto;
    color: #cccccc;
    line-height: 1.6;
}

.footer {
    text-align: center;
    padding: 30px;
    color: #888888;
    font-size: 0.85rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form {
    max-width: 600px;
    margin: 30 auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact p {
    max-width: 600px;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.03);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    align-self: center;
    width: fit-content;
    margin: 15px auto 0;
    cursor: pointer;
    background: none;
    font-family: inherit;
}

#form-status {
    color: #d4af37;
    font-size: 0.9rem;
    margin-top: -5px;
    text-align: center;
}

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

@media (max-width: 600px) {
    .form-row{
        flex-direction: column;
    }
}

/*Buton Meniu Desktop*/
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
}

/*Meniu Telefon*/
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 200;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    position: fixed;
}
.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.mobile-menu a:hover {
    color: #d4af37;
}

.menu-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

.scroll-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 10px 60px 20px;
    margin: 20px -60px 0;
    -webkit-overflow-scrolling: touch;
}

.scroll-grid::-webkit-scrollbar {
    display: none;
}

.service-card,
.portfolio-item,
.pricing-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background-color: rgba(212, 175, 55, 0.03);
    border: 1px solid #d4af37;
    border-radius: 15px;
    padding: 40px 30px;
    width: 230px;
    text-align: left;
}

.service-card h3,
.portfolio-item h3,
.pricing-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.service-card p,
.portfolio-item p,
.pricing-card p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.portfolio-item {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
}

.portfolio-link {
    color: #d4af37;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 15px;
}

.pricing-card .price {
    color: #d4af37;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.lang-switch {
    display: flex;
    grid-area: 10px;
    align-items: center;
}

.lang-switch a {
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.lang-switch a:hover {
    transform: scale(1.2);
}

.logo-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
}

.social-links a:hover {
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.7);
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.15);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #d4af37;
}

.not-found {
    text-align: center;
    color: #ffffff;
}

.not-found h1 {
    font-size: 5rem;
    color: #d4af37;
    margin: 20px 0;
}

.not-found p {
    color: #cccccc;
    margin-bottom: 30px;
}

.err-logo {
    width: 180px;
    max-width: 60vw;
    height: auto;
    display: block;
    margin: 0 auto 30px;
}

#skeleton-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0d0d;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.5s ease;
}

#skeleton-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.skeleton-box {
    background: linear-gradient(90deg, rgba(212,175,55,0.05) 25%, rgba(212,175,55,0.15) 50%, rgba(212,175,55,0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 10px;
}

.skel-logo {
    width: 180px;
    height: 50px;
}

.skel-line {
    width: 260px;
    height: 16px;
}

.skel-line.short {
    width: 180px;
}

@keyframes skeleton-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (min-width: 1024px) {
  * {
    cursor: none;
    }

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4af37;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

#custom-cursor.hover {
    width: 30px;
    height: 30px;
    background: rgba(212, 175, 55, 0.4);
    border: 1px solid #d4af37;
}
}

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding-top: 140px;
}

.legal-page h1 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.legal-page h2 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: left;
}

.legal-page p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page a {
    color: #d4af37;
}

.launch-offer {
    color: #d4af37;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 20px;
}

.strike {
    text-decoration: line-through;
    color: #888888;
    font-size: 1rem;
    margin-right: 8px;
}

.pricing-note {
    color: #999999;
    font-size: 0.85rem;
    max-width: 500px;
    margin: 30px auto 0;
}

#lang-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #d4af37;
    border-radius: 50px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    z-index: 500;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

#lang-banner.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

#lang-banner span {
    color: #ffffff;
    font-size: 0.9rem;
}

#lang-banner a {
    color: #d4af37;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid #d4af37;
}

#lang-banner button {
    background: none;
    border: none;
    color: #888888;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

#lang-banner button:hover {
    color: #ffffff;
}

@media (max-width: 600px) {
    #lang-banner {
        width: 90%;
        padding: 12px 16px;
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}