/* ============================================================
   tanusitvanykeszites.hu – Fő Stíluslap
   Design: Shaper Hope sablon hű másolata
   Szín: #006964 teal, #949494 szürke szöveg, #fff háttér
   Betűtípus: Poppins (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- Reset és alap --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #949494;
    background-color: #ffffff;
    line-height: 1.7;
}

a {
    color: #006964;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #003633;
}

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    font-weight: 700;
    line-height: 1.3;
}

p { margin-bottom: 1em; }

/* --- Konténer --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   HEADER / NAVIGÁCIÓ
   ============================================================ */
#sp-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 56px;
    width: auto;
    transition: height 0.2s ease;
}

.site-logo-text {
    font-size: 17px;
    font-weight: 700;
    color: #222222;
    line-height: 1.25;
}

.site-logo-text span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #006964;
}

/* Fő navigáció */
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: color 0.2s;
    white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
    color: #006964;
}

/* Dropdown */
.main-nav .has-dropdown {
    position: relative;
}

.main-nav .has-dropdown > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 250px;
    border-top: 2px solid #006964;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    z-index: 200;
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #555555;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: #006964;
    color: #ffffff;
}

/* Hamburger gomb (mobilon) */
.menu-toggle,
.nav-mobile-info {
    display: none;
}

.hamburger-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: #555555;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ============================================================
/* ============================================================
   ALOLDALAK FEJLÉCE (Banner kép + Címsor)
   ============================================================ */
.subpage-banner {
    width: 100%;
    overflow: hidden;
    background: #f1f1f1;
}

.subpage-banner img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    display: block;
}

.subpage-header-block {
    padding: 35px 0 15px 0;
}

.subpage-header-block h1 {
    font-size: 32px;
    font-weight: 700;
    color: #006964;
    margin: 0 0 12px 0;
}

.subpage-divider {
    width: 100%;
    height: 1px;
    background: #006964;
    margin: 0 0 16px 0;
}

.subpage-subtitle {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   HERO SLIDER (Főoldal)
   ============================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #1a1a1a;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
    z-index: 3;
}

.slide-content {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
}

.slide-content .container {
    width: 100%;
}

.slide-text {
    max-width: 620px;
    padding: 0;
    text-align: left;
}

.slide-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.slide-text p {
    font-size: 17px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 28px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: #006964;
    color: #ffffff;
}

.btn-primary:hover {
    background: #004d4a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,105,100,0.35);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.8);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border-color: #ffffff;
}

/* Slider navigációs nyilak */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,105,100,0.5);
    border: none;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    opacity: 0.7;
}

.slider-btn:hover {
    background: rgba(0,105,100,0.9);
    opacity: 1;
}

.slider-btn-prev { left: 20px; }
.slider-btn-next { right: 20px; }

/* ============================================================
   SZEKCIÓK ÁLTALÁNOS
   ============================================================ */
section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.section-title p {
    font-size: 16px;
    color: #949494;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: #006964;
    margin: 12px auto 0;
}

/* ============================================================
   FEATURE BLOKKOK (Főoldal – 3 szolgáltatás)
   ============================================================ */
.features-section {
    background: #f8f9fa;
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,105,100,0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #006964;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.feature-icon i {
    font-size: 28px;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #949494;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   MIÉRT MI? SZEKCIÓ (Főoldal)
   ============================================================ */
.why-us-section {
    background: #ffffff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-us-image img {
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
}

.why-us-list {
    list-style: none;
    margin-top: 20px;
}

.why-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.why-us-list li i {
    color: #006964;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.why-us-list li .item-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4px;
}

.why-us-list li .item-text p {
    font-size: 14px;
    color: #949494;
    margin: 0;
}

/* ============================================================
   KÉTOSZLOPOS TARTALMI SZEKCIÓK (Joomla tartalomhoz)
   ============================================================ */
.two-col-section {
    padding: 60px 0;
}

.two-col-section.bg-light {
    background: #f8f9fa;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.two-col-grid.ratio-2-1 {
    grid-template-columns: 2fr 1fr;
}

.two-col-grid.ratio-3-1 {
    grid-template-columns: 3fr 1fr;
}

.two-col-image.compact img {
    max-width: 140px;
    margin: 0 auto;
    display: block;
    box-shadow: none;
}

.two-col-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.two-col-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #222222;
}

.two-col-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 16px;
}

.info-checklist {
    list-style: none;
    margin: 20px 0;
}

.info-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.info-checklist li i {
    color: #006964;
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================================
   GARANCIA SZEKCIÓ
   ============================================================ */
.guarantee-section {
    background: #f1f6f5;
    padding: 50px 0;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-left: 6px solid #006964;
}

.guarantee-badge {
    flex-shrink: 0;
    width: 130px;
    text-align: center;
}

.guarantee-badge img {
    max-width: 100%;
    height: auto;
}

.guarantee-content h2 {
    font-size: 24px;
    color: #006964;
    margin-bottom: 10px;
}

.guarantee-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ============================================================
   FIGYELMEZTETŐ DOBOZ (5 éves érvényesség)
   ============================================================ */
.validity-alert-box {
    background: #fffdf5;
    border: 1px solid #fed7aa;
    border-left: 5px solid #f97316;
    padding: 28px 32px;
    border-radius: 6px;
    margin: 40px 0;
}

.validity-alert-box h3 {
    font-size: 20px;
    color: #c2410c;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.validity-alert-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   SZAKÉRTŐI KÁRTYA / BEMUTATKOZÁS
   ============================================================ */
.expert-section {
    background: #ffffff;
    padding: 50px 0;
}

.expert-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid #e9ecef;
}

.expert-info h3 {
    font-size: 22px;
    color: #222222;
    margin-bottom: 4px;
}

.expert-info .expert-role {
    color: #006964;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}

.expert-info .expert-meta {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.expert-info .expert-meta strong {
    color: #333;
}

/* ============================================================
   CTA SZEKCIÓ (Zöld hátterű ajánlatkérés)
   ============================================================ */
.cta-section {
    background: #006964;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

.btn-white {
    background: #ffffff;
    color: #006964;
    font-weight: 700;
}

.btn-white:hover {
    background: #f0f0f0;
    color: #004d4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ============================================================
   KAPCSOLAT KÁRTYA (Főoldal)
   ============================================================ */
.contact-strip {
    background: #f8f9fa;
    padding: 50px 0;
}

.contact-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.contact-item i {
    font-size: 32px;
    color: #006964;
    margin-bottom: 12px;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.contact-item p, .contact-item a {
    font-size: 15px;
    color: #949494;
}

.contact-item a:hover {
    color: #006964;
}

/* ============================================================
   TARTALOM OLDALAK ÁLTALÁNOS
   ============================================================ */
.content-section {
    padding: 70px 0;
}

.content-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 26px;
    color: #222222;
    margin-bottom: 16px;
    margin-top: 36px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eef2f2;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 20px;
    color: #222222;
    margin-bottom: 12px;
    margin-top: 28px;
}

.content-wrapper p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-wrapper ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.content-wrapper ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

.content-wrapper ul.checklist li {
    position: relative;
    padding-left: 26px;
}

.content-wrapper ul.checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 13px;
    color: #006964;
    position: absolute;
    left: 0;
    top: 3px;
}

/* Jogi és információs doboz */
.law-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #006964;
    padding: 24px 28px;
    border-radius: 6px;
    margin: 28px 0;
}

.law-box h4 {
    font-size: 17px;
    color: #006964;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.law-box p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

.law-box p:last-child {
    margin-bottom: 0;
}

/* 2 hasábos információs kártyák */
.info-cards-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.info-box-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.info-box-card h3 {
    font-size: 19px;
    color: #111827;
    margin-top: 0;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box-card h3 i {
    color: #006964;
}

@media (max-width: 768px) {
    .info-cards-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================================
   FOLYAMAT LÉPÉSEK (tanusitas-menete.php)
   ============================================================ */
.steps-section {
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.steps-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.step-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #006964;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,105,100,0.12);
}

.step-number {
    width: 48px;
    height: 48px;
    background: #006964;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .steps-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ÁR TÁBLÁZAT
   ============================================================ */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.price-table thead th {
    background: #006964;
    color: #ffffff;
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.price-table tbody tr:hover {
    background: #f8fdfc;
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table tbody td {
    padding: 16px 20px;
    font-size: 15px;
    color: #555555;
}

.price-table tbody td:last-child {
    font-weight: 600;
    color: #006964;
}

.price-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.price-card-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.price-card-thumb {
    width: 100px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.price-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 576px) {
    .price-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .price-card-header-left {
        width: 100%;
    }
    .price-card-thumb {
        width: 80px;
        height: 60px;
    }
}

.pest-towns-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 14px;
    font-size: 13px;
    color: #444;
}

.pest-town-item {
    background: #ffffff;
    padding: 9px 12px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1100px) {
    .pest-towns-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 850px) {
    .pest-towns-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .pest-towns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .pest-towns-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FORM STÍLUSOK (megrendeles, kapcsolat)
   ============================================================ */
.form-section {
    background: #f8f9fa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 50px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555555;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #555555;
    border: 1px solid #dddddd;
    border-radius: 3px;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #006964;
    box-shadow: 0 0 0 3px rgba(0,105,100,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    margin-top: 10px;
}

.form-submit .btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

.form-note {
    margin-top: 16px;
    font-size: 13px;
    color: #aaaaaa;
    text-align: center;
}

/* --- Megrendelés 2-oszlopos elrendezés --- */
.order-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 40px;
    align-items: flex-start;
}

.order-sidebar {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.order-sidebar h3 {
    font-size: 20px;
    color: #222222;
    margin-bottom: 8px;
}

.order-sidebar p.intro {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.order-steps {
    list-style: none;
    margin: 0 0 28px 0;
}

.order-steps li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.order-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #006964;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.order-step-text strong {
    display: block;
    font-size: 15px;
    color: #333333;
    margin-bottom: 3px;
}

.order-step-text span {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

.order-phone-card {
    background: #f1f6f5;
    border: 1px solid #c2dedb;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}

.order-phone-card i {
    font-size: 26px;
    color: #006964;
    margin-bottom: 8px;
}

.order-phone-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: #222;
}

.order-phone-card a {
    font-size: 20px;
    font-weight: 700;
    color: #006964;
    display: inline-block;
    margin-top: 4px;
}

/* --- Form Alert üzenetek --- */
.form-alert {
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-alert i {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-alert-success {
    background: #e6f7f2;
    border: 1px solid #99ded0;
    color: #065f46;
}

.form-alert-error {
    background: #fdf2f2;
    border: 1px solid #f8b4b4;
    color: #991b1b;
}

.form-alert-error ul {
    margin: 6px 0 0 16px;
}

/* --- Checkbox mező --- */
.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px !important;
    font-weight: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    cursor: pointer;
    color: #555555;
    line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #006964;
}

.captcha-wrapper {
    margin: 20px 0;
    display: flex;
    justify-content: flex-start;
}

/* ============================================================
   HÍREK LISTA
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-card-body {
    padding: 28px;
}

.blog-card-body .tag {
    display: inline-block;
    background: #006964;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.blog-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body h3 a {
    color: #333333;
}

.blog-card-body h3 a:hover {
    color: #006964;
}

.blog-card-body p {
    font-size: 14px;
    color: #949494;
    margin-bottom: 18px;
    line-height: 1.7;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: #006964;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.read-more:hover {
    color: #004d4a;
}

/* ============================================================
   FOOTER / LÁBLÉC
   ============================================================ */
#sp-footer {
    background: #1a1a1a;
    color: #999999;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #2d2d2d;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1) opacity(0.8);
}

.footer-about p {
    font-size: 14px;
    color: #888888;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #888888;
    margin-bottom: 10px;
}

.footer-contact-list li i {
    color: #006964;
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: #888888;
}

.footer-contact-list li a:hover {
    color: #006964;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #006964;
    display: inline-block;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-size: 14px;
    color: #888888;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links li a:hover {
    color: #006964;
    padding-left: 5px;
}

.footer-legal-links a:hover {
    color: #ffffff !important;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #666666;
}

.footer-bottom a {
    color: #888888;
}

.footer-bottom a:hover {
    color: #006964;
}

/* ============================================================
   INFO SÁVED (zöld adat-küldéses highlight)
   ============================================================ */
.info-highlight {
    background: rgba(0,105,100,0.06);
    border-left: 4px solid #006964;
    padding: 18px 22px;
    border-radius: 0 4px 4px 0;
    margin: 24px 0;
}

.info-highlight p {
    margin: 0;
    font-size: 15px;
    color: #555555;
}

.info-highlight strong {
    color: #006964;
}

/* ============================================================
   MOBIL HAMBURGER (side drawer)
   ============================================================ */
@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .main-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -75vw;
        width: 75vw;
        max-width: 340px;
        height: 100vh;
        background: #1a1a1a;
        z-index: 1000;
        padding: 80px 0 30px;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav > ul > li > a {
        padding: 14px 25px;
        color: #cccccc;
        border-bottom: 1px solid #2a2a2a;
        font-size: 14px;
    }

    .main-nav > ul > li > a:hover,
    .main-nav > ul > li.active > a {
        color: #006964;
    }

    .main-nav .has-dropdown > a::after {
        float: right;
    }

    .dropdown-menu {
        display: none !important;
        position: static;
        border-top: none;
        box-shadow: none;
        background: rgba(0,105,100,0.08);
        min-width: auto;
        border-radius: 0;
    }

    .dropdown-menu.open {
        display: block !important;
    }

    .dropdown-menu li a {
        color: rgba(255,255,255,0.7) !important;
        background: transparent !important;
        padding: 11px 25px 11px 40px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .dropdown-menu li a:hover {
        color: #006964 !important;
        background: transparent !important;
    }

    .nav-mobile-info {
        display: flex;
        flex-direction: column;
        padding: 20px 25px;
        border-top: 1px solid #2a2a2a;
        margin-top: auto;
    }

    .nav-mobile-info a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        font-size: 13px;
        color: #888888;
    }

    .nav-mobile-info a i {
        color: #006964;
        width: 16px;
    }

    .nav-mobile-info a:hover {
        color: #006964;
    }

    /* X animáció */
    .menu-toggle.active .hamburger-bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .hamburger-bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .menu-toggle.active {
        position: fixed;
        top: 22px;
        right: 20px;
    }

    .menu-toggle.active .hamburger-bar {
        background: #ffffff;
    }

    /* Reszponzív layout */
    .hero-slider { height: 350px; }
    .slide-text h2 { font-size: 26px; }
    .slide-text p { font-size: 15px; }

    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .why-us-grid { grid-template-columns: 1fr; }
    .why-us-image { display: none; }
    .two-col-grid { grid-template-columns: 1fr; gap: 30px; }
    .guarantee-box { flex-direction: column; text-align: center; gap: 20px; }
    .expert-card { flex-direction: column; text-align: center; gap: 20px; }

    .contact-strip-grid { grid-template-columns: 1fr; gap: 20px; }

    .steps-grid { grid-template-columns: 1fr 1fr; }

    .blog-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-nav { display: none; }

    .order-layout { grid-template-columns: 1fr; gap: 30px; }
    .form-wrapper { padding: 30px 20px; }
    .form-row { grid-template-columns: 1fr; }

    .price-table { font-size: 14px; }
    .price-table thead th,
    .price-table tbody td { padding: 12px; }
}

@media (max-width: 576px) {
    .hero-slider { height: 280px; }
    .slide-text { padding: 0 20px; }
    .slide-text h2 { font-size: 20px; }
    .steps-grid { grid-template-columns: 1fr; }
    .page-title-bar h1 { font-size: 24px; }
}
