/* ==========================================================================
   Dizájn Rendszer és Globális Stílusok
   ========================================================================== */
:root {
    /* Harmonikus Színpaletta */
    --color-bg-darker: #07080a;     /* Nagyon sötét fekete */
    --color-bg-dark: #0a0b0d;       /* Alap sötét háttér */
    --color-bg-card: #121418;       /* Kártyák sötét háttérszíne */
    --color-bg-card-hover: #171b22; /* Kártya hover háttér */
    
    --color-cyan: #00e5ff;          /* Ragyogó ciánkék */
    --color-cyan-hover: #00b8d4;    /* Sötétebb ciánkék hover */
    --color-cyan-glow: rgba(0, 229, 255, 0.15); /* Cián fényudvar */
    
    --color-text-white: #ffffff;    /* Fő fehér szöveg */
    --color-text-muted: #9fa8b6;    /* Halvány tompa szöveg */
    --color-text-light: #e1f5fe;    /* Kiemelt jégkék szöveg */
    
    --color-border: rgba(255, 255, 255, 0.06);       /* Finom kártya keret */
    --color-border-hover: rgba(0, 229, 255, 0.3);   /* Ciánkék kiemelő keret */
    
    /* Tipográfia */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Átmenetek */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-quick: all 0.15s ease-out;
}

/* Alapbeállítások reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Segédosztályok */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-cyan {
    color: var(--color-cyan) !important;
}

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

.section-padding {
    padding: 100px 0;
}

.dark-section {
    background-color: var(--color-bg-darker);
}

/* ==========================================================================
   Navigáció és Fejléc
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 8px 0;
    background-color: rgba(7, 8, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 64px;
}

/* Logó Terület */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 48px;
    width: auto;
    transition: var(--transition-smooth);
}

.main-header.scrolled .nav-logo {
    height: 38px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-text-white);
    font-family: var(--font-heading);
    line-height: 1;
}

.brand-sub {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-cyan);
    line-height: 1.2;
}

/* Navigációs Linkek */
.main-nav ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-cyan);
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px var(--color-cyan);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* CTA gombok a Fejlécben */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(0, 229, 255, 0.02));
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--color-cyan);
    font-weight: 600;
    font-size: 15px;
}

.phone-cta i {
    font-size: 14px;
    animation: pulse-phone 2s infinite;
}

.phone-cta:hover {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 229, 255, 0.05));
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
    color: var(--color-text-white);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-white);
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================================================
   Gombok
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan), #00b8d4);
    color: #050608;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 229, 255, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--color-text-white);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   Hero Szekció
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--color-text-white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-lead {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-text-light);
    margin-bottom: 36px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-white);
    font-weight: 500;
}

.feature-item i {
    font-size: 18px;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}

/* ==========================================================================
   Gyors Információk / Értékajánlatok
   ========================================================================== */
.quick-info-section {
    position: relative;
    z-index: 5;
    margin-top: -50px; /* Belóg a hero aljába */
}

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

.info-card {
    background: linear-gradient(145deg, var(--color-bg-card), var(--color-bg-card-hover));
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-hover);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.08);
}

.info-icon-box {
    width: 56px;
    height: 56px;
    background-color: rgba(0, 229, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    font-size: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   Szekció Fejlécek
   ========================================================================== */
.section-header {
    max-width: 680px;
    margin: 0 auto 60px auto;
}

.sub-title {
    color: var(--color-cyan);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 20px;
}

.header-bar {
    width: 60px;
    height: 3px;
    background-color: var(--color-cyan);
    margin: 0 auto 24px auto;
    border-radius: 2px;
    box-shadow: 0 0 8px var(--color-cyan);
}

.section-desc {
    font-size: 16px;
}

/* ==========================================================================
   Szolgáltatások Szekció
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 40px 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    background-color: var(--color-bg-card-hover);
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.05), inset 0 0 12px rgba(255, 255, 255, 0.02);
}

.service-img-wrapper {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-custom-icon {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-bullets {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-white);
    margin-bottom: 8px;
}

.service-bullets li:last-child {
    margin-bottom: 0;
}

.service-bullets i {
    color: var(--color-cyan);
    font-size: 12px;
}

/* ==========================================================================
   Előtte / Utána Szekció
   ========================================================================== */
.slider-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Alapértelmezett vágás (középen, 50%) */
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    transition: clip-path 0.05s linear;
}

/* Feliratok a csúszkán */
.slider-label {
    position: absolute;
    bottom: 20px;
    background-color: rgba(7, 8, 10, 0.8);
    backdrop-filter: blur(4px);
    color: var(--color-text-white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 5;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.label-before {
    right: 20px;
}

.label-after {
    left: 20px;
    color: var(--color-cyan);
    border-color: rgba(0, 229, 255, 0.2);
}

/* Csúszka Fogantyú */
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; /* Alapbeállítás */
    width: 4px;
    background-color: var(--color-cyan);
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
    transform: translateX(-50%);
}

.handle-line {
    width: 2px;
    height: 100%;
    background-color: var(--color-cyan);
}

.handle-button {
    width: 44px;
    height: 44px;
    background-color: var(--color-bg-darker);
    border: 2px solid var(--color-cyan);
    border-radius: 50%;
    color: var(--color-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4), inset 0 0 8px rgba(0, 229, 255, 0.2);
    font-size: 16px;
    cursor: ew-resize;
    transition: background-color 0.2s;
}

.slider-handle:hover .handle-button,
.slider-handle:active .handle-button {
    background-color: var(--color-cyan);
    color: var(--color-bg-darker);
}

/* ==========================================================================
   Árak Szekció
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.price-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.price-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Kiemelt csomag */
.price-card.featured {
    border-color: var(--color-cyan-hover);
    background: linear-gradient(180deg, rgba(18, 20, 24, 1) 0%, rgba(10, 11, 13, 0.95) 100%);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.05);
    transform: translateY(-8px);
}

.price-card.featured:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 20px 45px rgba(0, 229, 255, 0.1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-cyan);
    color: #050608;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-header h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

.price-value {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 24px;
}

.price-value .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text-white);
    font-family: var(--font-heading);
    line-height: 1;
}

.price-value .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-cyan);
    margin-left: 4px;
    margin-right: 8px;
}

.price-value .unit {
    font-size: 14px;
    color: var(--color-text-muted);
}

.price-intro {
    font-size: 14px;
    margin-bottom: 24px;
    min-height: 44px;
}

.price-body {
    flex-grow: 1;
}

.price-body ul {
    margin-bottom: 32px;
}

.price-body li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-white);
    margin-bottom: 12px;
}

.price-body li i {
    font-size: 14px;
}

.price-body li strong {
    color: var(--color-cyan);
}

.pricing-note {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 40px auto 0 auto;
}

/* ==========================================================================
   Lefedettség / Kereső Szekció
   ========================================================================== */
.checker-container {
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.search-box {
    display: flex;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 6px;
    position: relative;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-box:focus-within {
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

.search-icon {
    position: absolute;
    left: 20px;
    color: var(--color-text-muted);
    font-size: 18px;
}

.search-box input {
    flex-grow: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 16px;
    padding: 12px 12px 12px 48px;
}

.search-box input::placeholder {
    color: rgba(159, 168, 182, 0.6);
}

.search-box button {
    background: linear-gradient(135deg, var(--color-cyan), #00b8d4);
    border: none;
    color: #050608;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-quick);
}

.search-box button:hover {
    filter: brightness(1.1);
}

.checker-result {
    margin-top: 16px;
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.checker-result.success {
    background-color: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.3);
    color: #81c784;
}

.checker-result.error {
    background-color: rgba(198, 40, 40, 0.1);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #e57373;
}

.popular-cities {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.popular-cities h4 {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

.cities-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.city-tag {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition-quick);
}

.city-tag:hover {
    background-color: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.3);
    color: var(--color-cyan);
}

/* ==========================================================================
   Kapcsolat és Űrlap Szekció
   ========================================================================== */

.contact-info .sub-title {
    margin-bottom: 12px;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 24px;
}

.contact-intro {
    font-size: 16px;
    margin-bottom: 40px;
}


.business-hours {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 20px 24px;
    display: inline-block;
}

.business-hours h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-cyan);
    margin-bottom: 8px;
}

.business-hours p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Kapcsolat Űrlap */
/* Kapcsolat Kártyák */
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 45px;
    width: 100%;
}

.details-card {
    background: linear-gradient(145deg, var(--color-bg-card), var(--color-bg-card-hover));
    border: 1px solid var(--color-border);
    padding: 40px 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.details-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.08);
}

.details-card .icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    color: var(--color-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.05);
}

.details-card .details-text span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-cyan);
    margin-bottom: 10px;
    font-weight: 600;
}

.details-card .details-text a {
    color: var(--color-text-white);
    font-size: 18px;
    font-weight: 700;
    word-break: break-all;
    transition: var(--transition-quick);
}

.details-card .details-text a:hover {
    color: var(--color-cyan);
}

.details-card .details-text p {
    color: var(--color-text-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* ==========================================================================
   Lábléc
   ========================================================================== */
.main-footer {
    background-color: var(--color-bg-darker);
    border-top: 1px solid var(--color-border);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand .logo-area {
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.brand-slogan {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

/* Közösségi média ikonok a láblécben */
.footer-social {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.social-icon-link:hover {
    color: #050608;
    background-color: var(--color-cyan);
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-cyan);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-cyan);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact i {
    margin-right: 8px;
    font-size: 13px;
    width: 16px;
}

.footer-contact a:hover {
    color: var(--color-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
}

/* ==========================================================================
   Animációk
   ========================================================================== */
@keyframes pulse-phone {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); text-shadow: 0 0 10px var(--color-cyan); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Reszponzív Beállítások (Responsive Media Queries)
   ========================================================================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .header-container {
        height: 70px;
    }
    
    /* Mobil Menü */
    .mobile-nav-toggle {
        display: block;
        z-index: 1010;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-bg-darker);
        border-left: 1px solid var(--color-border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 100px 40px 40px 40px;
        transition: var(--transition-smooth);
        z-index: 1005;
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 18px;
        display: block;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .phone-cta span {
        display: none; /* Mobilon csak a telefon ikon látszik vagy eltérő méretek */
    }
    .phone-cta {
        padding: 10px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
    
    /* Hero */
    .hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .hero-actions-btns {
        flex-direction: column;
    }
    
    .hero-actions-btns .btn {
        width: 100%;
    }
    
    /* Slider Magasság mobilra */
    .comparison-slider {
        height: 350px;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 480px) {
    .comparison-slider {
        height: 250px;
    }
    
    .slider-label {
        bottom: 10px;
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .label-before { right: 10px; }
    .label-after { left: 10px; }
}

/* ==========================================================================
   GYIK (FAQ) Accordion - Premium Glassmorphism Design
   ========================================================================== */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--color-cyan-hover);
    background: linear-gradient(180deg, rgba(18, 20, 24, 0.98) 0%, rgba(10, 11, 13, 0.95) 100%);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.05), inset 0 0 15px rgba(255, 255, 255, 0.01);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: none;
    border: none;
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-quick);
    gap: 20px;
}

.faq-question span {
    flex-grow: 1;
    line-height: 1.4;
}

.faq-question .icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item:hover .icon-container {
    color: var(--color-text-white);
}

.faq-item.active .icon-container {
    color: var(--color-text-white);
}

.faq-question .icon-container i {
    font-size: 13px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .icon-container i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 32px 28px 32px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 20px;
}

/* ==========================================================================
   Tapadó Mobil Hívássáv (Sticky Mobile Call Bar)
   ========================================================================== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 8, 10, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border);
    padding: 14px 20px;
    z-index: 999;
    display: none;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px; /* Hely a lebegő gombnak */
    }
}

/* ==========================================================================
   Promóciós Modál (INDULÁSI AKCIÓ)
   ========================================================================== */
.promo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.promo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-modal {
    position: relative;
    background: linear-gradient(170deg, #121418 0%, #0d0f13 40%, #0a0b0d 100%);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 24px;
    padding: 48px 40px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 229, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.promo-modal-overlay.active .promo-modal {
    transform: scale(1) translateY(0);
}

/* Dekoratív hópelyhek a háttérben */
.promo-modal-snowflakes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.promo-modal-snowflakes .flake {
    position: absolute;
    color: rgba(0, 229, 255, 0.06);
    animation: floatFlake 6s ease-in-out infinite;
}

.flake-1 {
    font-size: 80px;
    top: -10px;
    right: -15px;
    animation-delay: 0s !important;
}

.flake-2 {
    font-size: 50px;
    bottom: 20px;
    left: -10px;
    animation-delay: 2s !important;
}

.flake-3 {
    font-size: 35px;
    top: 50%;
    right: 10%;
    animation-delay: 4s !important;
}

@keyframes floatFlake {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.06; }
    50% { transform: translateY(-15px) rotate(90deg); opacity: 0.12; }
}

/* Bezáró gomb */
.promo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.promo-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-white);
    border-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Akció badge */
.promo-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
    border: 1px solid rgba(0, 229, 255, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--color-cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 229, 255, 0.1); }
    50% { box-shadow: 0 0 25px rgba(0, 229, 255, 0.25); }
}

/* Cím */
.promo-modal-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text-white);
    margin-bottom: 28px;
    line-height: 1.3;
}

/* Ár kijelző */
.promo-modal-price {
    margin-bottom: 28px;
    position: relative;
}

.promo-old-price {
    display: block;
    font-size: 16px;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
    opacity: 0.6;
}

.promo-new-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.promo-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-text-white);
    font-family: var(--font-heading);
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.promo-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-cyan);
}

.promo-unit {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-left: 4px;
}

/* Feature lista */
.promo-modal-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.promo-modal-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-white);
}

.promo-modal-features li i {
    color: var(--color-cyan);
    font-size: 13px;
}

/* Motiváló szöveg */
.promo-modal-note {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    font-style: italic;
    line-height: 1.5;
}

/* CTA gombok */
.promo-modal-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.promo-modal-actions .btn {
    flex: 1;
    padding: 14px 20px;
}

/* Brand aláírás */
.promo-modal-brand {
    font-size: 12px;
    color: rgba(0, 229, 255, 0.4);
    letter-spacing: 1px;
    font-weight: 500;
}

.promo-modal-brand i {
    margin-right: 4px;
    animation: pulse-phone 3s infinite;
}

/* Reszponzív modál */
@media (max-width: 540px) {
    .promo-modal {
        padding: 40px 24px 32px;
        border-radius: 20px;
    }

    .promo-modal-title {
        font-size: 22px;
    }

    .promo-amount {
        font-size: 44px;
    }

    .promo-currency {
        font-size: 22px;
    }

    .promo-modal-actions {
        flex-direction: column;
    }

    .promo-modal-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
     }
}

/* ==========================================================================
   Toast Értesítés (Fejlesztés alatt)
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(18, 20, 24, 0.95);
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15), 0 5px 15px rgba(0, 0, 0, 0.5);
    padding: 16px 28px;
    border-radius: 50px;
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 90%;
    width: max-content;
    text-align: center;
}

.toast-container.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--color-cyan);
    font-size: 18px;
}

@media (max-width: 768px) {
    .toast-container {
        bottom: 80px; /* Helyet hagyunk a tapadó mobil hívógomb felett */
        padding: 12px 20px;
        font-size: 13px;
    }
}

