/* ============================================================
   Pet Állatorvosi Praxis – Main Stylesheet
   ============================================================ */

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

/* ─── Design Tokens ─── */
:root {
  --primary:        #2D8C6E;
  --primary-dark:   #1F6B52;
  --primary-light:  #4DB87E;
  --accent:         #A8E6C8;
  --dark:           #1A2A24;
  --text:           #2C3E35;
  --text-muted:     #6B8077;
  --white:          #FFFFFF;
  --bg:             #FFFFFF;
  --bg-light:       #F4FAF7;
  --bg-soft:        #EBF5EF;
  --border:         #D8EDE3;

  --warm:           #D4A54A;
  --warm-dark:      #A07A28;
  --warm-light:     #E8C370;
  --warm-bg:        #FEF6E4;
  --orange:         #C8500A;
  --orange-light:   #E06818;
  --grad-cta:       linear-gradient(135deg, #C8500A 0%, #E06818 100%);

  --grad-primary:   linear-gradient(135deg, #2D8C6E 0%, #4DB87E 100%);
  --grad-dark:      linear-gradient(135deg, #1F6B52 0%, #2D8C6E 100%);
  --grad-warm:      linear-gradient(135deg, #2D8C6E 0%, #D4A54A 100%);
  --grad-hero:      linear-gradient(160deg, rgba(26,42,36,0.90) 0%, rgba(42,78,60,0.74) 55%, rgba(184,118,40,0.34) 100%);
  --grad-text:      linear-gradient(135deg, #1F6B52, #D4A54A);

  --font-head:      'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body:      'Inter', -apple-system, sans-serif;

  --sp-1: 0.5rem;   --sp-2: 1rem;   --sp-3: 1.5rem;
  --sp-4: 2rem;     --sp-5: 3rem;   --sp-6: 5rem;

  --r-sm: 6px;  --r: 12px;  --r-lg: 20px;  --r-xl: 32px;  --r-full: 9999px;

  --sh-sm: 0 2px 8px rgba(45,140,110,0.08);
  --sh:    0 4px 24px rgba(45,140,110,0.12);
  --sh-lg: 0 8px 40px rgba(45,140,110,0.18);
  --sh-hv: 0 16px 48px rgba(45,140,110,0.26);

  --tr: all 0.3s cubic-bezier(.4,0,.2,1);
  --tr-slow: all 0.5s cubic-bezier(.4,0,.2,1);

  --container: 1180px;
  --header-h: 76px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.25; font-weight: 700; }

/* ─── Utility ─── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-3); }
.section    { padding: var(--sp-6) 0; }
.section-sm { padding: var(--sp-5) 0; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-full);
  font-weight: 600; font-size: 0.95rem;
  transition: var(--tr);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,140,110,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,140,110,0.45); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; vertical-align: -0.125em; }
.btn-cta {
  background: var(--grad-cta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,80,10,0.32);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,80,10,0.44); }

.section-label {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
  background: rgba(45,140,110,0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(45,140,110,0.15);
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}
.center { text-align: center; }
.center .section-lead { margin: 0 auto; }

/* ─── Topbar ─── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  position: relative; z-index: 100;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.topbar-item { display: flex; align-items: center; gap: 0.4rem; }
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-hours { display: flex; gap: 1.25rem; }
.topbar-contacts { display: flex; gap: 1.25rem; }
.topbar-item a { color: inherit; transition: var(--tr); }
.topbar-item a:hover { color: var(--primary-light); }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: var(--tr);
}
.site-header > .container { width: 100%; height: 100%; }
.site-header.scrolled { box-shadow: var(--sh); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; height: 100%;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  color: var(--dark);
  transition: var(--tr);
}
.logo:hover { color: var(--primary); }
.logo-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; color: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span:first-child { font-size: 1.05rem; color: var(--dark); }
.logo-text span:last-child  { font-size: 0.7rem; font-weight: 400; color: var(--text-muted); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text); border-radius: var(--r-sm);
  transition: var(--tr);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(45,140,110,0.07); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; border-radius: 2px;
  background: var(--grad-primary);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--sh-lg);
  min-width: 240px; padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--tr); z-index: 300;
}
.dropdown a {
  display: block; padding: 0.6rem 0.85rem;
  font-size: 0.88rem; color: var(--text);
  border-radius: var(--r-sm);
  transition: var(--tr);
}
.dropdown a:hover { background: var(--bg-light); color: var(--primary); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm); cursor: pointer;
  transition: var(--tr);
}
.hamburger:hover { background: var(--bg-light); }
.ham-line {
  width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: var(--tr);
  transform-origin: center;
}
.hamburger.open .ham-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 190; overflow-y: auto;
  padding: var(--sp-2);
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav.show { display: block; }
.mobile-nav a {
  display: block; padding: 0.9rem 1rem;
  font-size: 1rem; font-weight: 500;
  border-radius: var(--r); color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.mobile-nav a:hover { background: var(--bg-light); color: var(--primary); }
.mobile-nav .mob-sub a { padding-left: 2rem; font-size: 0.9rem; color: var(--text-muted); }
.mobile-nav .btn { margin: var(--sp-2) var(--sp-1); display: flex; justify-content: center; }

/* ─── Hero (Split Layout) ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(88vh, 700px);
  overflow: hidden;
}
.hero-left {
  background:
    radial-gradient(ellipse 140% 60% at 110% 5%, rgba(45,140,110,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at -5% 95%, rgba(200,80,10,0.12) 0%, transparent 55%),
    linear-gradient(152deg, #050F0A 0%, #0C1E14 30%, #142A1C 60%, #0A1810 100%);
  display: flex; align-items: center; justify-content: flex-start;
  padding: var(--sp-6) var(--sp-4) var(--sp-6) clamp(1.5rem, 7vw, 5rem);
  position: relative;
}
.hero-left::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 15% 85%, rgba(45,140,110,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  width: 100%; max-width: 520px;
  position: relative; z-index: 2;
  color: var(--white);
}
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,42,36,0.45) 0%, transparent 50%);
  z-index: 1; pointer-events: none;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.88); font-size: 0.8rem; font-weight: 500;
  padding: 0.4rem 1rem; border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.9rem);
  font-weight: 800; line-height: 1.18;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-highlight {
  background: linear-gradient(135deg, #A8E6C8, #F5D47A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  line-height: 1.78;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: var(--sp-2); }
/* Dots inside hero-left */
.slider-dots { display: flex; gap: 0.5rem; margin-top: var(--sp-2); }
.dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer; transition: var(--tr);
  border: none; padding: 0; flex-shrink: 0;
}
.dot.active { width: 24px; background: rgba(255,255,255,0.9); }
/* Controls inside hero-right */
.slider-controls {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  z-index: 3; display: flex; gap: 0.5rem;
}
.slider-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}
.slider-btn:hover { background: rgba(255,255,255,0.3); }
.slider-btn svg { width: 18px; height: 18px; }
/* Trust badges on the photo panel */
.hero-trust-badges {
  position: absolute; z-index: 2;
  display: flex; flex-direction: column; gap: 0.65rem;
  left: 1.25rem; bottom: 2rem;
}
.htb {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px);
  border-radius: var(--r-full);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.95);
  width: fit-content;
}
.htb-circle {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.htb-circle.g { background: #EBF5EF; }
.htb-circle.g svg { color: var(--primary); width: 15px; height: 15px; }
.htb-circle.o { background: var(--warm-bg); }
.htb-circle.o svg { color: var(--orange); width: 15px; height: 15px; }
.htb-text strong { display: block; font-size: 0.79rem; font-weight: 700; color: var(--dark); line-height: 1.25; }
.htb-text span { font-size: 0.68rem; color: var(--text-muted); }
.htb-num {
  font-size: 1.4rem; font-weight: 800; line-height: 1;
  background: var(--grad-warm);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  padding: 0 0.3rem; flex-shrink: 0;
}

/* ─── About / Doctor ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-5); align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%; border-radius: var(--r-xl);
  object-fit: cover; aspect-ratio: 4/5;
  box-shadow: var(--sh-lg);
}
.about-img-badge {
  position: absolute; bottom: 2rem; right: -1.5rem;
  background: var(--white); border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 0.75rem;
}
.about-img-badge .badge-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-warm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-img-badge .badge-icon svg { width: 20px; height: 20px; color: #fff; }
.about-img-badge strong { display: block; font-size: 1.1rem; color: var(--dark); }
.about-img-badge span { font-size: 0.78rem; color: var(--text-muted); }
.about-content { display: flex; flex-direction: column; gap: var(--sp-2); }
.about-content h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.about-content p { color: var(--text-muted); line-height: 1.8; }
.about-meta { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: 0.5rem; }
.about-meta-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; font-weight: 500; color: var(--text-muted);
}
.about-meta-item svg { width: 16px; height: 16px; color: var(--primary); }

/* ─── Trust badges ─── */
.trust-section { background: var(--bg-light); }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3);
}
.trust-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-3);
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; gap: 1rem;
  transition: var(--tr);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.trust-icon {
  width: 56px; height: 56px; border-radius: var(--r);
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 26px; height: 26px; color: var(--primary); }
.trust-card h3 { font-size: 1.05rem; color: var(--dark); }
.trust-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.trust-card:nth-child(2) .trust-icon { background: var(--warm-bg); }
.trust-card:nth-child(2) .trust-icon svg { color: var(--warm-dark); }

/* ─── Services ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3);
}
.service-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: var(--tr);
  border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-hv); border-color: var(--accent); }
.service-card-img {
  height: 200px; overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--tr-slow); }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-icon {
  height: 160px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
}
.service-card-icon svg { width: 64px; height: 64px; color: var(--primary); opacity: 0.7; }
.service-card-body { padding: var(--sp-3); display: flex; flex-direction: column; flex: 1; gap: 0.75rem; }
.service-card-body h3 { font-size: 1.05rem; color: var(--dark); }
.service-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 600; color: var(--primary);
  padding: 0.5rem 0;
  transition: var(--tr);
}
.service-link svg { width: 16px; height: 16px; transition: var(--tr); }
.service-link:hover svg { transform: translateX(4px); }

/* ─── Testimonials ─── */
.testimonials-section { background: var(--bg-light); }
.test-slider { position: relative; overflow: hidden; }
.test-track { display: flex; gap: var(--sp-3); transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.test-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--sp-3);
  box-shadow: var(--sh-sm);
  flex: 0 0 calc(50% - var(--sp-2));
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.test-quote { font-size: 2.5rem; color: var(--accent); line-height: 1; }
.test-card p { font-size: 0.95rem; color: var(--text); line-height: 1.75; font-style: italic; flex: 1; }
.test-author { display: flex; align-items: center; gap: 0.75rem; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 1.05rem; flex-shrink: 0;
}
.test-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.test-author span { font-size: 0.78rem; color: var(--text-muted); }
.test-stars { display: flex; gap: 3px; margin-bottom: 0.25rem; }
.test-stars svg { width: 14px; height: 14px; color: #F59E0B; fill: #F59E0B; }
.test-controls { display: flex; justify-content: center; gap: 0.75rem; margin-top: var(--sp-3); }
.test-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--tr);
}
.test-btn:hover { border-color: var(--primary); color: var(--primary); }
.test-btn svg { width: 18px; height: 18px; }

/* ─── Long About ─── */
.about-long-grid {
  display: grid; grid-template-columns: 5fr 4fr;
  gap: var(--sp-5); align-items: start;
}
.about-long-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.5rem; }
.about-long-content h3 { font-size: 1.2rem; color: var(--primary); margin: var(--sp-2) 0 0.75rem; }
.about-long-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: var(--sp-2); }
.about-long-side {
  background: var(--bg-light); border-radius: var(--r-xl);
  padding: var(--sp-4);
  position: sticky; top: calc(var(--header-h) + var(--sp-2));
}
.about-long-side h4 { font-size: 1.05rem; color: var(--dark); margin-bottom: var(--sp-2); }
.hours-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.65rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 500; color: var(--text); }
.hours-list .time { color: var(--text-muted); }
.contact-cta-box { margin-top: var(--sp-3); display: flex; flex-direction: column; gap: 0.75rem; }

/* ─── Page Header (inner pages) ─── */
.page-hero {
  background: var(--grad-warm);
  color: var(--white);
  padding: var(--sp-5) 0 var(--sp-4);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-2);
}
.breadcrumb a { color: inherit; transition: var(--tr); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 580px; font-size: 1.05rem; line-height: 1.7; }

/* ─── Services index page ─── */
.services-overview {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3);
}
.service-row {
  display: flex; gap: var(--sp-2); align-items: flex-start;
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--sp-3); box-shadow: var(--sh-sm);
  transition: var(--tr); border: 1px solid transparent;
}
.service-row:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--accent); }
.service-row-icon {
  width: 52px; height: 52px; border-radius: var(--r);
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-row-icon svg { width: 24px; height: 24px; color: var(--primary); }
.service-row-body h3 { font-size: 1rem; color: var(--dark); margin-bottom: 0.4rem; }
.service-row-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }

/* ─── Service Detail Page ─── */
.service-detail { padding: var(--sp-6) 0; }
.service-detail-grid { display: grid; grid-template-columns: 3fr 2fr; gap: var(--sp-5); align-items: start; }
.service-detail-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); margin-bottom: var(--sp-4); }
.service-detail-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.service-detail-content h2 { font-size: 1.3rem; color: var(--primary); margin: var(--sp-3) 0 0.75rem; }
.service-detail-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: var(--sp-2); }
.service-sidebar {
  position: sticky; top: calc(var(--header-h) + var(--sp-2));
}
.cta-box {
  background: var(--grad-warm); color: var(--white);
  border-radius: var(--r-xl); padding: var(--sp-4);
  text-align: center;
}
.cta-box h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.cta-box p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: var(--sp-3); line-height: 1.7; }
.cta-box .btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; }
.cta-box .btn-outline { border-color: rgba(255,255,255,0.5); }
.other-services { margin-top: var(--sp-3); background: var(--bg-light); border-radius: var(--r-lg); padding: var(--sp-3); }
.other-services h4 { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--sp-2); }
.other-services a {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; color: var(--text); padding: 0.5rem 0;
  border-bottom: 1px solid var(--border); transition: var(--tr);
}
.other-services a:last-child { border-bottom: none; }
.other-services a:hover { color: var(--primary); }
.other-services a svg { width: 14px; height: 14px; color: var(--primary); }

/* ─── Forms ─── */
.form-section { background: var(--bg-light); }
.form-wrap { max-width: 700px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); font-size: 0.9rem; color: var(--text);
  transition: var(--tr);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,140,110,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-honeypot { display: none; }
.form-info { font-size: 0.8rem; color: var(--text-muted); }
.form-success, .form-error {
  padding: 1rem 1.25rem; border-radius: var(--r);
  font-size: 0.9rem; margin-bottom: var(--sp-2); display: none;
}
.form-success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.form-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.form-success.show, .form-error.show { display: block; }

/* Rendelés page */
.rendeles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: start; }
.info-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--sp-3); box-shadow: var(--sh-sm);
}
.info-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: var(--sp-2); display: flex; align-items: center; gap: 0.5rem; }
.info-card h3 svg { color: var(--primary); width: 20px; height: 20px; }
.contact-list li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.contact-list a { color: var(--primary); font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }

/* ─── Footer ─── */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,0.75);
  padding: var(--sp-6) 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-5); padding-bottom: var(--sp-5);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { color: var(--white); margin-bottom: var(--sp-2); }
.footer-about p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-2);
}
.footer-col ul li a {
  display: block; font-size: 0.88rem;
  padding: 0.3rem 0; color: rgba(255,255,255,0.65);
  transition: var(--tr);
}
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-contact li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.88rem; margin-bottom: 0.6rem; color: rgba(255,255,255,0.65);
}
.footer-contact svg { width: 15px; height: 15px; color: var(--primary-light); flex-shrink: 0; margin-top: 0.15rem; }
.footer-hours li { font-size: 0.88rem; padding: 0.3rem 0; color: rgba(255,255,255,0.65); display: flex; justify-content: space-between; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  padding: var(--sp-2) 0;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: var(--tr); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-legal { display: flex; gap: var(--sp-2); }

/* ─── Admin ─── */
.admin-wrap { min-height: 100vh; background: #F0F2F5; }
.admin-login {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--grad-dark);
}
.admin-login-box {
  background: var(--white); border-radius: var(--r-xl);
  padding: var(--sp-5); width: 100%; max-width: 420px;
  box-shadow: var(--sh-lg);
}
.admin-header {
  background: var(--dark); color: var(--white);
  padding: 1rem var(--sp-3);
  display: flex; align-items: center; justify-content: space-between;
}
.admin-sidebar { position: fixed; top: 60px; left: 0; bottom: 0; width: 240px; background: var(--white); border-right: 1px solid var(--border); overflow-y: auto; padding: var(--sp-2) var(--sp-1); z-index: 50; }
.admin-content { margin-left: 240px; padding: var(--sp-3); }
.admin-nav a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.7rem 0.85rem; border-radius: var(--r-sm);
  font-size: 0.88rem; color: var(--text); transition: var(--tr);
}
.admin-nav a:hover, .admin-nav a.active { background: var(--bg-light); color: var(--primary); }
.admin-nav a svg { width: 16px; height: 16px; }
.admin-card { background: var(--white); border-radius: var(--r-lg); padding: var(--sp-3); box-shadow: var(--sh-sm); margin-bottom: var(--sp-3); }
.admin-card h2 { font-size: 1.1rem; color: var(--dark); margin-bottom: var(--sp-2); border-bottom: 1px solid var(--border); padding-bottom: var(--sp-1); }

/* ─── 404 ─── */
.not-found {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.not-found h1 { font-size: clamp(5rem, 15vw, 10rem); background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.not-found h2 { font-size: 1.5rem; margin: 1rem 0; }
.not-found p { color: var(--text-muted); margin-bottom: var(--sp-3); }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp 0.65s ease forwards; }
.animate-up-1 { animation-delay: 0.1s; opacity: 0; }
.animate-up-2 { animation-delay: 0.2s; opacity: 0; }
.animate-up-3 { animation-delay: 0.3s; opacity: 0; }
.fade-in { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; transform: translateY(20px); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .about-long-grid { grid-template-columns: 1fr; }
  .about-long-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { position: static; width: 100%; }
  .admin-content { margin-left: 0; }
}
@media (max-width: 768px) {
  :root { --sp-6: 3.5rem; --sp-5: 2.5rem; }
  .topbar-hours { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-badge { right: 1rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-overview { grid-template-columns: 1fr; }
  .test-track .test-card { flex: 0 0 100%; }
  .about-long-grid { grid-template-columns: 1fr; }
  .rendeles-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { order: 2; padding: var(--sp-4) var(--sp-3); justify-content: flex-start; }
  .hero-right { order: 1; height: 280px; }
  .hero-trust-badges { flex-direction: row; flex-wrap: wrap; bottom: 0.75rem; left: 0.75rem; right: 4.5rem; gap: 0.4rem; }
  .htb-text span { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .topbar-contacts .topbar-item:last-child { display: none; }
  .slider-controls { bottom: 1rem; right: 1rem; }
}
