/* ==========================================================================
   CSS Változók és Alapok
   ========================================================================== */
:root {
    --primary-color: #2b3e5a;
    --secondary-color: #367fa9;
    --brand-blue: #006bb3; 
    --accent-color: #f39c12; 
    --text-dark: #333333;
    --text-light: #6d6e71;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --drip-height: 50px; 
}

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

/* 1. A HTML-nek adjunk fix keretet, de engedjük a görgetést */
html { 
    scroll-behavior: smooth;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
}

/* 2. A Body beállítása - modern megoldás a sima görgetésért */
body { 
    font-family: 'Poppins', sans-serif; 
    color: var(--text-dark); 
    line-height: 1.6; 
    background-color: var(--white); 
    position: relative; 
    width: 100%;
    overflow-x: clip; 
    -webkit-overflow-scrolling: touch; /* Kényszeríti az iPhone-t a sima görgetésre */
}

/* 3. A szekciók biztonsági beállítása az akadások elkerülésére */
.hero, .site-footer, .section {
    width: 100%;
    position: relative;
}

/* Opcionális AOS fix, hogy az animált elemek ne tolják ki az oldalt */
[data-aos] { pointer-events: none; }
.aos-animate { pointer-events: auto; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.fixed-cta a:hover { filter: brightness(1.15); }

/* ==========================================================================
   Layout & Tipográfia
   ========================================================================== */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: var(--spacing-lg) 0; }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-brand-blue { color: var(--brand-blue) !important; }
.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }

h1, h2, h3, h4 { color: var(--primary-color); margin-bottom: var(--spacing-sm); font-weight: 700; }
h2.section-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); margin-bottom: var(--spacing-md); }
.grid { display: grid; gap: var(--spacing-md); }

.card {
    background: var(--white); padding: var(--spacing-md); border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

/* ==========================================================================
   Gombok (CTA)
   ========================================================================== */
.btn {
    display: inline-block; padding: 16px 36px; border-radius: 50px; font-weight: 700;
    font-size: 1.1rem; cursor: pointer; border: 2px solid transparent; transition: var(--transition); text-align: center;
}

.btn-primary { 
    background-color: #006bb3; 
    color: var(--white); 
    box-shadow: 0 4px 15px rgba(0, 107, 179, 0.3); 
}
.btn-primary:hover { 
    transform: scale(1.05); 
    box-shadow: 0 6px 20px rgba(0, 107, 179, 0.5); 
    color: var(--white); 
}

.btn-outline { 
    background-color: transparent !important; 
    border-color: #006bb3; 
    color: #006bb3; 
}
.btn-outline:hover { 
    background-color: #006bb3 !important; 
    color: var(--white); 
}

.w-100 { width: 100%; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* ==========================================================================
   Header, Logó & Asztali Navigáció
   ========================================================================== */
.site-header {
    background-color: rgba(255, 255, 255, 0.98); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    padding: 10px 0; 
    transition: all 0.4s ease; 
}

.site-header.scrolled {
    padding: 0px 0; 
    background-color: rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(5px); 
}

.site-header.scrolled .logo img {
    width: 85px; 
}
.header-inner {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    position: relative;
    min-height: 60px; 
}
.logo {
    position: absolute;
    left: 0;
    top: 5px;   
    z-index: 1100;
    transform: none; 
}
.logo a { display: block; line-height: 0; }
.logo img {
    width: 130px; 
    height: auto;
    display: block;
}

.main-nav ul { display: flex; gap: 1.5rem; }
.main-nav a { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); text-transform: uppercase; }
.main-nav a:hover { color: var(--brand-blue); }
.hamburger-btn { display: none; background: transparent; border: none; font-size: 1.8rem; color: var(--primary-color); cursor: pointer; }

/* ==========================================================================
   Hero Szekció
   ========================================================================== */
.hero {
    position: relative; height: 90vh; min-height: 700px; display: flex; align-items: center;
    background: url('images/hero.webp') center/cover no-repeat; z-index: 1; 
}
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.1) 100%);
}
.hero-content {
    position: relative; z-index: 1; color: var(--text-dark); max-width: 700px;
    text-align: left; margin-left: 5%;
}
.hero-title { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; color: #111827; margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero-subtitle { font-size: 1.25rem; color: #4b5563; margin-bottom: 2.5rem; max-width: 600px; }
.hero-buttons { display: flex; gap: 1rem; justify-content: flex-start; }

.hero-buttons .btn-outline { border-color: var(--brand-blue); color: var(--brand-blue); }
.hero-buttons .btn-outline:hover { background-color: var(--brand-blue); color: var(--white); }
/* Hero közösségi ikonok stílusa */
.hero-social-links {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-text {
    font-size: 14px;
    color: #555; /* Vagy fehér, ha a háttér sötét */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Egyedi színek hover (rámutatás) esetén */
.hero-social-icon.fb:hover {
    background-color: #3b5998;
    color: #fff;
    transform: translateY(-5px);
}

.hero-social-icon.ins:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #fff;
    transform: translateY(-5px);
}

.hero-social-icon.yt:hover {
    background-color: #cd201f;
    color: #fff;
    transform: translateY(-5px);
}

/* Animáció, hogy finoman mozogjanak */
@keyframes hoverFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

.hero-social-icon:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Előtte-Utána Csúszka
   ========================================================================== */
.ba-slider-container {
    position: relative; width: 100%; max-width: 900px; height: 500px; margin: 0 auto; overflow: hidden;
    border-radius: 1rem; box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
}
.img-background, .img-foreground { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.img-background img, .img-foreground img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.img-foreground { width: 50%; overflow: hidden; border-right: 4px solid var(--white); }
.label {
    position: absolute; bottom: 20px; padding: 8px 16px; background: rgba(43, 62, 90, 0.8);
    color: var(--white); font-weight: 600; border-radius: 4px; font-size: 0.9rem;
}
.label-before { left: 20px; } .label-after { right: 20px; }

.slider {
    position: absolute; -webkit-appearance: none; appearance: none; width: 100%; height: 100%;
    background: transparent; outline: none; margin: 0; top: 0; left: 0; z-index: 10; cursor: ew-resize;
}
.slider::-webkit-slider-thumb { -webkit-appearance: none; width: 3px; height: 500px; background: transparent; }
.slider-button {
    position: absolute; top: calc(50% - 24px); left: calc(50% - 24px); width: 48px; height: 48px;
    background: var(--white); border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.3); pointer-events: none;
    z-index: 5; display: flex; align-items: center; justify-content: center;
}
.slider-button::after { content: '< >'; font-weight: bold; color: var(--brand-blue); font-size: 1.2rem; letter-spacing: -2px; }

/* ==========================================================================
   Szolgáltatások, Bemutatkozás
   ========================================================================== */
.services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.service-card { text-align: center; border-top: 4px solid var(--brand-blue); }
.service-icon { font-size: 2.5rem; color: var(--brand-blue); margin-bottom: 1rem; }

.about-grid { 
    grid-template-columns: 1.5fr 1fr; 
    align-items: center; 
    gap: 4rem; 
}

.about-image {
    display: inline-block;
    border-radius: 1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 15px 15px 0px var(--brand-blue); 
    display: block; 
}
.about-list { margin-top: 1.5rem; }
.about-list li { margin-bottom: 0.8rem; font-weight: 600; }
.about-list i { margin-right: 10px; color: var(--brand-blue); }

/* ==========================================================================
   Vélemények (Prémium Dizájn)
   ========================================================================== */
.reviews-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px; 
}

.reviews-swiper {
    width: 100%;
    overflow: hidden; 
    padding: 2rem 0;
	height: auto !important;
}
.reviews-swiper .swiper-wrapper {
    align-items: flex-start;
	height: auto !important;
}


.swiper-slide.review-card {
    height: auto; 
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06); 
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: none; 
}

.swiper-slide.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.15); 
}

.swiper-slide.review-card::before {
    content: '\f10d'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 6rem;
    color: rgba(0, 136, 204, 0.04); 
    z-index: 0;
}

.review-header, .review-text, .review-author {
    position: relative;
    z-index: 1; 
}

.review-header { 
    display: flex; justify-content: space-between; align-items: center; 
    margin-bottom: 1.5rem; 
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05); 
}

.review-text { 
    font-style: italic; 
    margin-bottom: 1.5rem; 
    font-size: 0.95rem; 
    line-height: 1.7;
    color: #4b5563;
    flex-grow: 1; 
}

.review-author { 
    font-weight: 700; 
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-author::before {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--white); 
    background: var(--brand-blue); 
    width: 45px; 
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3); 
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    transition: all 0.3s ease;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem; 
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-next { right: 0; } 
.swiper-button-prev { left: 0; }  

/* ==========================================================================
   Űrlapok & Kalkulátor
   ========================================================================== */
.calc-container { max-width: 800px; margin: 0 auto; text-align: left; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; }

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
    width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Poppins', sans-serif;
    background-color: var(--white); font-size: 1rem; color: var(--text-dark);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 5px rgba(0, 136, 204, 0.3); }

.tooltip { position: relative; display: inline-block; cursor: help; margin-left: 5px; }
.tooltip .tooltiptext {
    visibility: hidden; width: 250px; background-color: #333; color: #fff; text-align: center;
    border-radius: 6px; padding: 10px; position: absolute; z-index: 1; bottom: 125%;
    left: 50%; margin-left: -125px; opacity: 0; transition: opacity 0.3s;
    font-size: 0.85rem; font-weight: normal; font-family: 'Poppins', sans-serif; line-height: 1.4;
}
.tooltip .tooltiptext::after {
    content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px;
    border-width: 5px; border-style: solid; border-color: #333 transparent transparent transparent;
}
.tooltip:hover .tooltiptext { visibility: visible; opacity: 1; }

.calc-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.calc-table th, .calc-table td { padding: 12px 15px; border-bottom: 1px solid #eee; }
.calc-table thead th { background-color: var(--brand-blue); color: white; font-weight: 600; }
.calc-table tbody tr:hover { background-color: var(--bg-light); }

.contact-grid { grid-template-columns: 1fr 1fr; }
.contact-list li { margin-bottom: 1rem; font-size: 1.1rem; }
.contact-list i { width: 25px; color: var(--brand-blue); }

/* ==========================================================================
   PRÉMIUM FOOTER STÍLUSOK
   ========================================================================== */
.site-footer {
    background-color: #0A1927; 
    color: #E0E4E8;
    padding-top: 0; 
    position: relative;
    margin-top: var(--spacing-lg);
}

.footer-drip {
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%230A1927"/></svg>') no-repeat top center;
    background-size: cover;
    position: relative;
    top: -1px; 
    margin-bottom: -1px;
}

.bottom-drip {
    background-color: var(--brand-blue) !important;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 3rem 0 2rem;
}

.footer-logo-img {
    max-width: 160px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #B0B7BC;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #E0E4E8;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover { transform: translateY(-3px); color: #fff; }
.social-icon[aria-label="Facebook"]:hover { background-color: #1877F2; border-color: #1877F2; box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3); }
.social-icon[aria-label="Instagram"]:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.social-icon[aria-label="Google Maps"]:hover { background-color: #DB4437; border-color: #DB4437; box-shadow: 0 5px 15px rgba(219, 68, 55, 0.3); }

.footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--brand-blue);
    border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
    color: #B0B7BC; text-decoration: none; transition: all 0.2s ease;
    display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem;
}
.footer-links a i { font-size: 0.8rem; transition: transform 0.2s ease; color: var(--brand-blue); }
.footer-links a:hover { color: #ffffff; transform: translateX(5px); }
.footer-links a:hover i { transform: translateX(3px); }

.footer-contact-list { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.footer-contact-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-size: 0.95rem; color: #B0B7BC; }
.footer-contact-list li i { width: 20px; color: var(--brand-blue); font-size: 1rem; }
.footer-contact-list a { color: #B0B7BC; text-decoration: none; transition: color 0.2s ease; }
.footer-contact-list a:hover { color: #ffffff; }

.footer-map {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-map:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }

.footer-bottom {
    background-color: #0A1927; padding: 1.5rem 0; text-align: center;
    margin-top: 1rem; font-size: 0.85rem; color: #8A9298;
}
.footer-bottom p { margin: 0; }

/* ==========================================================================
   Blog és Cikk Kártyák (SPA)
   ========================================================================== */
.blog-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; }
.blog-image { width: 100%; height: 220px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-image img { transform: scale(1.1); }
.blog-content { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.blog-content h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--primary-color); }
.blog-content p { color: var(--text-light); margin-bottom: 1.5rem; flex-grow: 1; }

.read-more {
    color: var(--brand-blue); font-weight: 700; text-transform: uppercase; font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s ease, color 0.3s ease;
}
.blog-card:hover .read-more { gap: 0.8rem; color: var(--primary-color); }

.view-container { transition: opacity 0.4s ease-in-out; }

.article-container {
    max-width: 800px; margin: 0 auto; background: var(--white); padding: 3rem;
    border-radius: 12px; margin-top: -80px; position: relative; z-index: 10;
}
.article-content p { font-size: 1.15rem; line-height: 1.8; color: #4b5563; margin-bottom: 1.8rem; }
.article-content p:first-of-type::first-letter {
    font-size: 3.5rem; font-weight: 800; color: var(--brand-blue); float: left;
    line-height: 1; margin-right: 10px; margin-top: -5px;
}

.back-to-blog {
    display: inline-flex; align-items: center; gap: 10px; color: var(--brand-blue); font-weight: 600;
    text-transform: uppercase; margin-bottom: 2rem; background: transparent; border: none;
    cursor: pointer; font-size: 1rem; font-family: inherit; transition: gap 0.3s ease, color 0.3s ease; padding: 0;
}
.back-to-blog:hover { gap: 15px; color: var(--primary-color); }

/* ==========================================================================
   Előtte-Utána Csúszka (Tiszta CSS, Tailwind nélkül)
   ========================================================================== */
.comparison-slider {
    position: relative; width: 100%; max-width: 900px; height: 500px; margin: 0 auto;
    overflow: hidden; border-radius: 1rem; box-shadow: 0 20px 40px rgba(0,0,0,0.2); user-select: none;
}
.comparison-item { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.after-image { clip-path: inset(0 0 0 50%); z-index: 2; }
.slider-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background-color: white;
    cursor: ew-resize; z-index: 10; transform: translateX(-50%);
}
.slider-button-inner {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px;
    background-color: white; border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
}
.slider-input {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 20; margin: 0;
}

/* ==========================================================================
   MÉDIA LEKÉRDEZÉSEK / RESZPONZIVITÁS (Összevonva a fájl végén)
   ========================================================================== */

/* --- TABLET NÉZET (992px-ig) --- */
@media (max-width: 992px) {
    /* Szolgáltatások / Rólunk / Kapcsolat */
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-image { margin-top: 2rem; }
    
    /* Hero */
    .hero-title { font-size: 2.8rem; }
    .hero-content { text-align: center; margin: 0 auto; }
    .hero-buttons { justify-content: center; }

    /* Navigáció */
    .hamburger-btn { display: block; }
    .main-nav {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background-color: var(--white); box-shadow: 0 10px 15px rgba(0,0,0,0.1); z-index: 999;
    }
    .main-nav.active { display: block; }
    .main-nav ul { 
        flex-direction: column; 
        gap: 0; 
        padding-top: 85px; 
        padding-bottom: 20px; 
    }
    .main-nav ul li { width: 100%; text-align: center; border-top: 1px solid #eee; }
    .main-nav a { display: block; padding: 15px 0; }
    .logo { transform: translateY(1px); } 

    /* Footer */
    .footer-grid {
        gap: 2rem;
        padding: 2rem 0;
    }
    .footer-title::after {
        width: 30px;
    }
}

/* --- MOBIL NÉZET (768px-ig) --- */
@media (max-width: 768px) {
    /* Előtte-utána képek (mindkét verzió) */
    .ba-slider-container { height: 300px; }
    .slider::-webkit-slider-thumb { height: 300px; }
    .comparison-slider { height: 300px; }

    /* Hero */
    .hero-buttons { flex-direction: column; width: 100%; align-items: center; }
    .hero-buttons .btn { width: 100%; }
    
    /* Rólunk */
    .about-image img { max-width: 90%; margin: 0 auto; } 
    
    /* Kalkulátor */
    .calc-container .grid, .calc-container .grid-cols-2 { grid-template-columns: 1fr !important; gap: 0; }
    .calc-table th, .calc-table td { padding: 10px; font-size: 0.9rem; }

    /* Vélemények (Swipe & Nyilak fix) */
    .reviews-wrapper { padding: 0 15px; }
    .swiper-slide.review-card { padding: 2rem 1.5rem; }
    .swiper-button-next, .swiper-button-prev { 
        display: flex !important; 
        width: 35px; 
        height: 35px; 
    }
    .swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .footer-logo-img { margin-left: auto; margin-right: auto; }
    .social-links { justify-content: center; }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    .footer-contact-list li { justify-content: center; }
    .footer-links a { justify-content: center; }
    .footer-map {
        max-width: 300px;
        margin: 1rem auto 0;
    }

    /* Blog & Cikkek */
    .article-container { padding: 1.5rem; margin-top: -40px; }
    .article-content p { font-size: 1.05rem; }
}