/* ============================================================
   PURA VIDA 77 - Fő Stíluslap
   Türkiz, Kék, Fehér, Arany színvilág
   ============================================================ */

/* ============================================================
   1. CSS VÁLTOZÓK
   ============================================================ */
   :root {
    /* Brand színek */
    --turquoise: #19c6c2;
    --turquoise-light: #5dd9d6;
    --turquoise-dark: #14a5a2;
    --blue: #0b4f8a;
    --blue-light: #1a6bb8;
    --blue-dark: #08324f;
    --gold: #d6b25e;
    --gold-light: #e8cb7f;
    --gold-dark: #b8962d;
    --white: #ffffff;
    --black: #0a0a0a;
    
    /* Szöveg színek */
    --text-primary: #08324f;
    --text-secondary: #5e7d95;
    --text-light: #8fa5b5;
    --text-white: #ffffff;
    
    /* Háttér színek */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafb;
    --bg-dark: #08324f;
    --bg-gradient: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--turquoise-dark) 100%);
    
    /* Glass effect */
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.18);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(8, 50, 79, 0.08);
    --shadow-md: 0 4px 20px rgba(8, 50, 79, 0.12);
    --shadow-lg: 0 10px 40px rgba(8, 50, 79, 0.15);
    --shadow-xl: 0 20px 60px rgba(8, 50, 79, 0.2);
    
    /* Tipográfia */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-script: 'Brush Script MT', 'Brush Script Std', 'Pacifico', cursive;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 24px;
}

/* Responsive CSS változók */
@media (max-width: 767px) {
    :root {
        --container-padding: 16px;
        --space-3xl: 48px;
        --space-4xl: 64px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 12px;
        --space-2xl: 32px;
        --space-3xl: 40px;
        --space-4xl: 48px;
    }
}

@media (max-width: 375px) {
    :root {
        --container-padding: 10px;
        --space-xl: 24px;
        --space-2xl: 28px;
        --space-3xl: 32px;
    }
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main elem overflow védelem */
main {
    overflow-x: clip;
    max-width: 100vw;
    width: 100%;
}

body.nav-open {
    overflow: hidden;
}

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

/* Video és iframe védelem */
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1em;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-turquoise { color: var(--turquoise); }
.text-white { color: var(--white); }

/* ============================================================
   4. CONTAINER
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

/* Section szintű overflow védelem - clip nem hoz létre scroll-kontextust */
.section,
section {
    overflow-x: clip;
    max-width: 100vw;
    width: 100%;
}

/* ============================================================
   5. PROMO BAR
   ============================================================ */
.promo-bar {
    position: relative;
    padding: 8px 40px 8px 16px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    z-index: 1001;
    transition: var(--transition);
    overflow: hidden;
}

.promo-bar.promo-bar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.promo-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-bar-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
}

.promo-bar-text {
    display: inline;
}

.promo-bar-icon {
    animation: sparkle 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.promo-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
}

.promo-bar-content:hover .promo-bar-cta {
    background: rgba(255,255,255,0.3);
}

.promo-bar-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px;
    opacity: 0.7;
    transition: var(--transition);
    z-index: 2;
    background: inherit;
}

.promo-bar-close:hover {
    opacity: 1;
}

/* Promo bar MOBIL - tördelés animáció helyett */
@media (max-width: 767px) {
    .promo-bar {
        padding: 10px 36px 10px 8px;
    }
    
    .promo-bar-inner {
        width: 100%;
        overflow: hidden;
    }
    
    .promo-bar-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        white-space: normal;
        animation: none;
        padding-right: 0;
        gap: 6px;
    }
    
    .promo-bar-text {
        white-space: normal;
        text-align: center;
    }
    
    .promo-bar-icon {
        display: none;
    }
    
    .promo-bar-cta {
        margin-top: 4px;
    }
    
    .promo-bar-cta {
        padding: 3px 10px;
        font-size: 12px;
    }
    
    .promo-bar-close {
        right: 4px;
        padding: 2px;
    }
}

@keyframes promoMarquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ============================================================
   6. TOP BAR - Dekoratív hullámos sáv
   ============================================================ */
.top-bar {
    background: url('../images/main/top-bar-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    min-height: 30px;
}

/* Hullámos alsó él effekt */
.top-bar::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 10' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q300,0 600,10 T1200,10 L1200,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.top-bar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: none;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(0, 0, 0, 0.85);
    transition: var(--transition);
    font-size: 0.95rem;
}

.top-bar-link:hover {
    color: var(--gold);
}

.top-bar-link svg {
    flex-shrink: 0;
}

/* ============================================================
   8. HEADER / NAVBAR
   ============================================================ */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    /* overflow-x: hidden eltávolítva - a nyelválasztó dropdown-nak kell hely */
    /* A vízszintes túlcsordulást a container kezeli */
}

.header.header-scrolled {
    box-shadow: var(--shadow-md);
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.header-logo img {
    height: 70px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* Brand name mellé a logó */
.brand-name {
    font-family: var(--font-script);
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: var(--black);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* ® jel kicsi és felső index */
.brand-name .reg-mark,
.logo-text .reg-mark {
    font-size: 0.4em;
    vertical-align: super;
    line-height: 1;
    font-style: normal;
    font-weight: 400;
}

@media (max-width: 576px) {
    .brand-name {
        font-size: 24px;
    }
}

@media (max-width: 375px) {
    .brand-name {
        font-size: 18px;
    }
}

/* Desktop navigáció */
.nav-desktop {
    display: none;
    flex: 1;
    justify-content: center;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--turquoise);
    background: rgba(25, 198, 194, 0.08);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* WhatsApp ikon a headerben */
.header-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #25D366;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.header-whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: scale(1.05);
}

/* Nyelvváltó lenyíló */
.lang-dropdown {
    position: relative;
    z-index: 1001; /* Magasabb mint a header (1000) hogy a dropdown mindig felül legyen */
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: transparent;
    /* border: 1px solid rgba(0,0,0,0.1); */
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.lang-dropdown-toggle:hover {
    background: rgba(25, 198, 194, 0.08);
    border-color: var(--turquoise);
}

.lang-dropdown-toggle svg:first-child {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lang-dropdown-arrow {
    transition: transform 0.2s ease;
    color: var(--text-secondary);
}

.lang-dropdown.is-open .lang-dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 9999; /* Nagyon magas z-index hogy MINDEN felett megjelenjen */
    overflow: hidden;
}

.lang-dropdown.is-open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.lang-dropdown-item:hover {
    background: rgba(25, 198, 194, 0.08);
}

.lang-dropdown-item.active {
    background: rgba(25, 198, 194, 0.12);
    color: var(--turquoise-dark);
}

.lang-dropdown-item svg {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

/* Desktop CTA gomb */
.header-cta-desktop {
    display: none;
}

@media (min-width: 992px) {
    .header-cta-desktop {
        display: inline-flex;
    }
}

/* Régi nyelvváltó - már nem használt, de megtartjuk kompatibilitás miatt */
.lang-switcher {
    display: none;
}

.lang-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: var(--radius-sm);
    opacity: 0.6;
    transition: var(--transition);
}

.lang-flag:hover,
.lang-flag.active {
    opacity: 1;
    background: rgba(25, 198, 194, 0.1);
}

.lang-flag svg {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* CTA gomb */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(214, 178, 94, 0.3);
}

.btn-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 178, 94, 0.4);
}

.btn-cta-full {
    width: 100%;
    justify-content: center;
}

/* Kosár ikon a header-ben */
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.header-cart:hover {
    color: var(--turquoise);
    background: rgba(25, 198, 194, 0.08);
}

.header-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--turquoise);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Kosár számláló animáció hozzáadáskor */
.header-cart-count.cart-pulse {
    animation: cartPulse 0.5s ease;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); background: var(--gold); }
    100% { transform: scale(1); }
}

/* Hamburger gomb */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
}

@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 8px; }
.hamburger-line:nth-child(3) { top: 16px; }

/* ============================================================
   9. MOBIL NAVIGÁCIÓ
   ============================================================ */
.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 50, 79, 0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 90vw;
    background: var(--white);
    z-index: 1101;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.nav-mobile.is-open {
    transform: translateX(0);
}

.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-mobile-logo .logo-text {
    font-size: 20px;
}

.nav-mobile-logo .brand-name {
    font-size: 22px;
}

.nav-mobile-close {
    padding: 8px;
    color: var(--text-secondary);
}

.nav-mobile-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.nav-mobile-menu {
    margin-bottom: 24px;
}

.nav-mobile-item {
    margin-bottom: 4px;
}

.nav-mobile-link {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
    background: rgba(25, 198, 194, 0.08);
    color: var(--turquoise);
}

.nav-mobile-cta {
    margin-bottom: 24px;
}

.nav-mobile-lang {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.lang-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--text-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
    background: rgba(25, 198, 194, 0.05);
}

.nav-mobile-contact {
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.nav-mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.nav-mobile-contact-item svg {
    color: var(--turquoise);
}

/* ============================================================
   10. HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* FIX háttérkép - nem gördül */
    overflow: clip;
}

/* Tiszta kép - nincs overlay alapértelmezetten */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: none;
}

/* Enyhe overlay az olvashatósághoz */
.hero-overlay-subtle {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.25) 0%, 
        rgba(0, 0, 0, 0.4) 100%); */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero fentebb rendezve */
.hero.hero-top-aligned {
    align-items: flex-start;
    padding-top: 40px;
}

.hero.hero-top-aligned .hero-content {
    justify-content: flex-start;
    padding-top: 0px;
}

/* Szövegbuborék a hero szöveg mögött */
.hero-text-bubble {
    background: var(--gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: var(--space-lg) var(--space-2xl);
    text-align: center;
    max-width: min(1000px, calc(100vw - 32px));
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

/* Főcím idézetként */
.hero-quote-main {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    font-style: normal;
    color: var(--black);
    line-height: 1.3;
    margin: 0 0 var(--space-sm) 0;
    padding: 0;
    border: none;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Leírás - kisebb betűvel, egy sorban */
.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.8rem, 1.3vw, 0.95rem);
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.5;
    margin: 0;
    max-width: 100%;
}

@media (max-width: 991px) {
    .hero-quote-main {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }
}

@media (max-width: 767px) {
    .hero.hero-top-aligned {
        padding-top: 20px;
    }
    
    .hero-text-bubble {
        padding: var(--space-md) var(--space-md);
        margin: 0 8px;
        border-radius: 16px;
        max-width: calc(100vw - 16px);
    }
    
    .hero-quote-main {
        font-size: clamp(1rem, 4.5vw, 1.3rem);
    }
    
    .hero-tagline {
        font-size: 0.85rem;
    }
    
    .hero-content {
        padding: var(--space-xl) var(--space-sm);
    }
}

.hero-badge {
    display: none;
}

/* Régi hero-title megtartása kompatibilitáshoz */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

/* Hero Title Script - Brush Script betűtípus */
.hero-title-script {
    font-family: 'Brush Script MT', 'Brush Script Std', 'Segoe Script', var(--font-script), cursive;
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: var(--white);
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    margin: 0 auto var(--space-xl);
    max-width: min(850px, calc(100vw - 32px));
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Hero Description - leírás szöveg */
.hero-description {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    margin: 0 auto var(--space-xl);
    max-width: min(700px, calc(100vw - 32px));
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Hero Quote - idézet stílus (ha kell) */
.hero-quote {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 4vw, 2.25rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    max-width: min(800px, calc(100vw - 32px));
    width: 100%;
    padding: var(--space-2xl) var(--space-lg);
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.hero-quote::before {
    content: '\201C';
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-sm);
    color: var(--gold);
    font-family: Georgia, serif;
}

.hero-quote::after {
    content: '\201D';
    font-size: 3rem;
    display: block;
    margin-top: var(--space-sm);
    color: var(--gold);
    font-family: Georgia, serif;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-hero-primary {
    background: var(--gold);
    color: var(--blue-dark);
    box-shadow: 0 4px 20px rgba(214, 178, 94, 0.4);
}

.btn-hero-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(214, 178, 94, 0.5);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.25);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================================
   11. SECTION STYLES
   ============================================================ */
.section {
    padding: var(--space-4xl) 0;
}

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

.section-alt {
    background: var(--bg-secondary);
}

.section-turquoise {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-dark) 100%);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

/* ============================================================
   12. ABOUT SECTION
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content h2 {
    margin-bottom: var(--space-lg);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    text-align: justify;
}

.about-image {
    position: relative;
    overflow: visible;
    padding-bottom: 20px;
    padding-right: 20px;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-image-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 20px 30px;
    background: var(--gold);
    color: var(--blue-dark);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-image-badge strong {
    display: block;
    font-size: 32px;
    font-family: var(--font-display);
}

.about-image-badge span {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 576px) {
    .about-image {
        padding-bottom: 10px;
        padding-right: 10px;
    }
    
    .about-image-badge {
        padding: 12px 16px;
    }
    
    .about-image-badge strong {
        font-size: 24px;
    }
    
    .about-image-badge span {
        font-size: 12px;
    }
}

/* ============================================================
   13. VIDEO + ABOUT SECTION
   ============================================================ */
.video-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 992px) {
    .video-about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    background: var(--bg-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.video-placeholder-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 16px;
}

/* ============================================================
   14. SERVICES SECTION
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: clip;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--turquoise-light), var(--turquoise));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 20px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: var(--space-sm);
    min-height: 120px;
}

@media (max-width: 576px) {
    .service-card p {
        min-height: auto;
    }
}

.service-price {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--turquoise-dark);
    margin-bottom: var(--space-md);
    padding: 8px 12px;
    background: rgba(25, 198, 194, 0.1);
    border-radius: var(--radius-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--turquoise);
}

.service-link:hover {
    color: var(--turquoise-dark);
}

/* ============================================================
   15. TESTIMONIALS SECTION (Türkiz buborékos)
   ============================================================ */
.testimonials-section {
    background: linear-gradient(135deg, var(--turquoise-dark) 0%, var(--turquoise) 50%, var(--turquoise-light) 100%);
    position: relative;
    overflow: clip;
    max-width: 100vw;
}
.section.testimonials-section .container {
    max-width: 100%;
    padding: 0;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: 0;
    width: min(600px, 80vw);
    height: min(600px, 80vw);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
    transform: translateX(30%);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 0;
    width: min(400px, 60vw);
    height: min(400px, 60vw);
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
    transform: translateX(-30%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.testimonials-header h2 {
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    z-index: 1;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
    padding-bottom: 10px;
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.testimonials-slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    padding-right: var(--space-xl);
}

/* Testimonials Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.testimonials-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.testimonials-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.testimonials-nav-btn:active {
    transform: scale(0.95);
}

.testimonials-scroll-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.testimonials-scroll-hint i {
    animation: swipe-hint 2s ease-in-out infinite;
}

@keyframes swipe-hint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@media (max-width: 768px) {
    .testimonials-scroll-hint {
        display: none;
    }
    
    .testimonials-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: min(340px, calc(100vw - 48px));
    max-width: 340px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    color: var(--white);
    box-sizing: border-box;
    scroll-snap-align: start;
    user-select: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Testimonial fejléc */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
    min-width: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-meta-line {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-separator {
    opacity: 0.5;
}

/* Értékelések kompakt */
.testimonial-ratings {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    margin-bottom: var(--space-md);
}

.rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-size: 12px;
}

.rating-row span {
    font-size: 14px;
}

.rating-row .stars {
    display: flex;
    gap: 2px;
}

.rating-row .stars i {
    color: var(--gold);
    font-size: 10px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Régi stílusok kompatibilitáshoz */
.testimonial-rating {
    margin-bottom: var(--space-md);
    color: var(--gold);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-location {
    font-size: 13px;
    opacity: 0.8;
}

/* ============================================================
   16. CAMPS SECTION (Önismereti táborok)
   ============================================================ */
.camps-content {
    max-width: min(800px, 100%);
    margin: 0 auto;
    width: 100%;
}

.camps-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.camp-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.camp-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(25, 198, 194, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise);
    flex-shrink: 0;
}

.camp-feature h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.camp-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Ár megjelenítés az önismereti táboroknál */
.camp-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: rgba(214, 178, 94, 0.15);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(214, 178, 94, 0.3);
    flex-wrap: wrap;
}

.camp-price-label {
    font-size: 14px;
    /* color: rgba(255,255,255,0.7); */
    min-width: 80px;
}

.camp-price-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.camp-price-note {
    font-size: 12px;
    /* color: rgba(255,255,255,0.6); */
}

.camp-price-placeholder {
    font-size: 14px;
    color: var(--gold);
    font-style: italic;
}

@media (max-width: 576px) {
    .camp-price {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
    
    .camp-price-value {
        font-size: 1.25rem;
    }
}

/* ============================================================
   17. ABOUT ME (Rólam) SECTION
   ============================================================ */
.about-me-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 992px) {
    .about-me-grid {
        grid-template-columns: minmax(300px, 400px) 1fr;
    }
}

.about-me-image {
    position: relative;
    padding: 20px;
    overflow: visible;
}

.about-me-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.about-me-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    z-index: 0;
}

@media (max-width: 576px) {
    .about-me-image {
        padding: 12px;
    }
}

.about-me-content h2 {
    margin-bottom: var(--space-sm);
}

.about-me-content .subtitle {
    font-size: 18px;
    color: var(--turquoise);
    margin-bottom: var(--space-lg);
}

/* ============================================================
   18. NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
    background: var(--bg-secondary);
}

.newsletter-box {
    max-width: min(600px, 100%);
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    width: 100%;
}

.newsletter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.newsletter-field label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.newsletter-field label .optional {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 14px;
}

.newsletter-field label .required {
    color: var(--turquoise);
}

.newsletter-input {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-full);
    background: var(--white);
    transition: var(--transition);
    box-sizing: border-box;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 4px rgba(25, 198, 194, 0.1);
}

.newsletter-btn {
    padding: 16px 32px;
    background: var(--gold);
    color: var(--blue-dark);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: var(--space-sm);
}

.newsletter-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: min(300px, 100%);
    width: 100%;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-icon {
    font-size: 28px;
}

.footer-logo .logo-text {
    font-size: 22px;
    color: var(--gold);
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--blue-dark);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: var(--space-md);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-contact-list svg {
    color: var(--turquoise);
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-right {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-bottom-right a {
    color: rgba(255,255,255,0.6);
}

.footer-bottom-right a:hover {
    color: var(--gold);
}

/* ============================================================
   20. FLOATING WHATSAPP
   ============================================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(214, 178, 94, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(214, 178, 94, 0.5);
}

/* ============================================================
   21. UTILITIES
   ============================================================ */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--space-sm) !important; }
.mb-2 { margin-bottom: var(--space-md) !important; }
.mb-3 { margin-bottom: var(--space-lg) !important; }
.mb-4 { margin-bottom: var(--space-xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--space-sm) !important; }
.mt-2 { margin-top: var(--space-md) !important; }
.mt-3 { margin-top: var(--space-lg) !important; }
.mt-4 { margin-top: var(--space-xl) !important; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================================
   22. AOS CUSTOM
   ============================================================ */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ============================================================
   23. RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .header-inner {
        height: 85px;
    }
    
    .header-logo img {
        height: 55px;
    }
    
    .brand-name {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    /* Top-bar elrejtése (ha esetleg máshol használnák) */
    .top-bar {
        display: none;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .header-logo img {
        height: 40px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    /* Header actions mobilon */
    .header-actions {
        gap: 10px;
    }
    
    .header-cart,
    .header-whatsapp {
        width: 40px;
        height: 40px;
    }
    
    .header-cta-desktop {
        display: none !important;
    }
    
    .btn-cta {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    /* Hero responsive */
    .hero {
        min-height: 70vh;
        background-attachment: scroll; /* Mobilon scroll, mert fix nem működik jól iOS-en */
    }
    
    .hero-content {
        padding: var(--space-xl) var(--space-md);
    }
    
    .hero-title-script {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
        margin-bottom: var(--space-lg);
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: var(--space-lg);
    }
    
    .hero-quote {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        padding: var(--space-xl) var(--space-md);
    }
    
    .hero-quote::before,
    .hero-quote::after {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .section {
        padding: var(--space-3xl) 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 18px;
    }
    
    .header-logo img {
        height: 34px;
    }
    
    /* Header actions - kompaktabb mobilon */
    .header-actions {
        gap: 8px;
    }
    
    .header-cart,
    .header-whatsapp {
        width: 38px;
        height: 38px;
    }
    
    .header-cart svg,
    .header-whatsapp svg {
        width: 20px;
        height: 20px;
    }
    
    .lang-dropdown-toggle {
        padding: 4px 8px;
    }
    
    .lang-dropdown-toggle svg:first-child {
        width: 20px;
        height: 14px;
    }
    
    .lang-dropdown-arrow {
        width: 10px;
        height: 10px;
    }
}

/* ============================================================
   ABOUT IMAGE SLIDER
   ============================================================ */
.about-image-slider {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-slider .slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
}

.about-image-slider .slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.about-image-slider .slider-image.active {
    opacity: 1;
}

.about-image-slider .slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.about-image-slider .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-image-slider .slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.about-image-slider .slider-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.about-image-slider .slider-drag-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    z-index: 10;
    pointer-events: none;
}

.about-image-slider .slider-drag-hint i {
    font-size: 1rem;
}

/* Slider Fullscreen Button */
.slider-fullscreen-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
    z-index: 15;
}

.slider-fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

/* Fullscreen Gallery */
.fullscreen-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fullscreen-gallery.active {
    display: flex;
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
}

.fullscreen-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
}

.fullscreen-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.fullscreen-prev {
    left: 20px;
}

.fullscreen-next {
    right: 20px;
}

.fullscreen-image-container {
    max-width: 90%;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.fullscreen-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
}

.fullscreen-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    max-width: 90%;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.fullscreen-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.fullscreen-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.fullscreen-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.fullscreen-thumb {
    width: 60px;
    height: 45px;
    border-radius: 4px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.fullscreen-thumb:hover {
    opacity: 0.8;
}

.fullscreen-thumb.active {
    opacity: 1;
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .fullscreen-nav {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .fullscreen-prev {
        left: 10px;
    }
    
    .fullscreen-next {
        right: 10px;
    }
    
    .fullscreen-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
    
    .fullscreen-image-container {
        max-height: 60vh;
    }
    
    .fullscreen-image {
        max-height: 60vh;
    }
    
    .fullscreen-thumb {
        width: 50px;
        height: 38px;
    }
}

/* Slider Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
    z-index: 15;
}

.slider-nav-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav-prev {
    left: 12px;
}

.slider-nav-next {
    right: 12px;
}

@media (max-width: 768px) {
    .slider-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    
    .slider-nav-prev {
        left: 8px;
    }
    
    .slider-nav-next {
        right: 8px;
    }
}

/* Camp Image Slider - Önismereti tábor */
.camp-image-slider {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.camp-image-slider .slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
}

.camp-image-slider .slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.camp-image-slider .slider-image.active {
    opacity: 1;
}

.camp-image-slider .slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.camp-image-slider .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.camp-image-slider .slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.camp-image-slider .slider-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.camp-image-slider .slider-drag-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    z-index: 10;
    pointer-events: none;
}

.camp-image-slider .slider-drag-hint i {
    font-size: 1rem;
}

/* ============================================================
   TESTIMONIALS - TÜRKIZ BUBORÉKOS HÁTTÉR
   ============================================================ */
.testimonials-section {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-dark) 100%);
    position: relative;
    overflow: clip;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-section .testimonials-header h2 {
    color: var(--white);
}

.testimonials-section .testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-section .testimonial-text {
    color: var(--white);
}

.testimonials-section .testimonial-name {
    color: var(--white);
}

.testimonials-section .testimonial-location {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 0.9em;
}

.testimonials-section .testimonial-rating i {
    color: var(--gold);
}

.testimonials-section .testimonial-avatar {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

/* ============================================================
   24. KOMPLEX RESPONSIVE - Minden szekció
   ============================================================ */

/* --- TABLET (768px - 991px) --- */
@media (max-width: 991px) {
    /* Services grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    /* Testimonial kártyák */
    .testimonial-card {
        width: 300px;
    }
    
    /* Section spacing */
    .section-header {
        margin-bottom: var(--space-2xl);
    }
    
    /* Video about grid */
    .video-about-grid {
        gap: var(--space-2xl);
    }
}

/* --- LARGE MOBILE (max 576px) --- */
@media (max-width: 576px) {
    /* Container padding */
    .container {
        padding: 0 14px;
    }
    
    /* Heading font sizes - kisebb minimum */
    h1 { font-size: clamp(1.875rem, 5vw, 2.5rem); }
    h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
    h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
    h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
    
    /* Section padding */
    .section {
        padding: var(--space-2xl) 0;
    }
    
    /* Section header */
    .section-header p {
        font-size: 14px;
    }
    
    /* Hero adjustments */
    .hero-text-bubble {
        padding: var(--space-md) var(--space-md);
        margin: 0 var(--space-sm);
    }
    
    .hero-quote-main {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
    
    /* Services - force single column */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Service card */
    .service-card {
        padding: var(--space-md);
    }
    
    /* Testimonial cards */
    .testimonial-card {
        width: 100%;
        max-width: calc(100vw - 40px);
    }
}

/* --- MOBIL (max 767px) --- */
@media (max-width: 767px) {
    /* Container padding */
    .container {
        padding: 0 16px;
    }
    
    /* Header - gap javítások */
    .header-inner {
        gap: 14px;
    }
    
    .header-logo {
        gap: 8px;
    }
    
    /* Section header */
    .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    /* Services grid - 1 oszlop */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .service-card {
        padding: var(--space-lg);
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: var(--space-md);
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    /* About grid */
    .about-grid {
        gap: var(--space-2xl);
    }
    
    .about-image {
        padding-bottom: 15px;
        padding-right: 15px;
    }
    
    .about-image-badge {
        bottom: 0;
        right: 0;
        padding: 14px 20px;
    }
    
    .about-image-badge strong {
        font-size: 24px;
    }
    
    .about-image-badge span {
        font-size: 12px;
    }
    
    /* Video about */
    .video-about-grid {
        gap: var(--space-xl);
    }
    
    .about-content h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }
    
    /* Testimonials slider */
    .testimonial-card {
        width: min(280px, calc(100vw - 48px));
        padding: var(--space-md);
        box-sizing: border-box;
    }
    
    .testimonial-header {
        gap: 10px;
        margin-bottom: var(--space-sm);
    }
    
    .testimonial-avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .testimonial-name {
        font-size: 14px;
    }
    
    .testimonial-meta-line {
        font-size: 11px;
    }
    
    .testimonial-ratings {
        padding: 8px 10px;
    }
    
    .rating-row {
        font-size: 11px;
        padding: 2px 0;
    }
    
    .rating-row .stars i {
        font-size: 9px;
    }
    
    .testimonial-text {
        font-size: 13px;
        line-height: 1.5;
    }
    
    /* Camps features */
    .camps-features {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .camp-feature {
        gap: 10px;
    }
    
    .camp-feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .camp-feature h4 {
        font-size: 14px;
    }
    
    .camp-feature p {
        font-size: 12px;
    }
    
    /* About me */
    .about-me-grid {
        gap: var(--space-2xl);
    }
    
    .about-me-image::before {
        inset: -12px;
    }
    
    .about-me-content .subtitle {
        font-size: 16px;
    }
    
    /* Newsletter */
    .newsletter-box h2 {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
    }
    
    .newsletter-box p {
        font-size: 14px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    /* Image sliders */
    .about-image-slider .slider-dots,
    .camp-image-slider .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .about-image-slider .slider-dot,
    .camp-image-slider .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    /* ZenLingo section */
    .text-turquoise {
        font-size: 1rem !important;
    }
}

/* --- EXTRA SMALL (max 480px) --- */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 12px;
    }
    
    /* Sections */
    .section {
        padding: var(--space-2xl) 0;
    }
    
    /* Header - kisebb gap */
    .header-inner {
        gap: 10px;
        height: 65px;
    }
    
    .header-logo {
        gap: 6px;
    }
    
    /* Hero text bubble - jobb padding */
    .hero-text-bubble {
        padding: var(--space-md) var(--space-sm);
        margin: 0 4px;
    }
    
    .hero-quote-main {
        font-size: clamp(0.95rem, 4.5vw, 1.2rem);
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    /* Services */
    .service-card {
        padding: var(--space-md);
    }
    
    .service-price {
        font-size: 1rem;
        padding: 6px 10px;
    }
    
    /* Testimonials - reszponzív szélesség */
    .testimonial-card {
        width: calc(100vw - 48px);
        max-width: 280px;
        padding: var(--space-sm) var(--space-md);
    }
    
    .testimonials-header h2 {
        font-size: 1.5rem;
    }
    
    /* Camp price */
    .camp-price {
        padding: var(--space-sm) var(--space-md);
    }
    
    .camp-price-value {
        font-size: 1.1rem;
    }
    
    .camp-price-label {
        min-width: auto;
    }
    
    /* CTA buttons */
    .btn-cta {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    /* Header actions - kosár és CTA elrejtése, csak hamburger */
    .header-actions .btn-cta {
        display: none;
    }
    
    /* About image badge */
    .about-image {
        padding-bottom: 10px;
        padding-right: 10px;
    }
    
    .about-image-badge {
        padding: 12px 16px;
        bottom: 0;
        right: 0;
    }
    
    .about-image-badge strong {
        font-size: 22px;
    }
    
    .about-image-badge span {
        font-size: 11px;
    }
    
    /* Newsletter */
    .newsletter-input,
    .newsletter-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: var(--space-2xl) 0 var(--space-lg);
    }
    
    .footer-title {
        font-size: 14px;
    }
    
    .footer-links a,
    .footer-contact-list li {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .footer-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* --- iPhone SE és hasonló (max 375px) --- */
@media (max-width: 375px) {
    /* Container - kisebb padding */
    .container {
        padding: 0 10px;
    }
    
    /* Header - kompaktabb */
    .header-inner {
        gap: 8px;
        height: 60px;
    }
    
    .header-logo {
        gap: 4px;
    }
    
    .header-logo img {
        height: 30px;
    }
    
    .brand-name {
        font-size: 16px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .header-cart,
    .header-whatsapp,
    .nav-toggle {
        width: 36px;
        height: 36px;
    }
    
    .header-cart svg,
    .header-whatsapp svg {
        width: 18px;
        height: 18px;
    }
    
    .lang-dropdown-toggle {
        padding: 3px 6px;
    }
    
    .lang-dropdown-toggle svg:first-child {
        width: 18px;
        height: 12px;
    }
    
    .lang-dropdown-arrow {
        width: 10px;
        height: 10px;
    }
    
    /* Hero - kisebb */
    .hero {
        min-height: 60vh;
    }
    
    .hero-content {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .hero-text-bubble {
        padding: var(--space-sm) var(--space-sm);
        margin: 0 2px;
        border-radius: 12px;
    }
    
    .hero-quote-main {
        font-size: clamp(0.9rem, 5vw, 1.1rem);
        line-height: 1.4;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    /* Heading font sizes - kisebb minimum */
    h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
    h3 { font-size: clamp(1.2rem, 4vw, 1.5rem); }
    h4 { font-size: clamp(1.05rem, 3vw, 1.25rem); }
    
    /* Section header */
    .section-header p {
        font-size: 14px;
    }
    
    /* Service cards */
    .service-card {
        padding: var(--space-sm) var(--space-md);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: var(--space-sm);
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 13px;
        min-height: auto;
    }
    
    .service-price {
        font-size: 0.9rem;
        padding: 5px 8px;
    }
    
    /* Testimonials */
    .testimonial-card {
        width: calc(100vw - 32px);
        max-width: 260px;
        padding: var(--space-sm);
    }
    
    .testimonial-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .testimonial-name {
        font-size: 13px;
    }
    
    .testimonial-meta-line {
        font-size: 10px;
    }
    
    .testimonial-text {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .rating-row {
        font-size: 10px;
    }
    
    .rating-row .stars i {
        font-size: 8px;
    }
    
    /* Camp features */
    .camp-feature-icon {
        width: 32px;
        height: 32px;
    }
    
    .camp-feature h4 {
        font-size: 13px;
    }
    
    .camp-feature p {
        font-size: 11px;
    }
    
    .camp-price-value {
        font-size: 1rem;
    }
    
    /* About image badge */
    .about-image {
        padding-bottom: 8px;
        padding-right: 8px;
    }
    
    .about-image-badge {
        padding: 10px 14px;
        bottom: 0;
        right: 0;
    }
    
    .about-image-badge strong {
        font-size: 20px;
    }
    
    .about-image-badge span {
        font-size: 10px;
    }
    
    /* About me */
    .about-me-image {
        padding: 10px;
    }
    
    /* CTA buttons */
    .btn-cta {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .btn-hero {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer-social {
        gap: 8px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* --- Extra kicsi (max 320px) --- */
@media (max-width: 320px) {
    /* Container - minimális padding */
    .container {
        padding: 0 8px;
    }
    
    /* Header - még kompaktabb */
    .header-inner {
        gap: 6px;
        height: 56px;
    }
    
    .header-logo img {
        height: 28px;
    }
    
    .brand-name {
        font-size: 14px;
    }
    
    .header-cart,
    .header-whatsapp,
    .nav-toggle {
        width: 34px;
        height: 34px;
    }
    
    /* Hero - még kisebb */
    .hero {
        min-height: 55vh;
    }
    
    .hero-text-bubble {
        padding: var(--space-xs) var(--space-sm);
        border-radius: 10px;
    }
    
    .hero-quote-main {
        font-size: clamp(0.85rem, 5.5vw, 1rem);
    }
    
    .hero-tagline {
        font-size: 0.7rem;
    }
    
    /* Heading font sizes - még kisebb */
    h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
    h2 { font-size: clamp(1.25rem, 6vw, 1.75rem); }
    h3 { font-size: clamp(1.1rem, 5vw, 1.4rem); }
    
    /* Testimonials */
    .testimonial-card {
        width: calc(100vw - 24px);
        max-width: 240px;
    }
    
    /* Service cards */
    .service-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .service-card h3 {
        font-size: 15px;
    }
    
    .service-card p {
        font-size: 12px;
    }
}
