/* --- GLOBÁLIS BEÁLLÍTÁSOK & VÁLTOZÓK --- */
:root {
    --primary: #8e9472;       /* Ügyfél logó alapszíne (Zsályazöld) */
    --primary-hover: #6f7555; /* Sötétebb gomb hover állapot */
    --primary-dark: #54593f;  /* Mélyebb árnyalat a részleteknek */
    --primary-light: #f4f5f0; /* Lágy, meleg világos háttér a szekcióknak */
    --accent: #d4a373;        /* Harmonizáló meleg terrakotta/homok akcentszín */
    --accent-hover: #bc8a5f;  /* Akcentszín hover állapota */
    --text-dark: #2b2d2f;     /* Mély szürkés-barna sötét szövegszín */
    --text-light: #5c6059;    /* Lágyabb leíró szövegek */
    --white: #ffffff;
    --border-radius: 16px;
    --transition: all 0.3s ease-in-out;
    --font-family: 'Quicksand', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    padding: 0 24px;
    margin: 0 auto;
}

/* --- GOMBOK --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* --- HEADER & NAVIGÁCIÓ (Mobil-első verzió) --- */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Fejléc Logó Kép Stílusai */
.logo-img {
  max-height: 70px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* CSS alapú hamburger gomb stílusa */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Átalakulás X-szé, ha az 'active' osztály jelen van */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobil menü panel */
.main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: var(--transition);
}

.main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav ul {
    list-style: none;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.main-nav a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.main-nav a:hover {
    color: var(--primary);
}

/* --- HERO SZEKCIÓ --- */
.hero {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--primary-light) 0%, #ffffff 100%);
}

.hero-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
}

.badge {
    display: inline-block;
    background-color: rgba(142, 148, 114, 0.15);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-image .image-wrapper {
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    background-color: var(--primary-light);
    aspect-ratio: 1 / 1;
}

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

/* --- GYORS INFORMÁCIÓK --- */
.quick-info {
    margin-top: -20px;
    position: relative;
    z-index: 10;
}

.quick-info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-card i {
    color: var(--primary);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.info-card.highlight {
    border-left: 4px solid var(--accent);
}

/* --- SZOLGÁLTATÁSOK CAROUSEL --- */
.services {
    padding: 60px 0;
}

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

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-light);
}

/* Carousel wrapper es gombok pozicionálása */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Vízszintesen görgethető sáv */
.services .carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scrollbar-width: none;

    /* Fontos: padding a két szélén, hogy az első/utolsó elem is középre tudjon állni */
    padding-inline: calc(50% - (80% / 2)); /* 80% a kártya szélessége mobilon */
}

/* Chrome/Safari görgetősáv elrejtése */
.carousel-track::-webkit-scrollbar {
    display: none;
}

/* Kártyák szélessége carousel nézetben */
.service-card {
    flex: 0 0 85%; /* Mobilon a kártya 85%-ot foglal el, így látszik a következő széle */
    scroll-snap-align: center;
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Navigációs gombok stílusa */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition);
}

/* ÚJ: Az SVG ikon explicit méretezése és színkezelése */
.carousel-btn svg,
.carousel-btn i {
    width: 24px;
    height: 24px;
    stroke: currentColor; /* Átveszi a .carousel-btn color értékét */
    stroke-width: 2.5px;   /* Igény szerint vastagítható a nyíl */
    display: block;
}

.carousel-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* RESPONSIVE BEÁLLÍTÁSOK */
@media (min-width: 768px) {
    .service-card {
        flex: 0 0 calc(50% - 12px); /* Tablet méreten 2 kártya látszik egyszerre */
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 0 0 calc(33.333% - 16px); /* Asztali gépen 3 kártya látszik egyszerre */
    }
}

/* --- O NÁS SZEKCIÓ --- */
.about {
    padding: 80px 0;
    background-color: #f9fafb; /* Finom szürke háttér, ami elválasztja a szolgáltatásoktól */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-dark, #1f2937);
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-team-info {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.team-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.team-badge svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Orvosi kártya stílusai */
.about-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

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

/* Orvosi fotó keret (Hero stílusú kártya keret) */
/* Organikus "Blob" alakú képkeret */
.doctor-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* A kerekded blob alakzathoz az 1:1 arány mutat a legjobban */
    margin: 0 auto 24px auto;
    overflow: hidden;
    /* A 8 érték adja meg a képen látható szabálytalan organikus formát: */
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transition: var(--transition);
    background-color: var(--primary-light);
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Kitölti a teljes formát, a szélei szépen vágódnak */
    object-position: center top; /* Arcra igazítva */
    display: block;
    transition: transform 0.4s ease;
}

/* Finom interakció finom mozgással lebegéskor (hover) */
.about-card:hover .doctor-image-wrapper {
    /* Hoverre kissé torzul/átrendeződik az alakzat a játékos hatásért */
    border-radius: 58% 42% 38% 62% / 55% 50% 50% 45%;
}

.about-card:hover .doctor-img {
    transform: scale(1.05);
}

.doctor-profile h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.doctor-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.doctor-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.doctor-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.doctor-highlights li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Responsive elrendezés (Asztali nézet) */
@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }
}

/* --- PARALLAX IDÉZET SZEKCIÓ --- */
.quote-parallax {
    position: relative;
    padding: 100px 20px;
    background-image: url('https://images.unsplash.com/photo-1576201836106-db1758fd1c97?w=1400&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8Z29sZGVuJTIwcmV0cmlldmVyJTIwd2FybSUyMGxpZ2h0fGVufDB8MHwwfHx8Mg%3D%3D'); /* Vagy egy hangulatos kép a rendelőről/állatokról */
    background-attachment: fixed; /* Ez hozza létre a parallax hatást */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: var(--white, #ffffff);
    overflow: hidden;
}

/* Sötétítő réteg a jó olvashatóságért */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.quote-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-size: 1.6rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
    margin: 0 0 20px 0;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.quote-author {
    display: block;
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
    color: var(--primary-light, #e8f0e6); /* Vagy a márka világosabb árnyalata */
}

/* Mobilon az iOS / Android Safari nem mindig támogatja jól a background-attachment: fixed-et */
@media (max-width: 768px) {
    .quote-parallax {
        background-attachment: scroll; /* Mobilon stabilabb görgetést biztosít */
        padding: 70px 20px;
    }

    .quote-text {
        font-size: 1.25rem;
    }
}

/* Asztali nézetben (1024px felett) magasabb parallax szekció */
@media (min-width: 1024px) {
    .quote-parallax {
        padding: 160px 20px; /* A korábbi 100px helyett 160px alsó-felső padding */

        /* Alternatíva: fix minimális magasság és flexbox középre igazítás */
        /*
        min-height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        */
    }
}

/* --- ZVIERATÁ SZEKCIÓ --- */
.animals {
    padding: 80px 0;
    background-color: var(--white);
}

.animals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.animal-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.animal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.animal-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.animal-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2px;
}

.animal-card:hover .animal-icon {
    background-color: var(--primary);
    color: var(--white);
}

.animal-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark, #1f2937);
}

.animal-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.animal-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

/* FontAwesome ikon méretezése */
.animal-icon i {
    font-size: 28px;
}

.animal-card:hover .animal-icon {
    background-color: var(--primary);
    color: var(--white);
}

/* RESPONSIVE BEÁLLÍTÁSOK */
@media (min-width: 640px) {
    .animals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .animals-grid {
        grid-template-columns: repeat(5, 1fr); /* Asztali gépen mind az 5 egy sorban látszik szépen */
    }
}

/* --- GALÉRIA CAROUSEL --- */
.gallery {
    padding: 80px 0;
    background-color: #f4f5f0;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 4px 20px 4px;
    scrollbar-width: none; /* Firefox scrollbar elrejtése */
}

.gallery-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari scrollbar elrejtése */
}

.gallery-item {
    flex: 0 0 85%; /* Mobilon a kép 85%-ot foglal el */
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Finom zoom effekt lebegéskor */
}

/* Galéria kártya stílusok */
.gallery-card {
    flex: 0 0 85%; /* Mobilon egy kép 85%-ot foglal el */
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* Responsiveness */
@media (min-width: 640px) {
    .gallery-card {
        flex: 0 0 calc(50% - 12px); /* Tableten 2 kép látszik egyszerre */
    }
}

@media (min-width: 1024px) {
    .gallery-card {
        flex: 0 0 calc(33.333% - 16px); /* Asztali gépen 3 kép látszik egyszerre */
    }
}

/* Responsive kártyaméretezés */
@media (min-width: 640px) {
    .gallery-item {
        flex: 0 0 calc(50% - 10px); /* Tableten 2 kép látszik */
    }
}

@media (min-width: 1024px) {
    .gallery-item {
        flex: 0 0 calc(33.333% - 14px); /* Asztali gépen 3 kép látszik */
    }
}

/* --- GALÉRIA SZEKCIÓ STÍLUSOK --- */
.gallery {
    padding: 80px 0;
    background-color: var(--primary-light);

    /* --- KÉPMÉRET BEÁLLÍTÁSOK (Itt módosíthatod könnyen) --- */
    --gallery-aspect-ratio: 4 / 3;    /* Képarány: 16/9, 4/3, 1/1 (négyzet), stb. */
    --gallery-card-max-height: 380px; /* Max magasság */
}

.gallery .carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* Közepezi a track-et a wrapperen belül */
    max-width: 100%;
}

.gallery .carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 12px 4px 24px 4px;
    scrollbar-width: none;

    justify-content: flex-start;
    width: 100%;
    margin: 0 auto;
}

.gallery .carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge scrollbar elrejtése */
}

/* Navigációs gombok kívülre pozicionálása */
.gallery .prev-btn {
    left: -20px;
    z-index: 20;
}

.gallery .next-btn {
    right: -20px;
    z-index: 20;
}

.gallery-card {
    flex: 0 0 85%; /* Mobilon a kártya 85%-ot foglal el */
    aspect-ratio: var(--gallery-aspect-ratio); /* JAVÍTVA: Változó használata */
    max-height: var(--gallery-card-max-height);  /* JAVÍTVA: Max magasság hozzáadva */
    scroll-snap-align: start;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Finom nagyítás hoverre */
.gallery-card:hover img {
    transform: scale(1.05);
}

/* Responsiveness (Breakpoints) */
@media (min-width: 640px) {
    .gallery-card {
        flex: 0 0 calc((100% - 20px) / 2); /* Tableten 2 kép */
    }
}

@media (min-width: 1024px) {
    .gallery-card {
        flex: 0 0 calc((100% - 40px) / 3); /* Asztali nézetben 3 kép */
    }
}


/* --- GOOGLE ÉRTÉKELÉSEK SZEKCIÓ --- */
.reviews {
    padding: 80px 0;
    background-color: var(--white);
}

.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    padding: 24px;
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    text-align: center;
}

.summary-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.score-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.score-stars,
.review-stars {
    color: #f59e0b; /* Értékelés csillag sárga szín */
    display: flex;
    gap: 4px;
}

.score-stars i,
.review-stars i {
    font-size: 1.1rem;
}

.score-count {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.review-google-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
}

/* Review kártyák és carousel szerkezet */
.reviews .carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 15px 4px 25px 4px;
    scrollbar-width: none;
    width: 100%;
}

.reviews .carousel-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 85%; /* Mobilon a kártya szélessége 85% */
    scroll-snap-align: center;
    background-color: var(--white);
    padding: 28px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    border-color: var(--primary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reviewer-info h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.google-icon {
    font-size: 1.2rem;
    color: #4285f4; /* Google ikon kék szín */
    position: absolute;
    top: 0;
    right: 0;
}

.review-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Responsiveness (Breakpoints) */
@media (min-width: 640px) {
    .reviews-summary {
        flex-direction: row;
        justify-content: space-between;
        padding: 24px 40px;
        text-align: left;
    }

    .summary-score {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .review-card {
        flex: 0 0 calc((100% - 20px) / 2); /* Tableten 2 kártya egymás mellett */
    }
}

@media (min-width: 1024px) {
    .review-card {
        flex: 0 0 calc((100% - 40px) / 3); /* Asztali gépen 3 kártya egymás mellett */
    }
}



/* --- GYIK --- */
.faq {
    padding: 60px 0;
}

.faq-accordion {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fcfdfa;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- KAPCSOLAT & FOGLALÁS --- */
.contact {
    padding: 60px 0;
    background-color: var(--primary-light);
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-item i {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.detail-item span {
    font-weight: 600;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fcfdfa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(142, 148, 114, 0.2);
}

.hidden {
    display: none !important;
}

.form-success-message {
    text-align: center;
    padding: 20px 0;
}

.form-success-message i {
    color: #6f7555;
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.form-success-message h3 {
    margin-bottom: 8px;
}

/* --- KAPCSOLAT & FOGLALÁS MÓDOSÍTÁSOK --- */
.contact-logo {
    margin-bottom: 24px;
}

.contact-logo-img {
    max-height: 120px;
    width: auto;
    display: block;
}

/* Térkép konténer stílusa */
.map-container {
    margin-top: 48px;
}

.map-wrapper {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: var(--white);
    line-height: 0; /* Megszünteti az iframe alatti felesleges space-t */
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    filter: grayscale(10%) contrast(98%); /* Finom, lágyabb színtónus a dizájnhoz */
    transition: var(--transition);
}

.map-wrapper:hover iframe {
    filter: none; /* Hoverre visszakapja a teljes telítettséget */
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

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

.footer-sub {
    font-size: 0.85rem;
    color: #9ea39a;
}

/* --- FOOTER CREATOR LINK STÍLUS --- */
.footer-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7); /* Vagy a footer szövegszínéhez illő árnyalat */
}

.creator-link {
    color: inherit; /* Felveszi a szülő szöveg színét */
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

/* Elegáns, animált aláhúzás vonal */
.creator-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: var(--primary, #2d5a27); /* Vagy a márka kiemelő színe */
    transform: scaleX(0.4);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out, background-color 0.3s ease;
    opacity: 0.8;
}

/* Hover / Focus állapot */
.creator-link:hover,
.creator-link:focus {
    color: var(--primary, #2d5a27); /* Színváltás hoverre */
}

.creator-link:hover::after,
.creator-link:focus::after {
    transform: scaleX(1);
    transform-origin: bottom left;
    opacity: 1;
}

/* ==========================================================================
   RESPONZÍV MEGJELENÉS (768PX-TŐL)
   ========================================================================== */
@media (min-width: 768px) {
    .container {
        max-width: 1140px;
        padding: 0 40px;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        width: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: none;
    }

    .main-nav ul {
        flex-direction: row;
        padding: 0;
        gap: 32px;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
        padding: 60px 0;
    }

    .hero-content {
        flex: 1.2;
    }

    .hero-image {
        flex: 0.8;
    }

    .hero-actions {
        flex-direction: row;
    }

    .quick-info-grid {
        flex-direction: row;
        gap: 24px;
    }

    .info-card {
        flex: 1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .about-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .about-image, .about-content {
        flex: 1;
    }

    .contact-container {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .contact-info, .contact-form-wrapper {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}