/* ============================================================
   KMK & Partner – style.css
   Font: Raleway (Google Fonts)
   Accent: #9a9585  |  Dark overlay: rgba(0,0,0,0.70)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #333;
    background: #fff;
    line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #9a9585; }
img { max-width: 100%; display: block; }

/* ---------- Utilities ---------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.text-white { color: #fff; }

.section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #9a9585;
    margin: 12px auto 0;
}
.section-sub {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    margin-top: 16px;
    margin-bottom: 48px;
}

/* ---------- Navbar ---------- */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
    transition: background 0.3s;
}
#navbar.scrolled { background: rgba(10,10,10,0.97); }

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

/* Logo – jóval nagyobb és hangsúlyosabb */
.nav-logo img {
    height: 58px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
    transition: transform 0.2s, filter 0.2s;
}
.nav-logo img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 14px rgba(154,149,133,0.5));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.nav-menu a {
    color: #e8e8e8;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: none;
    transition: color 0.2s;
}
.nav-menu a:hover { color: #9a9585; }

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}
.lang-switcher a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #bbb;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.2s;
    padding: 3px 6px;
    border-radius: 3px;
}
.lang-switcher a:hover, .lang-switcher a.active { color: #fff; background: rgba(154,149,133,0.4); }
/* Zászló SVG – garantált megjelenítés minden böngészőben */
.flag-svg {
    display: inline-block;
    width: 22px;
    height: 15px;
    vertical-align: middle;
    border-radius: 2px;
    flex-shrink: 0;
}
.lang-flag { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block; width: 26px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
#hero {
    min-height: 100vh;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}
#hero::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.58);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}
.hero-content h1 span { color: #9a9585; }
.hero-content .hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 300;
    color: #d4d0c8;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 12px 0 28px;
}
.hero-content p {
    font-size: 1rem;
    color: #ccc;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.btn-primary {
    display: inline-block;
    padding: 14px 38px;
    background: #9a9585;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #9a9585;
    border-radius: 2px;
    transition: background 0.25s, color 0.25s;
    cursor: pointer;
}
.btn-primary:hover { background: transparent; color: #9a9585; }
.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #fff;
    border-radius: 2px;
    transition: background 0.25s, color 0.25s;
    cursor: pointer;
}
.btn-outline:hover { background: #fff; color: #333; }

/* ---------- About / Strategy ---------- */
#about {
    background: url('../images/strategy-bg.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
}
#about::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.72);
}
#about .container { position: relative; z-index: 1; }
#about .section-title { color: #fff; }
#about .section-title::after { margin: 12px 0 0; }
#about p {
    color: #d4d0c8;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 700px;
    margin-top: 24px;
    line-height: 1.9;
}

/* ---------- Services (HU) ---------- */
#services { background: #f8f8f6; }
#services .section-title { color: #333; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 0;
}
.service-card {
    background: #fff;
    border: 1px solid #e8e6e0;
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
}
.service-icon {
    width: 80px; height: 80px;
    background: #f0ede7;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
    padding: 14px;
    border: 2px solid #e0dcd4;
    transition: background 0.25s, border-color 0.25s;
}
.service-card:hover .service-icon { background: #9a9585; border-color: #9a9585; }
.service-icon i { font-size: 1.6rem; color: #9a9585; transition: color 0.25s; }
.service-card:hover .service-icon i { color: #fff; }
.service-icon img {
    width: 100%; height: 100%; object-fit: contain;
    filter: none;
    transition: filter 0.25s;
}
.service-card:hover .service-icon img { filter: brightness(0) invert(1); }
.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.9rem;
    color: #777;
    font-weight: 300;
    line-height: 1.7;
}

/* ---------- German Services ---------- */
#de-services {
    background: url('../images/de-services-bg.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
}
#de-services::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(154,149,133,0.75);
}
#de-services .container { position: relative; z-index: 1; }
#de-services .section-title { color: #fff; }
#de-services .section-title::after { background: #fff; margin: 12px auto 0; }
#de-services .section-sub { color: rgba(255,255,255,0.85); }

.de-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.de-service-item {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 4px;
    padding: 28px 18px;
    text-align: center;
    color: #fff;
    transition: background 0.25s;
}
.de-service-item:hover { background: rgba(255,255,255,0.25); }
.de-service-item i { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.de-service-item span {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.4;
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
}

/* ---------- Contact ---------- */
#contact {
    background: url('../images/contact-bg.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
}
#contact::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.72);
}
#contact .container { position: relative; z-index: 1; }
#contact .section-title { color: #fff; }
#contact .section-title::after { margin: 12px 0 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
}

/* Contact info */
.contact-info h3 {
    color: #9a9585;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.contact-row {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}
.contact-row i {
    color: #9a9585;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}
.contact-row-body .label {
    display: block;
    color: #9a9585;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.contact-row-body .value {
    color: #e0ddd5;
    font-size: 0.95rem;
    font-weight: 300;
}
.contact-row-body .value a { color: #e0ddd5; transition: color 0.2s; }
.contact-row-body .value a:hover { color: #9a9585; }

.hours-note {
    font-size: 0.8rem;
    color: #aaa;
    font-style: italic;
    margin-bottom: 8px;
}

/* Contact form */
.contact-form h3 {
    color: #9a9585;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    color: #bbb;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 3px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
    border-color: #9a9585;
    background: rgba(255,255,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.captcha-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ccc;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.captcha-group input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 8px 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    width: 80px;
    text-align: center;
}
.captcha-group input:focus {
    outline: none;
    border-color: #9a9585;
}

.form-privacy {
    font-size: 0.78rem;
    color: #aaa;
    margin-bottom: 16px;
    font-weight: 300;
}
.form-privacy a { color: #9a9585; text-decoration: underline; }

.form-message {
    display: none;
    padding: 12px 16px;
    border-radius: 3px;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 500;
}
.form-message.success { background: rgba(76,175,80,0.2); border: 1px solid #4caf50; color: #a5d6a7; }
.form-message.error   { background: rgba(244,67,54,0.2); border: 1px solid #f44336; color: #ef9a9a; }

/* ---------- Footer ---------- */
#footer {
    background: #111;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2a2a2a;
}
.footer-col h4 {
    color: #9a9585;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-col p, .footer-col address {
    color: #888;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    font-style: normal;
}
.footer-col a { color: #888; transition: color 0.2s; }
.footer-col a:hover { color: #9a9585; }
.footer-logo { height: 40px; margin-bottom: 16px; }
.footer-slogan { color: #666; font-size: 0.85rem; font-weight: 300; margin-bottom: 16px; }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: #555;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ---------- Privacy page ---------- */
.page-header {
    background: #111;
    padding: 120px 0 60px;
    text-align: center;
}
.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.page-header h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #9a9585;
    margin: 14px auto 0;
}
.privacy-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}
.privacy-body h2 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    margin: 36px 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #9a9585;
}
.privacy-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #555;
    margin: 20px 0 8px;
}
.privacy-body p {
    font-size: 0.93rem;
    color: #555;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 14px;
}
.privacy-body ul {
    margin: 0 0 14px 20px;
    color: #555;
    font-size: 0.93rem;
    font-weight: 300;
    line-height: 1.8;
}
.privacy-body .info-box {
    background: #f5f4f0;
    border-left: 4px solid #9a9585;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 0 3px 3px 0;
}
.privacy-body .info-box p { margin: 0; }

/* ---------- Cookie Banner ---------- */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    color: #ccc;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    font-size: 0.83rem;
    font-weight: 300;
    border-top: 2px solid #9a9585;
    transform: translateY(0);
    transition: transform 0.3s;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; max-width: 760px; }
#cookie-banner button {
    flex-shrink: 0;
    background: #9a9585;
    color: #fff;
    border: none;
    padding: 9px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s;
}
#cookie-banner button:hover { background: #7a7568; }

/* ---------- Back to top ---------- */
#back-to-top {
    position: fixed;
    bottom: 30px; right: 24px;
    width: 44px; height: 44px;
    background: #9a9585;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
    z-index: 800;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: #7a7568; }

/* ---------- de-service-item as link ---------- */
a.de-service-item {
    text-decoration: none;
    cursor: pointer;
}
a.de-service-item:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    transition: transform 0.2s, background 0.2s;
}

/* ---------- btn-outline-dark ---------- */
.btn-outline-dark {
    display: inline-block;
    padding: 13px 36px;
    background: transparent;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    transition: background 0.25s, border-color 0.25s;
    cursor: pointer;
}
.btn-outline-dark:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ---------- Adóvisszaigénylés CTA szekció ---------- */
.taxrefund-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2a26 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}
.taxrefund-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: url('assets/images/hero-bg.jpg') center / cover no-repeat;
    opacity: 0.12;
}
.taxrefund-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}
.taxrefund-badge {
    display: inline-block;
    background: #9a9585;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 16px;
}
.taxrefund-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.2;
}
.taxrefund-text p {
    color: #ccc;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 24px;
}
.taxrefund-highlights {
    list-style: none;
    margin-bottom: 32px;
}
.taxrefund-highlights li {
    color: #d4d0c8;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.taxrefund-highlights li i {
    color: #9a9585;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.taxrefund-visual {
    flex-shrink: 0;
}
.taxrefund-amount {
    background: rgba(154,149,133,0.15);
    border: 2px solid #9a9585;
    border-radius: 8px;
    padding: 36px 40px;
    text-align: center;
    min-width: 220px;
}
.ta-label {
    display: block;
    color: #9a9585;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.ta-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 10px;
}
.ta-sub {
    display: block;
    color: #888;
    font-size: 0.78rem;
    font-weight: 300;
}

/* ---------- Aloldalak közös header ---------- */
.subpage-header {
    background: #111;
    padding: 110px 0 50px;
}
.subpage-header .container {
    display: flex;
    align-items: flex-end;
    gap: 40px;
}
.subpage-header-text h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}
.subpage-header-text h1::after {
    content: '';
    display: block;
    width: 60px; height: 3px;
    background: #9a9585;
    margin: 12px 0 0;
}
.subpage-header-text p {
    color: #999;
    font-size: 1rem;
    font-weight: 300;
    margin-top: 12px;
    max-width: 600px;
    line-height: 1.7;
}
.subpage-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9a9585;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
    padding-bottom: 6px;
}
.subpage-back:hover { color: #fff; }

/* ---------- Adóvisszaigénylés aloldal ---------- */
.process-steps {
    counter-reset: step;
    position: relative;
    padding-left: 0;
    list-style: none;
}
.process-steps::before {
    content: '';
    position: absolute;
    left: 28px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #9a9585, transparent);
}
.process-step {
    display: flex;
    gap: 28px;
    margin-bottom: 32px;
    position: relative;
}
.step-num {
    flex-shrink: 0;
    width: 56px; height: 56px;
    background: #9a9585;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    position: relative; z-index: 1;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #9a9585;
}
.step-body { padding-top: 10px; }
.step-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 6px;
}
.step-body p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
    line-height: 1.7;
}
.step-note {
    background: #f0ede7;
    border-left: 3px solid #9a9585;
    padding: 8px 14px;
    font-size: 0.83rem;
    color: #555;
    margin-top: 8px;
    border-radius: 0 3px 3px 0;
}

/* Info kártyák */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 40px 0;
}
.info-card {
    background: #f8f7f4;
    border: 1px solid #e8e6e0;
    border-radius: 4px;
    padding: 28px 24px;
    text-align: center;
}
.info-card i {
    font-size: 1.8rem;
    color: #9a9585;
    margin-bottom: 12px;
    display: block;
}
.info-card .ic-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    display: block;
    margin-bottom: 4px;
}
.info-card .ic-label {
    font-size: 0.78rem;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #e8e6e0;
    padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-q i { color: #9a9585; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
    font-size: 0.92rem;
    color: #666;
    font-weight: 300;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
    padding: 0;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 14px; }

/* ---------- Németországi szolgáltatások aloldal ---------- */
.de-service-section {
    padding: 60px 0;
    border-bottom: 1px solid #f0ede7;
}
.de-service-section:last-of-type { border-bottom: none; }
.de-service-section:nth-child(even) { background: #faf9f6; }
.de-service-layout {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: flex-start;
}
.de-svc-icon {
    width: 80px; height: 80px;
    background: #9a9585;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.de-svc-icon i { font-size: 1.8rem; color: #fff; }
.de-svc-icon img { width: 46px; height: 46px; object-fit: contain; filter: brightness(0) invert(1); }
.de-svc-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 16px;
    scroll-margin-top: 90px;
}
.de-svc-body h2::after {
    content: '';
    display: block;
    width: 40px; height: 2px;
    background: #9a9585;
    margin-top: 8px;
}
.de-svc-body p {
    font-size: 0.95rem;
    color: #555;
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 14px;
}
.de-svc-body ul {
    margin: 0 0 14px 18px;
    color: #555;
    font-size: 0.93rem;
    font-weight: 300;
    line-height: 1.8;
}
.de-svc-body ul li { margin-bottom: 4px; }
.de-svc-body .warning-box {
    background: #fff8e1;
    border-left: 4px solid #f9a825;
    padding: 12px 16px;
    font-size: 0.88rem;
    color: #6d4c00;
    font-weight: 500;
    border-radius: 0 3px 3px 0;
    margin-top: 10px;
}

/* ---------- Responsive – finomhangolások ---------- */
/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .taxrefund-inner { grid-template-columns: 1fr; gap: 36px; }
    .taxrefund-amount { min-width: auto; }
    .de-service-layout { grid-template-columns: 70px 1fr; gap: 24px; }
    .de-svc-icon { width: 60px; height: 60px; }
    .de-svc-icon i { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: rgba(10,10,10,0.97);
        flex-direction: column;
        padding: 20px 24px;
        gap: 18px;
        border-top: 1px solid #2a2a2a;
    }
    .nav-menu.open { display: flex; }
    .lang-switcher { margin: 0; }
    .nav-toggle { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    #hero { background-attachment: scroll; }
    #about, #de-services, #contact { background-attachment: scroll; }
}

@media (max-width: 480px) {
    .section-pad { padding: 60px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .de-services-grid { grid-template-columns: 1fr 1fr; }
    #cookie-banner { flex-direction: column; align-items: flex-start; }
}
