/* ==========================================================================
   1. GLOBÁLIS ALAPBEÁLLÍTÁSOK & VÁLTOZÓK
   ========================================================================== */
:root {
    --bg-dark: #050811; /* Még mélyebb, prémium sötét háttér */
    --bg-grid: rgba(0, 240, 255, 0.015); /* Halvány cyber rács szín */
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.05);
    --accent: #00f0ff;
    --accent-secondary: #0066ff;
    --accent-glow: rgba(0, 240, 255, 0.35);
    --white: #ffffff;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --btn-primary: #0066ff;
    --btn-primary-hover: #0052cc;
    --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* PRÉMIUM TESTRESZABOTT NEON SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    border: 2px solid var(--bg-dark);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    
    /* FUTURISZTIKUS CYBER-GRID HÁTTÉR ÉS LASSAN PULZÁLÓ NEON FÉNYFOLTOK */
    background-image: 
        linear-gradient(var(--bg-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px),
        radial-gradient(circle at 10% 20%, rgba(0, 240, 255, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 102, 255, 0.05) 0%, transparent 45%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
    background-attachment: fixed;
}

/* --- Globális Elrendezést Biztosító Konténer --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* --- Globális Térközök --- */
.section-spacer {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    clear: both;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.category-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.4rem;
    color: var(--white);
    font-weight: 800;
    margin: 0;
}

/* ==========================================================================
   2. ELEMEK ÉS KÁRTYÁK ALAPSTÍLUSA
   ========================================================================== */
/* 1. ALAP KÁRTYA STÍLUS */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03); /* Nagyon finom, áttetsző alap */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    /* Többrétegű, rendkívül lágy, elmosott árnyék a fizikai mélységért */
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.2),
        0 10px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1); /* Finom belső élfény */
        
    transition: 
        transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
        box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
        border-color 0.4s ease;
    
    overflow: hidden;
    transform-style: preserve-3d; /* Engedélyezi a 3D parallax mélységet a kártyán belül */
}

.glass-card:hover {
    border-color: rgba(0, 149, 255, 0.25); /* Finom kékes derengés a peremen */
    
    /* Amikor megemelkedik a kártya, az árnyék messzebb kerül, lágyabb és sötétebb lesz */
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 30px 80px rgba(0, 149, 255, 0.15), /* Nagyon lágy, színes háttér-ragyogás */
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* DINAMIKUS EGÉRKÖVETŐ RAGYOGÁS RECEPTORAI (MOUSE GLOW) */
/* 3. DINAMIKUS EGÉRKÖVETŐ GLOW FINOMÍTÁSA */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
        400px circle at var(--mouse-x, 0) var(--mouse-y, 0), 
        rgba(0, 149, 255, 0.12), /* Finom neonkék ragyogás */
        transparent 80%
    );
    mix-blend-mode: screen;
}

.glass-card:hover .card-glow {
    opacity: 1;
}

/* Minden elemet, ami a kártyán belül van, a ragyogás fölé kell emelnünk, hogy olvasható maradjon */
.glass-card > * {
    position: relative;
    z-index: 2;
}

/* Gombok stílusai */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--btn-primary);
    color: var(--white);
    border: 1px solid var(--btn-primary);
}

.btn-primary:hover {
    background: var(--btn-primary-hover);
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Szöveges linkek */
.nav-item-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.nav-item-link:hover {
    opacity: 0.8;
}

/* Színátmenetes szöveg */
.gradient-text {
    background: linear-gradient(90deg, #00f0ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   3. SZEKCIÓ SPECIFIKUS JAVÍTÁSOK
   ========================================================================== */
/* --- 1. Hero Szekció --- */
.hero-section {
    padding: 12rem 0 8rem 0; /* Megemelt felső térköz a lepel és a header miatt */
    text-align: center;
    position: relative;
}

.hero-container-box {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--accent);
    padding: 0.5rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* --- 2. Rács Rendszer (Features & Testimonials) --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.card {
    padding: 2.5rem;
    height: 100%;
    box-sizing: border-box;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.glass-card:hover .card-icon {
    transform: scale(1.15) translateY(-2px); /* Látványos ikon-mozdulat hoverre */
}

.card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- 3. Szolgáltatások (Egymás alatti sorok) --- */
.services-modern-container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

@media (min-width: 769px) {
    .service-row.reverse .service-image-box {
        order: 2;
    }
    .service-row.reverse .service-info-text {
        order: 1;
    }
}

.service-image-box {
    min-height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-img-placeholder {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
}

.service-info-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-info-text h3 {
    font-size: 2rem;
    color: var(--white);
    margin: 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.benefit-list li {
    color: var(--text-main);
    font-size: 1rem;
}

/* --- 4. Szerviz folyamat lépések --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.process-step {
    padding: 2.2rem;
    box-sizing: border-box;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.step-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

/* --- 5. Vélemények kártyák --- */
.testimonial-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    box-sizing: border-box;
}

.stars {
    color: #ffb800;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feedback {
    font-style: italic;
    color: var(--text-main);
    font-size: 0.95rem;
}

.user-info {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.user-info strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.user-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- 6. GYIK harmonika --- */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.8rem;
    cursor: pointer;
    box-sizing: border-box;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--white);
}

/* --- 7. Bottom CTA Banner --- */
.bottom-cta {
    padding: 5rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 240, 255, 0.15);
    box-sizing: border-box;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ==========================================================================
   4. JAVASCRIPT ANIMÁCIÓS INTERAKCIÓK (FAQ & MENÜ)
   ========================================================================== */
/* GYIK Harmonika működése */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease, opacity 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    opacity: 1;
}

.faq-item .faq-toggle-btn {
    transition: transform 0.3s ease;
    display: inline-block;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-toggle-btn {
    transform: rotate(45deg);
    color: var(--accent);
}

/* ==========================================================================
   5. FELELŐSSÉGTELJES MOBIL NÉZETEK (RESPONSIVE)
   ========================================================================== */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   6. HEADER & NAVIGÁCIÓ STÍLUSAI
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 8, 17, 0.7); /* Igazítva az új sötétebb háttérhez */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; 
}

/* Logó formázása */
.logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.header-logo {
    height: 40px;
    width: auto;
}

/* Navigációs linkek elrendezése asztali gépen */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-item-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-item-link:hover {
    color: var(--accent);
}

/* Hamburger Menü Gomb (Alapból rejtve asztali gépen) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    padding: 0;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- Mobil Hamburger Animáció (X-szé alakulás) --- */
.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   7. FOOTER STÍLUSAI
   ========================================================================== */
.main-footer {
    background-color: #03050a;
    padding: 4rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-info {
    max-width: 320px;
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--accent);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* ==========================================================================
   8. FELELŐSSÉGTELJES MOBIL NÉZETEK JAVÍTÁSA (RESPONSIVE)
   ========================================================================== */
@media (max-width: 768px) {
    /* Megjelenítjük a hamburger gombot */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
    display: flex;
    position: fixed;
    top: 80px;
    right: -280px; /* ugyanannyi, mint a menü szélessége */
    width: 280px;
    height: calc(100vh - 80px);
    background: rgba(10, 15, 29, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
    padding: 4rem 2rem;
    transition: right .4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(255,255,255,.05);
}

	.nav-links.active {
		right: 0;
	}

    /* Footer elrendezés mobilon */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-right {
        align-items: center;
    }
}

/* ==========================================================================
   9. KAPCSOLAT OLDAL STÍLUSA (CONTACT PAGE)
   ========================================================================== */
.contact-section-wrapper {
    padding-top: 120px; 
}

/* Kétoszlopos elrendezés asztali gépen */
.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Elérhetőségek blokk */
.contact-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-details h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.detail-item:last-of-type {
    margin-bottom: 0;
}

.detail-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.detail-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin: 0 0 0.2rem 0;
}

.detail-item p {
    font-size: 1.05rem;
    color: var(--white);
    margin: 0;
    font-weight: 500;
}

/* Űrlap doboz */
.contact-form-box {
    padding: 3rem;
}

/* Űrlap elemek */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Alert visszajelzések */
.alert {
    padding: 1rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.alert-icon {
    font-size: 1.15rem;
    font-weight: bold;
}

.alert-success {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.2);
    color: #2ed573;
}

.alert-danger {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.w-100 {
    width: 100%;
}

/* ==========================================================================
   10. MOBIL NÉZET IGAZÍTÁSA (KAPCSOLAT)
   ========================================================================== */
@media (max-width: 992px) {
    .contact-grid-modern {
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    
    .contact-details, .contact-form-box {
        padding: 2rem; 
    }
}

/* ==========================================================================
   11. ÁRAK OLDAL STÍLUSAI (PRICING PAGE)
   ========================================================================== */
.pricing-section-wrapper {
    padding-top: 120px; 
}

.price-card {
    padding: 3.5rem 2rem 2.5rem 2rem; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative; 
    height: 100%;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
}

.price-header {
    width: 100%;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 1.5rem;
}

.price-card h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.price-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1; 
}

.price-list li {
    color: var(--text-main);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.4;
}

.price-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- Legnépszerűbb kiemelt kártya --- */
.price-card.popular {
    border: 1px solid rgba(0, 212, 255, 0.25);
    background: rgba(10, 15, 29, 0.45);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.08), 
                inset 0 1px 1px rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.price-card.popular h3 {
    color: #fff;
}

.price-card.popular .price {
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) !important; 
    background: linear-gradient(135deg, #00d4ff, #0072ff) !important;
    color: #050811 !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem !important;
    border-radius: 20px !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6) !important;
    z-index: 999 !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   12. MOBIL AJÁNLÓ IGAZÍTÁSA (PRICING RESPONSIVE)
   ========================================================================== */
@media (max-width: 992px) {
    .price-card.popular {
        transform: translateY(0); 
        margin: 1rem 0;
    }
}

/* ==========================================================================
   13. RÓLAM OLDAL STÍLUSAI (ABOUT PAGE)
   ========================================================================== */
.about-section-wrapper {
    padding-top: 140px; 
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tech-stack {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stack-badge {
    background: rgba(0, 212, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.12);
    color: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.stack-badge:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.about-visual {
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.visual-inner {
    position: relative;
    z-index: 2;
}

.neon-number {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.3));
}

.visual-text {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* ==========================================================================
   14. MOBIL NÉZET IGAZÍTÁSA (ABOUT RESPONSIVE)
   ========================================================================== */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr; 
        gap: 3rem;
    }
    
    .about-text-content {
        text-align: center;
        align-items: center;
    }
    
    .about-visual {
        min-height: auto;
        padding: 3rem 2rem;
    }
    
    .neon-number {
        font-size: 4.5rem; 
    }
}

/* ==========================================================================
   15. PRÉMIUM OLDALÁTMENETEK (PAGE TRANSITIONS)
   ========================================================================== */
.page-transition {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-transition.page-loaded {
    opacity: 1;
    transform: translateY(0);
}

.page-transition.page-exit {
    opacity: 0;
    transform: translateY(-10px); 
}

.page-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    display: none;
    z-index: 9999;
}


.page-overlay.slide-in {
    transform: translateX(100%);
    pointer-events: auto;
}

.page-overlay.slide-out {
    transform: translateX(200%);
}

/* ==========================================================================
   17. GYIK HARMONIKA ANIMÁCIÓ (FAQ ACCORDION)
   ========================================================================== */
.faq-item {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item.active {
    border-color: rgba(0, 212, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.faq-toggle-btn {
    font-size: 1.4rem; 
    font-weight: 300;  
    color: var(--accent);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1; 
    padding-bottom: 3px; 
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.3s ease;
    box-sizing: border-box; 
}

.faq-item.active .faq-toggle-btn {
    background: var(--accent);
    color: #050811;
    transform: rotate(180deg);
    padding-bottom: 2px; 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px; 
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.95rem;
}
/* Ha van aktív fókuszált mező a kártyán belül, átmenetileg kapcsoljuk ki a 3D dőlést */
.contact-form-box:focus-within {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-4px) !important;
    transition: transform 0.3s ease !important;
}
/* 1. JELVÉNY (BADGE) JAVÍTÁSA */
/* Mivel a kártya 'overflow: hidden', a jelvénynek a kártya belső határvonalán BELÜL kell elhelyezkednie */
.price-card.popular {
    position: relative;
    padding-top: 3rem !important; /* Helyet szorítunk a jelvénynek, hogy ne csússzon rá a szövegre */
    border-color: rgba(0, 149, 255, 0.3) !important;
}

.popular-badge {
    position: absolute;
    top: 12px; /* Tökéletesen beillesztve a felső perem alá */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0095ff, #00c6ff);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 149, 255, 0.3);
    white-space: nowrap;
}

/* 2. A KÁRTYÁK ALJI SÖTÉT BLOKK ELTŰNTETÉSE */
/* Teljesen lefejtjük az esetleges korábbi háttér/árnyék maradványokat a glow elemről */
.card-glow {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    z-index: 1;
    
    /* ALAPHELYZETBEN REJTVE (Eltünteti a betöltéskori villanást) */
    opacity: 0; 
    
    background: radial-gradient(
        350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(0, 149, 255, 0.15), 
        transparent 80%
    ) !important;
    
    /* Sima áttűnés, hogy ne ugorjon be a fény, amikor ráviszed az egeret */
    transition: opacity 0.4s ease !important; 
    
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}
/* CSAK HOVER ÁLLAPOTBAN JELENIK MEG */
.glass-card:hover .card-glow {
    opacity: 1;
}

/* Ha a .card-hoz vagy a .glass-card-hoz korábban tartozott egy elcsúszott ::after/::before árnyék, azt itt alaphelyzetbe állítjuk: */
.glass-card::after, 
.glass-card::before,
.card::after,
.card::before {
    display: none !important; /* Megszünteti a kártyák mögül „kilógó” sötét dobozokat */
}
/* SZOLGÁLTATÁSOK RÉSZLETES RÁCSA */
.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    padding: 3rem 2.5rem;
    height: 100%;
}

.service-icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail-card h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1; /* Biztosítja, hogy a gombok egy vonalban legyenek alul */
}

.benefit-list li {
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.8rem;
    color: var(--text-main);
}

/* Egyedi stílusú pipák a listához */
.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #0095ff;
    font-weight: bold;
}

.service-detail-card .btn-primary,
.service-detail-card .btn-secondary {
    display: block;
    width: 100%;
}

/* Kiemelt "popular" kártya egyedi finomítása */
.service-detail-card.popular {
    border-color: rgba(0, 149, 255, 0.25);
    background: rgba(0, 149, 255, 0.02);
}

.service-detail-card.popular .benefit-list li::before {
    color: #00c6ff;
}

/* Jogi szövegek belső címeinek stílusa */
.privacy-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}
.service-image-box {
    padding: 0 !important; /* A kép kitöltse a kártyát */
    overflow: hidden;
    position: relative;
    height: 300px; /* Vagy amekkora magasságot szeretnél */
}

.service-image-box img {
    transition: transform 0.5s ease; /* Finom nagyítási effekt hovernél */
}

.service-image-box:hover img {
    transform: scale(1.05);
}
/* Rögzítjük a gépelős szöveg helyét */
.typewriter {
    display: inline-block;
    min-width: 300px; /* Állítsd be a leghosszabb szöveged hosszának megfelelően */
    min-height: 1.2em; /* Biztosítja, hogy ne ugráljon a sortávolság */
    white-space: nowrap; /* Megakadályozza a tördelést gépelés közben */
}
/* Képkonténerek fix arányának rögzítése */
.service-image-box {
    aspect-ratio: 16 / 9; /* Vagy 4/3, attól függ milyen a kép */
    width: 100%;
    display: block;
}
/* A navigációs linkek közötti térköz növelése */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px; /* Ezt állítsd nagyobbra, ha van hely */
}

/* Linkek stílusa - finomabb megjelenés */
.nav-item-link {
    color: #cbd5e0; /* Kicsit halványabb fehér, kevésbé "kiabál" */
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-item-link:hover {
    color: #ffffff; /* Hovernél világosodjon ki */
}

/* Logo és szöveg igazítása */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: 700;
}
.glass-card {
    transform: none !important; /* Megállítja a 3D dőlést */
    transition: none !important; /* Megállítja a mozgást */
}
/* Eltünteti a kék sávot és az esetleges animációkat */
.preloader, .page-loader, .loader-wrapper {
    display: none !important;
}

/* Ha a kék sáv a body háttérszíne vagy egy fix elem */
body {
    background-color: #0d0d0d !important; /* Állítsd be a weboldalad tényleges háttérszínére */
}
.cookie-toast-custom {
    width: 90% !important;
    max-width: 600px !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    background: rgba(13, 21, 34, 0.95) !important;
    padding: 15px 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

/* Mobilon kicsit kisebb legyen */
@media (max-width: 600px) {
    .cookie-toast-custom {
        width: 95% !important;
    }
}
@media (max-width: 992px) {
    /* Elrejtjük alapesetben a navigációt mobilon */
    header .nav-links {
        display: none !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background-color: #0d1522 !important;
        padding: 20px !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.8) !important;
        z-index: 99999 !important;
    }

    /* Amikor a JavaScript ráteszi az "active"-ot, megjelenik */
    header .nav-links.active {
        display: flex !important;
    }
    
    /* Hogy a linkek egymás alatt legyenek és jól kattinthatók */
    header .nav-links a {
        padding: 10px 0 !important;
        text-align: center !important;
        width: 100% !important;
    }
}
/* ==========================================================================
   MOBIL NÉZET TÖKÉLETESÍTÉSE AZ INDEX.PHP-RE
   ========================================================================== */
@media (max-width: 992px) {
    /* 1. A szolgáltatások sorai (kép + szöveg) mobilon egymás alá kerüljenek */
    .service-row {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Fordított sorrendű soroknál is a kép legyen alul vagy felül konzisztensen */
    .service-row.reverse .service-image-box {
        order: unset !important;
    }
    .service-row.reverse .service-info-text {
        order: unset !important;
    }

    /* 2. A 3-as és 4-es rácsok (Előnyök, Folyamat lépések) egyszemélyes oszlopossá váljanak mobilon */
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* 3. Hero szekció címek méretének finomítása mobilon, hogy ne lógjanak ki */
    .hero-section {
        padding: 9rem 0 5rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 2.2rem !important;
        letter-spacing: -0.5px !important;
    }

    .hero-actions {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .hero-actions a {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* 4. Szekció címek és térközök arányosítása */
    .section-spacer {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
}
/* ==========================================================================
   18. ÁRKALKULÁTOR MOBIL OPTIMALIZÁLÁS ÉS STÍLUSOK
   ========================================================================== */
.calc-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    padding: 0 15px;
}

.calc-container {
    width: 100%;
    max-width: 1100px;
    padding: 35px;
    border-radius: 20px;
    background: #0d1522;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.calc-header {
    text-align: center;
    margin-bottom: 35px;
}

.calc-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 800;
}

.calc-subtitle {
    color: #94a3b8;
    font-size: 1.05rem;
}

.calc-category-card {
    margin-bottom: 30px;
    background: rgba(26, 42, 64, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 25px;
}

.calc-category-title {
    color: #0095ff;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.calc-service-item {
    padding: 16px;
    background: #131c2e;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color 0.2s;
}

.calc-service-item input[type="checkbox"] {
    margin-top: 5px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #0095ff;
    flex-shrink: 0;
}

.calc-service-icon {
    font-size: 1.2rem;
    color: #0095ff;
    margin-top: 2px;
    flex-shrink: 0;
}

.calc-service-label {
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    flex-grow: 1;
    color: #e2e8f0;
}

.calc-service-name {
    font-weight: 600;
    display: block;
    color: #fff;
    margin-bottom: 2px;
}

.calc-service-desc {
    display: block;
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 6px;
}

.calc-service-price {
    color: #38bdf8;
    font-size: 0.95em;
}

.calc-summary-box {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.08), rgba(0, 149, 255, 0.02));
    border: 1px solid rgba(0, 149, 255, 0.25);
    border-radius: 16px;
}

.calc-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.calc-summary-label {
    color: #94a3b8;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.calc-summary-count {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

.calc-summary-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0095ff;
    text-shadow: 0 0 20px rgba(0, 149, 255, 0.2);
}

.calc-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.calc-form-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-inputs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.calc-input-label {
    display: block;
    font-size: 0.85em;
    color: #94a3b8;
    margin-bottom: 6px;
    font-weight: 500;
}

/* reCAPTCHA reszponzivitás */
.recaptcha-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.calc-submit-btn {
    padding: 15px;
    font-size: 1.05rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 149, 255, 0.3);
}

.calc-note {
    color: #64748b;
    font-size: 0.85em;
    text-align: center;
    margin-top: 25px;
    line-height: 1.5;
}

.calc-legal {
    margin-top: 10px;
}

.calc-legal a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}
/* ==========================================================================
   DROPDOWN & MOBIL MENÜ FIX
   ========================================================================== */

/* A gomb kinézetének igazítása a többi linkhez */
.dropdown-toggle-btn {
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

/* MOBIL NÉZET FIX (992px alatt) */
@media (max-width: 992px) {
    /* Stabilizáljuk a mobil menüt, hogy ne tudjon se jobbra, se balra elcsúszni */
    .nav-links.active,
    .nav-links {
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        box-sizing: border-box !important;
    }

    .nav-dropdown {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .dropdown-toggle-btn {
        justify-content: center !important;
        width: 100% !important;
    }

    /* A lenyíló kártya beépül a mobil menübe */
    .nav-dropdown .dropdown-menu {
        display: none;
        position: static !important;
        width: 80% !important;
        max-width: 240px !important;
        margin: 12px auto 5px auto !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        padding: 10px !important;
        box-shadow: none !important;
    }

    .nav-dropdown.open .dropdown-menu {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .dropdown-item {
        justify-content: center !important;
        padding: 8px 12px !important;
    }
}

/* ASZTALI NÉZET (993px felett) */
@media (min-width: 993px) {
    .nav-dropdown {
        position: relative !important;
        display: inline-block !important;
    }

    .nav-dropdown .dropdown-menu {
        display: none;
        position: absolute !important;
        top: calc(100% + 15px) !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        min-width: 180px !important;
        background: #0f172a !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        padding: 8px !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
        z-index: 1000 !important;
    }

    .nav-dropdown.open .dropdown-menu {
        display: flex !important;
        flex-direction: column !important;
    }
}
/* ==========================================================================
   MOBIL MENÜ GÖRGETÉS ÉS SZÍNEZÉS FIX
   ========================================================================== */

@media (max-width: 992px) {
    /* 1. GÖRGETÉS ÉS POZÍCIÓ FIX: A mobilmenü görgethetővé tétele */
    .nav-links,
    #navLinks {
        position: fixed !important;
        top: 70px !important; /* A fejléc magassága alá igazítva */
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important; /* BIZTOSÍTJA A FÜGGŐLEGES GÖRGETÉST */
        overflow-x: hidden !important;
        padding-bottom: 40px !important; /* Hogy az alja se vágódjon le */
        box-sizing: border-box !important;
        transform: none !important;
    }

    /* 2. KÖZÉPRE IGAZÍTÁS */
    .nav-dropdown {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* 3. LENYÍLÓ KÁRTYA STÍLUS ÉS OLVASHATÓ BETŰSZÍNEK */
    .nav-dropdown .dropdown-menu {
        display: none;
        position: static !important;
        width: 85% !important;
        max-width: 260px !important;
        margin: 15px auto !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 12px !important;
        padding: 8px !important;
        box-shadow: none !important;
    }

    .nav-dropdown.open .dropdown-menu {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
    }

    /* KÉK BETŰK ÁTÍRÁSA FEHÉRRE */
    .dropdown-menu .dropdown-item,
    .dropdown-menu a {
        color: #ffffff !important; /* Hófehér szöveg a sötét háttéren */
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 10px 14px !important;
        font-size: 0.95rem !important;
        border-radius: 8px !important;
    }

    /* Kijelentkezés gomb piros kiemelése */
    .dropdown-menu .dropdown-item.logout-link,
    .dropdown-menu a[href*="logout"] {
        color: #f87171 !important;
    }
}
/* ==========================================================================
   DROPDOWN BEÁLLÍTÁSOK GÉPRE ÉS MOBILRA IS (EGYSÉGES DESIGN)
   ========================================================================== */

/* A Fiók elem konténere */
.nav-dropdown {
    position: relative !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* A kinyíló kis kártya doboz */
.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important; /* Pontosan a Fiók gomb közepe alá igazítja */
    min-width: 200px !important;
    background: #0f172a !important; /* Elegáns sötétkék/fekete háttér */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    padding: 8px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
    z-index: 9999 !important;
}

/* Nyitott állapotban megjelenítés */
.nav-dropdown.open .dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

/* GOMBOK ÉS BETŰK FEHÉR SZÍNE (Gépen és Mobilon is) */
.dropdown-menu .dropdown-item,
.dropdown-menu a {
    color: #ffffff !important; /* Fehér felirat */
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Balra zárt gomb szövegek */
    gap: 10px !important;
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
    transition: background 0.2s ease !important;
}

/* Egérrávitel (hover) effektek gépen */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

/* Kijelentkezés gomb piros színe */
.dropdown-menu .dropdown-item.logout-link,
.dropdown-menu a[href*="logout"] {
    color: #f87171 !important;
}

.dropdown-menu a[href*="logout"]:hover {
    background: rgba(248, 113, 113, 0.15) !important;
}