/* ==========================================================================
   Csahol-lak Kutyapanzió – kiegészítő stílusok

   Ez a fájl CSAK hozzáad a sablonhoz. A css/style.css-t nem módosítottuk,
   így a sablon eredeti arculata sértetlen marad, és egy esetleges
   sablonfrissítés sem írja felül az itteni beállításokat.
   ========================================================================== */

:root {
    --csl-brand: #5c7767;
    --csl-brand-soft: #7e9b8b;
    --csl-ink: #191d34;
    --csl-muted: #585862;
}

/* --------------------------------------------------------- segéd osztályok */
.mb-60 {
    margin-bottom: 60px;
}

/* ==========================================================================
   FEJLÉC
   A sablonban egy tömör fekete sáv ült a fejléc fölött, ami nehéznek hatott
   a világos, meleg oldal tetején. Helyette egy vékony, krémszínű infósáv van,
   ami görgetéskor eltűnik – marad a letisztult logó | menü | gomb sor.
   ========================================================================== */

/* --- felső infósáv --- */
.header-top_area {
    background: #f2f6f3 !important;
    border-bottom: 1px solid #dfe8e3;
}

.topbar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 42px;
}

.topbar_contact {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar_contact li,
.topbar_contact li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    line-height: 1;
    color: #6c7a72;
    font-family: "Open Sans", sans-serif;
}

.topbar_contact li a:hover {
    color: var(--csl-brand);
}

.topbar_contact i,
.topbar_social i {
    font-size: 13px;
    color: var(--csl-brand);
}

.topbar_social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar_social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: 0.25s;
}

.topbar_social a:hover {
    background: rgba(92, 119, 103, 0.12);
}

.topbar_partner {
    width: 48px !important;
    height: 48px !important;
    padding: 4px;
    border-radius: 6px !important;
}

.topbar_partner img {
    display: block;
    width: auto;
    height: 40px;
    object-fit: contain;
}

@media (max-width: 575px) {
    .topbar_inner {
        justify-content: center;
        gap: 14px;
    }

    .topbar_contact {
        gap: 16px;
    }

    /* a nyitvatartás a láblécben és a Kapcsolat oldalon is szerepel */
    .topbar_hours {
        display: none !important;
    }

    .topbar_contact li,
    .topbar_contact li a {
        font-size: 12.5px;
    }
}

/* --- fő sor: logó | menü | gomb --- */
.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 92px;
}

.header_inner .logo {
    flex: 0 0 auto;
    line-height: 0;
}

.header_inner .main-menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.header_actions {
    flex: 0 0 auto;
    align-items: center;
    gap: 18px;
}

.header_phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--csl-ink);
    white-space: nowrap;
}

.header_phone i {
    color: var(--csl-brand);
    font-size: 15px;
}

.header_phone:hover {
    color: var(--csl-brand);
}

.header_cta {
    display: inline-block;
    background-image: linear-gradient(0deg, #7e9b8b 0%, #aec5b7 99%);
    color: #fff !important;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    padding: 14px 26px;
    border-radius: 30px;
    white-space: nowrap;
    transition: 0.3s;
}

.header_cta:hover {
    box-shadow: 0 10px 20px rgba(92, 119, 103, 0.35);
    transform: translateY(-1px);
}

/* --- menüpontok: egyenletes ritmus + aktív jelölés --- */
.main-menu ul#navigation {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-menu ul#navigation > li {
    margin: 0;
    position: relative;
}

.main-menu ul#navigation > li > a {
    display: block;
    padding: 34px 15px;
    font-size: 15px;
    letter-spacing: 0.1px;
}

.main-menu ul#navigation > li > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 26px;
    height: 2px;
    border-radius: 2px;
    background-image: linear-gradient(0deg, #7e9b8b 0%, #aec5b7 99%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}

.main-menu ul#navigation > li > a:hover::after,
.main-menu ul#navigation > li.active > a::after {
    transform: scaleX(1);
}

.main-menu ul#navigation > li.active > a {
    color: var(--csl-brand);
}

/* --- görgetéskor: az infósáv eltűnik, a fő sor tömörebb lesz --- */
#sticky-header.sticky {
    box-shadow: 0 6px 24px rgba(25, 29, 52, 0.09);
}

#sticky-header.sticky .header_inner {
    min-height: 76px;
}

#sticky-header.sticky .main-menu ul#navigation > li > a {
    padding-top: 26px;
    padding-bottom: 26px;
}

#sticky-header.sticky .main-menu ul#navigation > li > a::after {
    bottom: 18px;
}

/* A fejlécnek szélesebb sáv kell, mint a tartalomnak: logó + 6 menüpont +
   telefonszám + gomb nem fér el a sablon 1140px-es konténerében. */
@media (min-width: 1400px) {
    .header-area .container {
        max-width: 1320px;
    }
}

/* 1400px alatt a telefonszám a felső infósávban marad, hogy a menü ne
   szoruljon ki a konténerből. */
@media (max-width: 1399px) {
    .header_phone {
        display: none;
    }
}

/* a menü zsugorodhasson, a gomb ne */
.header_inner .main-menu {
    min-width: 0;
}

.main-menu ul#navigation {
    flex-wrap: nowrap;
}

/* --- szűkebb asztali gépeken kisebb térköz --- */
@media (min-width: 992px) and (max-width: 1299px) {
    .header_inner {
        gap: 12px;
    }

    .main-menu ul#navigation > li > a {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 14px;
    }

    .main-menu ul#navigation > li > a::after {
        left: 9px;
        right: 9px;
    }

    .header_cta {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header_inner .logo img {
        width: 186px;
        height: auto;
    }
}

/* --- mobil --- */
@media (max-width: 991px) {
    .header_inner {
        min-height: 74px;
        gap: 12px;
    }

    .header_inner .mobile_menu {
        flex: 1 1 auto;
    }

    .header_inner .logo img {
        width: 190px;
        height: auto;
    }
}

/* az Időpontfoglalás a mobil menüben is legyen kiemelve */
.slicknav_nav .nav_cta > a {
    color: var(--csl-brand);
    font-weight: 600;
}

/* ------------------------------------------------------------------ hero kép
   A sablonban a hero-kép egy kivágott kutya volt, sok átlátszó margóval.
   A mi fotónk teljesen kitölti a képet, ezért kicsit jobbra és beljebb kerül,
   hogy a szöveggel semmilyen képernyőszélességen ne érjen össze.

   A .dog_thumb abszolút pozicionált és nincs szélessége, ezért a kép a saját
   natív méretében jelenne meg – a fájl viszont 2x-es (1400px), hogy Retinán
   is éles legyen. Ezért itt rögzítjük a megjelenítési szélességet.          */
.slider_area .dog_thumb {
    width: 700px;
    /* soha ne érjen a képernyő széléhez: a kép fehér kerete így nem vágódik le */
    right: max(2%, 20px);
}

.slider_area .dog_thumb picture {
    display: block;
}

.slider_area .dog_thumb img {
    width: 100%;
    max-width: 100% !important;
    height: auto;
}

@media (min-width: 1501px) and (max-width: 1750px) {
    .slider_area .dog_thumb {
        width: 600px;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .slider_area .dog_thumb {
        width: 545px;
        right: max(1.5%, 20px);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .slider_area .dog_thumb {
        width: 450px;
        right: max(2%, 18px);
    }
}

/* --------------------------------------------------- másodlagos "szellem" gomb */
.slider_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.boxed-btn4.btn_ghost,
.boxed-btn3.btn_ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.85);
    color: #fff;
}

.boxed-btn4.btn_ghost:hover {
    background: #fff;
    border-color: #fff;
    color: #5c7767;
}

@media (max-width: 767px) {
    .slider_area .single_slider .slider_text .boxed-btn4 {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* --------------------------------------- szolgáltatás kártyák: azonos magasság
   A sablon 3 rövid kártyával számolt; nálunk 6 van, eltérő hosszúságú
   szöveggel, ezért egy soron belül azonos magasságúra húzzuk őket.          */
.service_area .row > [class*="col-"] {
    display: flex;
}

.service_area .row > [class*="col-"] > .single_service {
    width: 100%;
}

.service_area .row.justify-content-center > .col-lg-7,
.service_area .row.justify-content-center > .col-md-10 {
    display: block;
}

/* ------------------------------------------- szolgáltatás kártya cím linkje */
.service_area .single_service .service_content h3 a {
    color: inherit;
    transition: 0.3s;
}

.service_area .single_service:hover .service_content h3 a {
    color: var(--csl-brand);
}

/* ------------------------------------------------------------ "Miért mi?" blokk
   A sablonban ez a szekció nagy számlálókat mutatott (60px-es számok).
   Nálunk szöveg van a helyükön, ezért a méret ehhez igazodik.            */
.adapt_area .adapt_about .single_adapt .adapt_content h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-top: 18px;
    display: block;
}

.adapt_area .adapt_about .single_adapt .adapt_content p {
    font-size: 16px;
    line-height: 27px;
    margin-top: 10px;
}

.adapt_area .adapt_about .single_adapt {
    padding: 34px 30px 30px 30px;
}

/* ------------------------------------------------ ígéret idézet (testmonial) */
.testmonial_area .testmonial_wrap .single_testmonial {
    box-shadow: 0px 16px 35px 0px rgba(0, 0, 2, 0.08);
    border-radius: 10px;
    padding: 55px 70px;
}

.testmonial_area .single_testmonial .test_content p {
    font-style: italic;
}

@media (max-width: 767px) {
    .testmonial_area .testmonial_wrap .single_testmonial {
        padding: 30px;
        text-align: center;
    }

    .testmonial_area .testmonial_wrap .single_testmonial .test_thumb {
        margin: 0 auto 25px auto;
    }
}

/* ------------------------------------------------- szolgáltatás részletek oldal */
.service_details_area {
    padding-bottom: 130px;
}

.service_detail_row {
    padding: 55px 0;
    border-top: 1px solid #e3ebe6;
}

.service_detail_row:first-child {
    border-top: 0;
}

.service_detail_thumb img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0px 16px 35px 0px rgba(0, 0, 2, 0.1);
}

.service_detail_icon {
    height: 58px;
    width: auto;
    margin-bottom: 18px;
}

.service_detail_info .section_title h3 {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 20px;
}

.service_detail_info .section_title p {
    color: var(--csl-muted);
    line-height: 30px;
    margin-bottom: 18px;
}

.service_detail_info .boxed-btn3 {
    margin-top: 18px;
    padding: 14px 42px;
    font-size: 16px;
}

/* A HTML-ben mindig a kép jön előbb (mobilon ez a helyes sorrend);
   nagy képernyőn minden második sorban felcseréljük őket. */
@media (min-width: 992px) {
    .service_detail_row.is_flipped .svc_thumb_col {
        order: 2;
    }
}

@media (max-width: 991px) {
    .service_details_area {
        padding-bottom: 60px;
    }

    .service_detail_row {
        padding: 35px 0;
    }

    .service_detail_thumb {
        margin-bottom: 30px;
    }
}

/* --------------------------------------------------------------- Rólunk: gazdi */
.owner_area {
    background: #f4f7f5;
    padding: 110px 0 100px 0;
}

.owner_area .section_title h3 {
    margin-bottom: 34px;
}

.owner_text p {
    font-size: 17px;
    line-height: 32px;
    color: var(--csl-muted);
    margin-bottom: 22px;
}

@media (max-width: 767px) {
    .owner_area {
        padding: 60px 0 50px 0;
    }
}

/* ------------------------------------------------------------------- árak oldal */
.prising_area .prise_title h4 {
    padding-bottom: 12px;
    border-bottom: 2px solid #dfe8e2;
}

.prising_area .single_prising {
    margin-bottom: 26px;
}

/* A sablon pontozott vezetővonala (.prise::before) hosszabb nevek mellett
   beleszaladt az árba – a feliratok hátteret és térközt kapnak, hogy a
   vonal mindig mögöttük fusson, ne rajtuk. */
.prising_area .single_service .hair_style_info .prise {
    gap: 16px;
}

.prising_area .single_service .hair_style_info .prise span {
    position: relative;
    background: #f4f7f5;
    padding-right: 8px;
}

.prising_area .single_service .hair_style_info .prise span:first-child {
    flex: 0 1 auto;
}

.prising_area .single_service .hair_style_info .prise span:last-child {
    color: var(--csl-brand);
    font-weight: 600;
    white-space: nowrap;
    flex: 0 0 auto;
    padding-right: 0;
    padding-left: 8px;
}

.price_note {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0px 16px 35px 0px rgba(0, 0, 2, 0.07);
    padding: 40px 45px;
    margin-top: 20px;
}

.price_note h4 {
    font-size: 22px;
    color: var(--csl-ink);
    margin-bottom: 20px;
}

.price_note ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.price_note li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--csl-muted);
    line-height: 28px;
}

.price_note li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-image: linear-gradient(0deg, #7e9b8b 0%, #aec5b7 99%);
}

@media (max-width: 767px) {
    .price_note {
        padding: 28px 24px;
    }
}

/* --------------------------------------------------------------------- galéria */

/* a sablon alap hover-színe olívazöld volt – itt a márkaszínre váltjuk */

/* -------------------------------------------------------------- időpontfoglalás */
.booking_panel {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0px 16px 35px 0px rgba(0, 0, 2, 0.08);
    padding: 22px;
    margin-bottom: 40px;
    min-height: 300px;
}

.make_apppointment_area .appointMent_info .single_appontment a {
    color: var(--csl-brand);
}

.make_apppointment_area .appointMent_info {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0px 16px 35px 0px rgba(0, 0, 2, 0.06);
    padding: 36px 32px 10px 32px;
}

/* ------------------------------------------------------------------- kapcsolat */
.form-contact .form-control {
    font-size: 16px;
}

/* az űrlap gombja ugyanolyan legyen, mint az oldal többi fő gombja */
.contact-section .button-contactForm {
    background-image: linear-gradient(0deg, #7e9b8b 0%, #aec5b7 99%);
    border: 0;
    /* a sablon .boxed-btn szabálya !important-tal állítja a színt */
    color: #fff !important;
    border-radius: 30px;
    padding: 15px 46px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    transition: 0.3s;
}

.contact-section .button-contactForm:hover {
    background-image: linear-gradient(0deg, #7e9b8b 0%, #aec5b7 99%);
    border: 0;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(92, 119, 103, 0.35);
}

.map_embed iframe {
    display: block;
    width: 100%;
    border-radius: 14px;
}

.contact-info h3 a {
    color: inherit;
}

.contact-info h3 a:hover {
    color: var(--csl-brand);
}

/* --------------------------------------------------------------------- lábléc */
.footer .footer_top .footer_widget .address_line li a {
    color: inherit;
}

.footer .footer_top .footer_widget .address_line li a:hover {
    color: var(--csl-brand);
}

/* --------------------------------------------------- hosszabb menü elférjen lg-n */
@media (min-width: 992px) and (max-width: 1199px) {
    .main-menu ul#navigation li a {
        padding: 39px 9px;
        font-size: 15px;
    }

    .main-menu ul#navigation li.nav_cta > a {
        padding: 9px 18px;
    }
}

/* ==========================================================================
   IKONOK 2x MÉRETBEN
   Az ikonfájlok duplaméretűek, hogy Retina kijelzőn is élesek legyenek;
   a megjelenítési méretet itt rögzítjük.
   ========================================================================== */
.service_area .single_service .service_thumb .service_icon img {
    height: 80px;
    width: auto;
}

.adapt_area .adapt_about .single_adapt > img {
    height: 74px;
    width: auto;
}

/* ==========================================================================
   GÖRGETÉSI ANIMÁCIÓK
   A sablonhoz járó wow.js-t nem használjuk (nehézkes és sosem volt bekötve);
   helyette IntersectionObserver + CSS átmenet, lásd js/csahol-lak.js.

   FONTOS: az elrejtést maga a JS kapcsolja be (a <html>-re kerülő
   .reveal-ready osztállyal), így ha a JS nem fut le, minden látható marad.
   ========================================================================== */
.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

/* Oldalirányú beúszás csak széles asztali nézetben: keskenyebb kijelzőn a
   Bootstrap konténer melletti kis tér miatt vízszintes görgetést okozna. */
@media (min-width: 1200px) {
    .reveal-ready [data-reveal="left"]  { transform: translateX(-34px); }
    .reveal-ready [data-reveal="right"] { transform: translateX(34px); }
}

.reveal-ready [data-reveal="zoom"]  { transform: scale(0.96); }

.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* animáció után engedjük el a GPU-réteget */
.reveal-ready [data-reveal].reveal-done {
    will-change: auto;
    transition: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-ready [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* finom emelkedés a kártyákon, hogy az oldal élőnek hasson */
.service_area .single_service,
.adapt_area .adapt_about .single_adapt,
.team_area .single_team .thumb,

.service_area .single_service:hover,
.adapt_area .adapt_about .single_adapt:hover {
    transform: translateY(-6px);
}

/* Az Időpontfoglalás asztali nézetben gombként él a .header_actions-ben,
   a menülistában csak azért van benne, hogy a mobil menübe is bekerüljön. */
@media (min-width: 992px) {
    .main-menu ul#navigation > li.nav_cta {
        display: none;
    }
}

/* ==========================================================================
   MOBIL MENÜ (slicknav)
   Letisztult hamburger ikon keret nélkül, ami nyitáskor X-re vált.
   A tapintható terület 48x48 px marad, akkor is, ha az ikon kisebb.
   ========================================================================== */
.mobile_menu .slicknav_menu {
    background: transparent;
    padding: 0;
}

.mobile_menu .slicknav_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 12px;
    box-shadow: none;
    transition: background 0.25s ease;
}

.mobile_menu .slicknav_btn:hover,
.mobile_menu .slicknav_btn:focus-visible {
    background: rgba(92, 119, 103, 0.09);
}

.mobile_menu .slicknav_menutxt {
    display: none;
}

.mobile_menu .slicknav_icon {
    position: relative;
    width: 24px;
    height: 16px;
    margin: 0;
}

.mobile_menu .slicknav_icon-bar {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2.5px;
    border-radius: 2px;
    background-color: var(--csl-ink) !important;
    box-shadow: none !important;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.2s ease,
                background-color 0.25s ease;
}

.mobile_menu .slicknav_icon-bar:nth-child(1) { top: 0; }
.mobile_menu .slicknav_icon-bar:nth-child(2) { top: 7px; width: 18px; }
.mobile_menu .slicknav_icon-bar:nth-child(3) { top: 14px; }

/* nyitott állapot: X */
.mobile_menu .slicknav_open .slicknav_icon-bar {
    background-color: var(--csl-brand) !important;
}

.mobile_menu .slicknav_open .slicknav_icon-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile_menu .slicknav_open .slicknav_icon-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-6px);
}

.mobile_menu .slicknav_open .slicknav_icon-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* legördülő panel */
.mobile_menu .slicknav_nav {
    margin-top: 12px;
    padding: 8px;
    background: #fff;
    border: 1px solid #e0e9e4;
    border-radius: 16px;
    box-shadow: 0 20px 44px rgba(25, 29, 52, 0.14);
}

.mobile_menu .slicknav_nav li {
    border: 0;
}

.mobile_menu .slicknav_nav a {
    display: block;
    margin: 0;
    padding: 14px 16px;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: var(--csl-ink);
    transition: 0.2s;
}

.mobile_menu .slicknav_nav a:hover {
    background: #f2f6f3;
    color: var(--csl-brand);
}

.mobile_menu .slicknav_nav li.active > a {
    color: var(--csl-brand);
    font-weight: 600;
}

.mobile_menu .slicknav_nav li.nav_cta {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid #e4ece7;
}

.mobile_menu .slicknav_nav li.nav_cta > a {
    background-image: linear-gradient(0deg, #7e9b8b 0%, #aec5b7 99%);
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.mobile_menu .slicknav_nav li.nav_cta > a:hover {
    color: #fff;
}

/* ==========================================================================
   HOSSZÚ MAGYAR ÖSSZETETT SZAVAK
   Az "Alapengedelmesség" típusú, kötőjel nélküli hosszú szavak kis kijelzőn
   kilógtak a konténerből. Szükség esetén törhetnek, és kis képernyőn
   arányosan kisebb a címméret.
   ========================================================================== */
h1, h2, h3, h4, h5,
.section_title h3,
.service_content h3,
.price_note h4,
.footer_title {
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 575px) {
    .service_detail_info .section_title h3 {
        font-size: 25px;
        line-height: 33px;
    }

    .section_title h3 {
        font-size: 26px;
        line-height: 34px;
    }

    .service_area .single_service .service_content h3 {
        font-size: 21px;
        margin-top: 32px;
        margin-bottom: 16px;
    }

    .contact_anipat .contact_text .section_title p {
        font-size: 18px;
        line-height: 30px;
    }
}

@media (max-width: 380px) {
    .section_title h3,
    .service_detail_info .section_title h3 {
        font-size: 23px;
        line-height: 31px;
    }

    .bf_success h4 {
        font-size: 22px;
    }
}

/* ==========================================================================
   GALÉRIA – MOZAIK
   A képek a saját arányukban jelennek meg (kilenc fotó eredetileg álló),
   szoros térközzel, változó magassággal. Nincs vágás és nincs felirat.
   CSS-oszlopos elrendezés: minden böngészőben működik, JS nélkül.
   ========================================================================== */
.mosaic {
    column-count: 4;
    column-gap: 10px;
}

.mosaic_item {
    display: block;
    position: relative;
    margin: 0 0 10px 0;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

.mosaic_item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* nagyító ikon + finom márkaszínű fátyol hoverre */
.mosaic_item::before,
.mosaic_item::after {
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.mosaic_item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(92, 119, 103, 0.42);
    z-index: 1;
}

.mosaic_item::after {
    content: "\e61a";                 /* themify plusz ikon */
    font-family: "themify";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    color: var(--csl-brand);
    font-size: 18px;
    z-index: 2;
}

.mosaic_item:hover::before,
.mosaic_item:hover::after,
.mosaic_item:focus-visible::before,
.mosaic_item:focus-visible::after {
    opacity: 1;
}

.mosaic_item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1399px) {
    .mosaic { column-count: 3; }
}

@media (max-width: 767px) {
    .mosaic { column-count: 2; column-gap: 8px; }
    .mosaic_item { margin-bottom: 8px; border-radius: 8px; }
    .mosaic_item::after { width: 40px; height: 40px; line-height: 40px; font-size: 15px; }
}

@media (max-width: 359px) {
    .mosaic { column-count: 1; }
}

.gallery_area {
    padding-bottom: 100px;
}

/* ==========================================================================
   "A HÁZ LAKÓI" – közös fotó a négy kutyáról
   ========================================================================== */
.pack_photo {
    margin: 0 0 60px 0;
}

.pack_photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(25, 29, 52, 0.13);
}

.pack_photo figcaption {
    margin-top: 16px;
    text-align: center;
    font-size: 15px;
    color: var(--csl-muted);
}

@media (max-width: 767px) {
    .pack_photo {
        margin-bottom: 40px;
    }

    .pack_photo img {
        border-radius: 12px;
    }
}

/* a "fotó hamarosan" kártya ne tűnjön hibának: ugyanaz a forma, halkabb hang */
.team_area .single_team .thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* négy kutya négyes rácsban: kisebb kártyák, arányosan kisebb névtábla */
.team_area .col-lg-3 .single_team .member_name .mamber_inner h4 {
    font-size: 19px;
}

.team_area .col-lg-3 .single_team .member_name .mamber_inner p {
    font-size: 14px;
    line-height: 20px;
}

.team_area .col-lg-3 .single_team .member_name .mamber_inner {
    padding: 16px 10px;
}

@media (max-width: 575px) {
    /* két kártya egymás mellett telefonon is elfér, mert a folt alacsony */
    .team_area .col-6 .single_team .member_name .mamber_inner h4 {
        font-size: 16px;
    }

    .team_area .col-6 .single_team .member_name .mamber_inner p {
        font-size: 13px;
        line-height: 18px;
    }

    .team_area .col-6 .single_team .member_name .mamber_inner {
        padding: 12px 6px;
    }
}

/* ==========================================================================
   RÓLUNK – képpáros
   A sablon a kisebb képet fix 50%x60% dobozba feszíti (width+height 100%),
   ami kis kijelzőn széthúzta a fotót. object-fit-tel inkább vág, nem torzít.
   ========================================================================== */
.about_area .about_thumbs .large_img_1 img,
.about_area .about_thumbs .small_img_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about_area .about_thumbs .large_img_1 img {
    height: auto;
    border-radius: 12px;
}

.about_area .about_thumbs .small_img_1 {
    border-radius: 12px;
    overflow: hidden;
}

/* ==========================================================================
   KEZDŐLAP – PILLANATKÉPEK CSÍK
   ========================================================================== */
.photo_strip {
    padding: 20px 0 110px 0;
}

.strip_shot {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    line-height: 0;
    box-shadow: 0 12px 28px rgba(25, 29, 52, 0.10);
}

.strip_shot img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.strip_shot:hover img {
    transform: scale(1.06);
}

.strip_more {
    margin-top: 14px;
    padding: 14px 42px;
    font-size: 16px;
}

@media (max-width: 767px) {
    .photo_strip {
        padding-bottom: 60px;
    }

    .strip_shot {
        margin-bottom: 16px;
        border-radius: 10px;
    }
}

/* árlista: a kis körképek helyett tiszta, szöveges sorok */
.prising_area .single_prising {
    display: block;
}

.prising_area .single_service .hair_style_info {
    padding-left: 0;
}

/* ==========================================================================
   SZÍNVILÁG – VILÁGOS ZSÁLYAZÖLD
   A sablon narancs/piros palettáját világos, zöldes-szürke árnyalatokra
   cseréltük. Két tónus van, és ez szándékos:

     · halvány színátmenet (#7e9b8b → #aec5b7) a NAGY felületeknek
       (hero, oldalfejlécek, CTA-sáv) – ezeken SÖTÉT a szöveg,
     · mély zsálya (#506a5a → #5f7c6b) a GOMBOKNAK és linkeknek,
       ahol fehér szöveg fut rajta.

   Ez nem esztétikai szeszély: fehér szöveg a világos átmeneten csak 1,8–3,0
   kontrasztarányt adna (a minimum 4,5), vagyis alig lenne olvasható.
   Így minden szöveg átmegy a WCAG AA szinten.
   ========================================================================== */

:root {
    --csl-brand-deep: #506a5a;   /* gombok, linkek – fehér szöveggel */
    --csl-brand-deep-2: #5f7c6b;
    --csl-panel-1: #7e9b8b;      /* nagy felületek – sötét szöveggel */
    --csl-panel-2: #aec5b7;
    --csl-on-panel: #16241c;     /* szöveg a nagy felületeken */
    --csl-on-panel-soft: #2c3f35;
}

/* --- gombok: mélyebb tónus, hogy a fehér felirat olvasható maradjon --- */
.boxed-btn3,
.header_cta,
.contact-section .button-contactForm,
.mobile_menu .slicknav_nav li.nav_cta > a,
.main-menu ul#navigation li.nav_cta > a {
    /* a szín a háttérszínen is ott van, nem csak az átmeneten – így akkor is
       olvasható marad a fehér felirat, ha az átmenet nem rajzolódna ki */
    background-color: var(--csl-brand-deep) !important;
    background-image: linear-gradient(0deg, var(--csl-brand-deep) 0%, var(--csl-brand-deep-2) 99%) !important;
    border-color: var(--csl-brand-deep) !important;
    color: #fff !important;
}

.boxed-btn3:hover,
.header_cta:hover,
.contact-section .button-contactForm:hover {
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(80, 106, 90, 0.35);
}

/* a menü aláhúzása és a listajelek is a mély tónust kapják */
.main-menu ul#navigation > li > a::after,
.price_note li::before,

/* --- nagy márkafelületek: sötét szöveg a világos átmeneten --- */
.slider_area .single_slider .slider_text h3,
.slider_area .single_slider .slider_text p,
.bradcam_area .bradcam_text h3,
.bradcam_area .bradcam_text p,
.contact_anipat .contact_text .section_title h3,
.contact_anipat .contact_text .section_title p,
.contact_anipat .contact_text .contact_btn p {
    color: var(--csl-on-panel) !important;
}

.slider_area .single_slider .slider_text p,
.contact_anipat .contact_text .section_title p {
    color: var(--csl-on-panel-soft) !important;
}

/* a hero és a CTA-sáv fehér pirulagombja sötét felirattal */
.boxed-btn4 {
    background: #fff;
    color: var(--csl-brand-deep) !important;
    border: 1px solid #fff;
}

.boxed-btn4:hover {
    background: var(--csl-brand-deep);
    color: #fff !important;
    border-color: var(--csl-brand-deep);
}

/* a "szellem" gomb világos háttéren sötét keretet kap */
.boxed-btn4.btn_ghost {
    background: transparent;
    border: 1px solid rgba(22, 36, 28, 0.55);
    color: var(--csl-on-panel) !important;
}

.boxed-btn4.btn_ghost:hover {
    background: var(--csl-on-panel);
    border-color: var(--csl-on-panel);
    color: #fff !important;
}

.contact_anipat .contact_text .contact_btn p a {
    color: var(--csl-on-panel) !important;
    text-decoration: underline;
}

/* ==========================================================================
   RÓLUNK – A GAZDI
   Fotó + szöveg egymás mellett. A portré tudatosan nem nagy: a forrásfotó
   310x630 px, ennél nagyobb megjelenítésben lágy lenne.
   ========================================================================== */
.owner_photo {
    margin: 0;
    text-align: center;
}

.owner_photo img {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.owner_photo figcaption {
    margin-top: 18px;
    line-height: 1.35;
}

.owner_photo figcaption strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--csl-ink);
}

.owner_photo figcaption span {
    display: block;
    font-size: 15px;
    color: var(--csl-muted);
    margin-top: 2px;
}

.owner_text .owner_lead {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #dfe8e3;
    font-size: 16px;
    color: var(--csl-ink);
}

@media (max-width: 767px) {
    .owner_photo {
        margin-bottom: 34px;
    }

    .owner_photo img {
        max-width: 200px;
    }

    .owner_text .owner_lead {
        margin-top: 20px;
        padding-top: 18px;
    }
}

/* ==========================================================================
   FOGLALÁSI ŰRLAP
   ========================================================================== */
.booking_form .form_section {
    margin: 34px 0 18px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4ece7;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--csl-ink);
}

.booking_form .form_section:first-child {
    margin-top: 0;
}

.bf_label {
    display: block;
    margin-bottom: 7px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--csl-ink);
}

.bf_label span {
    color: var(--csl-brand);
}

.bf_input {
    width: 100%;
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid #d9e3dc;
    border-radius: 10px;
    background: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: var(--csl-ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

select.bf_input {
    /* saját nyíl, hogy minden böngészőben egyforma legyen */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23506a5a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

textarea.bf_input {
    resize: vertical;
    min-height: 110px;
}

.bf_input:focus {
    outline: none;
    border-color: var(--csl-brand);
    box-shadow: 0 0 0 3px rgba(80, 106, 90, 0.14);
}

.bf_input.is_invalid {
    border-color: #b4534a;
    background: #fdf6f5;
}

.bf_hint {
    display: block;
    margin: -12px 0 18px 0;
    font-size: 13px;
    color: var(--csl-muted);
}

.bf_consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 24px 0 0 0;
    font-size: 14.5px;
    line-height: 22px;
    color: var(--csl-muted);
    cursor: pointer;
}

.bf_consent input {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    margin-top: 1px;
    accent-color: var(--csl-brand);
}

.bf_consent b {
    color: var(--csl-brand);
}

.bf_actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.bf_actions .boxed-btn3 {
    padding: 15px 40px;
    font-size: 16px;
    border: 0;
    cursor: pointer;
}

.bf_actions .boxed-btn3[disabled] {
    opacity: 0.65;
    cursor: default;
}

.bf_note {
    font-size: 13.5px;
    color: var(--csl-muted);
}

.bf_error {
    margin-top: 22px;
    padding: 16px 18px;
    border: 1px solid #e6c6c2;
    border-left: 4px solid #b4534a;
    border-radius: 10px;
    background: #fdf6f5;
}

.bf_error[hidden] {
    display: none;
}

.bf_error span {
    display: block;
    font-size: 14.5px;
    line-height: 22px;
    color: #7d3a33;
}

.bf_success {
    text-align: center;
    padding: 50px 30px;
}

.bf_success[hidden] {
    display: none;
}

.bf_success_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    margin-bottom: 24px;
    border-radius: 50%;
    background-image: linear-gradient(0deg, var(--csl-brand-deep) 0%, var(--csl-brand-deep-2) 99%);
    color: #fff;
    font-size: 32px;
}

.bf_success h4 {
    font-size: 26px;
    color: var(--csl-ink);
    margin-bottom: 14px;
}

.bf_success p {
    max-width: 440px;
    margin: 0 auto 28px auto;
    line-height: 30px;
    color: var(--csl-muted);
}

@media (max-width: 767px) {
    .booking_panel {
        padding: 20px 16px;
    }

    .bf_actions {
        gap: 12px;
    }

    .bf_actions .boxed-btn3 {
        width: 100%;
        text-align: center;
    }

    .bf_note {
        text-align: center;
        width: 100%;
    }
}

/* a szövegtörzsbe ágyazott linkek is a márkaszínt kapják (a sablon
   alapértelmezett kék linkszíne kilógott a zsálya palettából) */
.section_title p a,
.owner_text a,
.bf_note a,
.price_note a {
    color: var(--csl-brand-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section_title p a:hover,
.owner_text a:hover {
    color: var(--csl-brand);
}

/* ---------------------------------------------------------------------------
   Partnerek szekció
   --------------------------------------------------------------------------- */
.partners_area {
    position: relative;
    z-index: 1;
    margin-top: -110px;
    padding: 270px 0 90px;
    background: #f4f7f5;
}

.partners_heading {
    max-width: 560px;
    margin: 0 auto 42px;
}

.partners_heading h3 {
    margin-bottom: 12px;
}

.partners_heading p {
    margin: 0;
    color: var(--csl-muted);
}

.partners_logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 36px 64px;
}

.partner_logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 420px;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 10px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.partner_logo--wide {
    width: 420px;
}

.partner_logo:hover {
    opacity: 0.82;
    transform: translateY(-3px);
}

.partner_logo:focus-visible,
.topbar_partner:focus-visible {
    outline: 3px solid var(--csl-brand-soft);
    outline-offset: 4px;
}

.partner_logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* A sablon eredetileg 241px felső teret hagyott a hero alá belógó képnek.
   Ezt most a Partnereink szekció kezeli, ezért utána már kisebb tér elég. */
.partners_area + .service_area {
    padding-top: 115px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .partners_area {
        margin-top: -90px;
        padding: 175px 0 75px;
    }

    .partners_area + .service_area {
        padding-top: 90px;
    }
}

@media (max-width: 767px) {
    .partners_area {
        margin-top: -90px;
        padding: 150px 0 60px;
    }

    .partners_heading {
        margin-bottom: 32px;
    }

    .partner_logo {
        width: 320px;
        padding: 8px;
    }

    .partner_logo--wide {
        width: 320px;
    }

    .partners_area + .service_area {
        padding-top: 70px;
    }
}

/* ==========================================================================
   Adatvédelmi tájékoztató
   ========================================================================== */
.privacy_area {
    padding: 70px 0 100px;
    background: #fff;
}

.privacy_doc {
    max-width: 820px;
    margin: 0 auto;
    color: var(--csl-ink);
}

.privacy_lead {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--csl-muted);
}

.privacy_meta {
    margin-bottom: 36px;
    font-size: 14px;
    color: var(--csl-muted);
}

.privacy_doc h2 {
    margin: 36px 0 14px;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--csl-ink);
}

.privacy_doc p {
    margin-bottom: 14px;
    font-size: 15.5px;
    line-height: 1.75;
    color: #4a5560;
}

.privacy_list {
    margin: 0 0 18px;
    padding-left: 1.2em;
}

.privacy_list li {
    margin-bottom: 8px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #4a5560;
}

.privacy_blank {
    display: inline;
    padding: 1px 6px;
    border-radius: 4px;
    background: #eef3f0;
    color: #6a7a72;
    font-style: italic;
}

.privacy_table_wrap {
    width: 100%;
    margin: 18px 0 28px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.privacy_table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.55;
}

.privacy_table th,
.privacy_table td {
    padding: 12px 14px;
    border: 1px solid #dfe8e3;
    vertical-align: top;
    text-align: left;
}

.privacy_table th {
    background: #f4f7f5;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: var(--csl-ink);
}

.privacy_table td {
    color: #4a5560;
    background: #fff;
}

.privacy_doc a {
    color: var(--csl-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy_doc a:hover {
    color: var(--csl-brand-deep);
}

@media (max-width: 767px) {
    .privacy_area {
        padding: 48px 0 72px;
    }

    .privacy_doc h2 {
        font-size: 19px;
    }

    .privacy_lead,
    .privacy_doc p,
    .privacy_list li {
        font-size: 15px;
    }
}
