/* ═══════════════════════════════════════════════════
   DugulásStop – style.css
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --blue-950: #0a1628;
  --blue-900: #0d1f3c;
  --blue-800: #12305a;
  --blue-700: #1a4478;
  --blue-600: #1e5799;
  --blue-500: #2e6db4;
  --blue-400: #4d8fd1;
  --blue-300: #7eb4e8;
  --blue-200: #b8d6f5;
  --blue-100: #e8f2fc;
  --blue-50:  #f0f7ff;

  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;

  --accent:   #f59e0b;
  --accent-light: #fcd34d;
  --green:    #22c55e;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.2);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --nav-h: 72px;
  --section-py: 96px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section base ── */
.section { padding: var(--section-py) 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0; transition: opacity 0.2s;
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }
.btn:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; }

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,87,153,0.4);
}
.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,87,153,0.5);
}
.btn-ghost {
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 24px rgba(0,0,0,0.1);
  backdrop-filter: blur(12px);
}
.navbar.scrolled .nav-logo { color: var(--blue-700); }
.navbar.scrolled .nav-link { color: var(--gray-700); }
.navbar.scrolled .nav-link:hover { color: var(--blue-600); }
.navbar.scrolled .nav-cta { background: var(--blue-600); color: var(--white); }
.navbar.scrolled .nav-cta:hover { background: var(--blue-700); }

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  transition: color var(--transition);
}
.logo-text strong { font-weight: 800; }
.logo-icon { display: flex; align-items: center; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-weight: 600; font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.3);
  margin-left: 8px;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--white); color: var(--blue-700); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.ham-line {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.navbar.scrolled .ham-line { background: var(--gray-700); }
.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(30,87,153,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(78,163,239,0.15) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding-top: 48px; padding-bottom: 140px;
  width: 100%;
  padding-left: 24px; padding-right: 24px;
  box-sizing: border-box;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem; font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.3);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.15); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.title-accent {
  color: var(--accent-light);
  position: relative;
}
.title-accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.6;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.br-desktop { display: block; }
.hero-actions {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-phone {
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
}
.phone-label { color: rgba(255,255,255,0.55); font-size: 0.875rem; }
.phone-number {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.phone-number:hover { color: var(--accent-light); }

/* Stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: center; align-items: stretch;
  padding: 18px 0;
  gap: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 32px;
  flex: 1;
  min-width: 0;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--accent-light);
  display: inline;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; display: block; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

/* ══════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: var(--blue-100);
  color: var(--blue-600);
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag--white {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.section-title--white { color: var(--white); }
.section-desc { color: var(--gray-500); font-size: 1.05rem; }
.section-desc--white { color: rgba(255,255,255,0.7); }
.accent { color: var(--blue-600); }
.accent-light { color: var(--accent-light); }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}
.card-icon-wrap {
  width: 64px; height: 64px;
  margin-bottom: 20px;
}
.card-icon { width: 100%; height: 100%; }
.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.card-desc {
  color: var(--gray-500);
  font-size: 0.93rem;
  line-height: 1.65;
}
.card-tag {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 12px;
  background: var(--blue-100);
  color: var(--blue-600);
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
}
.card-tag--green {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
}

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.why-us {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  position: relative; overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.why-us-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.why-us-left { padding-right: 20px; }
.why-us-left .btn { margin-top: 28px; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: background var(--transition), transform var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.why-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.why-content h3 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.why-content p {
  font-size: 0.84rem; color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
/* A kép háttér – négyzetes arány */
.about-img-bg {
  width: 100%;
  padding-bottom: 85%;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--blue-100) 0%, var(--blue-200) 100%);
  position: relative;
  overflow: hidden;
}
/* Ikon + szöveg a kép közepén */
.about-img-card {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
}
.about-img-text {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--blue-700);
}
/* Badge – a kép jobb alsó sarkában, overflow: hidden miatt nem lóg ki */
.about-badge-float {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--blue-600);
  color: var(--white);
  border-radius: var(--radius-xl) 0 var(--radius-xl) 0;
  padding: 18px 26px;
  text-align: center;
  min-width: 110px;
}
.float-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800;
  line-height: 1;
}
.float-label { font-size: 0.82rem; opacity: 0.88; display: block; margin-top: 2px; }
.about-text {
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 28px;
}
.highlight-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--gray-700);
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials { background: var(--gray-50); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-featured {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
  border-color: transparent;
}
.testi-featured .testi-quote { color: rgba(255,255,255,0.9); }
.testi-featured .testi-author strong { color: var(--white); }
.testi-featured .testi-author span { color: rgba(255,255,255,0.6); }
.testi-featured .author-avatar { background: rgba(255,255,255,0.2); color: var(--white); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { font-size: 1.1rem; color: var(--accent); }
.star--empty { color: var(--gray-300); }
.testi-quote {
  font-size: 0.95rem; line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 20px;
  font-style: italic;
  quotes: "„" """;
}
.testi-quote::before { content: open-quote; }
.testi-quote::after { content: close-quote; }
.testi-author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
}
.author-info strong { display: block; font-weight: 600; font-size: 0.9rem; }
.author-info span { font-size: 0.82rem; color: var(--gray-500); }

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; }
.gallery-img {
  width: 100%; padding-bottom: 70%;
  position: relative; overflow: hidden;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-img--1 { background: linear-gradient(135deg, #1e3a5f 0%, #2d6a9f 100%); }
.gallery-img--2 { background: linear-gradient(135deg, #0d3b6e 0%, #1e5799 100%); }
.gallery-img--3 { background: linear-gradient(135deg, #163556 0%, #2563a8 100%); }
.gallery-img--4 { background: linear-gradient(135deg, #1a4a78 0%, #4d8fd1 100%); }
.gallery-img--5 { background: linear-gradient(135deg, #0f2d4f 0%, #1e5799 100%); }
.gallery-img--6 { background: linear-gradient(135deg, #1c3f68 0%, #2e6db4 100%); }

.gallery-img::before {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.gallery-img--1::before { content: '🔧'; font-size: 3rem; }
.gallery-img--2::before { content: '📷'; font-size: 3rem; }
.gallery-img--3::before { content: '🚿'; font-size: 3rem; }
.gallery-img--4::before { content: '💧'; font-size: 3rem; }
.gallery-img--5::before { content: '🔩'; font-size: 3rem; }
.gallery-img--6::before { content: '⚙️'; font-size: 3rem; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay { opacity: 1; }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,0.8));
  color: var(--white);
  padding: 20px 12px 10px;
  font-size: 0.85rem; font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,22,40,0.95);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox[hidden] { display: none; }
.lightbox-content {
  max-width: 800px; width: 90%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue-900);
}
.lightbox-img-inner {
  width: 100%; padding-bottom: 65%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-inner span {
  position: absolute; font-size: 6rem;
  display: flex; align-items: center; justify-content: center;
  inset: 0;
}
.lightbox-caption {
  padding: 16px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  text-align: center;
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  color: var(--white); padding: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { background: var(--gray-50); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  margin-bottom: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-card--phone {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
  border-color: transparent;
}
.contact-card--phone .cc-label { color: rgba(255,255,255,0.7); }
.contact-card--phone .cc-value { color: var(--white); }
.cc-icon { width: 40px; height: 40px; flex-shrink: 0; }
.cc-label { display: block; font-size: 0.78rem; color: var(--gray-500); margin-bottom: 2px; }
.cc-value { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; color: var(--gray-900); }
.cc-phone { font-size: 1.2rem; }
.cc-value a { transition: color var(--transition); }
.cc-value a:hover { color: var(--blue-500); }
.map-embed { margin-top: 16px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.875rem; font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-label span { color: var(--blue-500); }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(30,87,153,0.08);
}
.form-input.error { border-color: #ef4444; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-error {
  display: block;
  color: #ef4444; font-size: 0.8rem;
  margin-top: 4px; min-height: 18px;
}
.form-success {
  display: flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.1);
  color: #15803d;
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 500; font-size: 0.9rem;
  margin-top: 14px;
}
.form-success[hidden] { display: none; }
.btn-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-spinner[hidden] { display: none !important; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer-top {
  background: var(--blue-950);
  padding: 64px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo { color: var(--white); }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin: 14px 0 18px; line-height: 1.6; }
.footer-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--accent-light);
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--white); }
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-nav ul, .footer-services-list ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-services-list li {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-contact-info address { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-info p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-contact-info a { transition: color var(--transition); }
.footer-contact-info a:hover { color: var(--white); }

.footer-bottom {
  background: var(--gray-900);
  padding: 16px 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-legal a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   FLOATING UI
══════════════════════════════════════════ */
.sticky-call {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 900;
  display: flex; align-items: center; gap: 8px;
  background: var(--blue-600);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 4px 24px rgba(30,87,153,0.5);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  animation: bob 3s ease-in-out infinite;
}
.sticky-call:hover {
  background: var(--blue-700);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(30,87,153,0.6);
  animation: none;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.back-to-top {
  position: fixed; bottom: 24px; left: 24px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--white);
  color: var(--blue-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--blue-600); color: var(--white); transform: translateY(-3px); }
.back-to-top[hidden] { display: none; }

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.28s; }
.delay-3 { animation-delay: 0.42s; }
.delay-4 { animation-delay: 0.56s; }
.delay-5 { animation-delay: 0.7s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.5s; }
.why-grid .why-item:nth-child(1) { transition-delay: 0s; }
.why-grid .why-item:nth-child(2) { transition-delay: 0.08s; }
.why-grid .why-item:nth-child(3) { transition-delay: 0.16s; }
.why-grid .why-item:nth-child(4) { transition-delay: 0.24s; }
.why-grid .why-item:nth-child(5) { transition-delay: 0.32s; }
.why-grid .why-item:nth-child(6) { transition-delay: 0.4s; }
.testimonials-grid .testi-card:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .testi-card:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .testi-card:nth-child(3) { transition-delay: 0.2s; }
.testimonials-grid .testi-card:nth-child(4) { transition-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.16s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.24s; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 0.32s; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   RESPONSIVE – Tablet large (≤1100px)
   Hamburger starts here so nav doesn't overflow
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  /* Switch to hamburger menu on tablet too */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column; align-items: stretch;
    padding: 12px 16px 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-100);
    transform: translateY(-8px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
    gap: 2px;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-link { color: var(--gray-700); padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-cta {
    background: var(--blue-600); color: var(--white);
    margin-left: 0; margin-top: 8px;
    justify-content: center; border-color: transparent;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE – Tablet (≤1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-us-left { padding-right: 0; text-align: center; }
  .why-us-left .btn { margin: 28px auto 0; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Stats bar – kisebb padding tableten */
  .stat-item { padding: 0 22px; }
  .stat-num  { font-size: 1.8rem; }
  .stat-suffix { font-size: 1.3rem; }

  /* Hero – ne folyjon ki a szöveg */
  .hero-title { font-size: clamp(2rem, 5vw, 3.2rem); }
  .hero-content { padding-left: 16px; padding-right: 16px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE – Mobile (≤768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-py: 56px; --nav-h: 64px; }

  /* Hero mobile */
  .hero-title { font-size: 2rem; word-break: keep-all; }
  .hero-desc { font-size: 0.95rem; padding: 0 8px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .br-desktop { display: none; }

  /* Stats bar – sor elrendezés, wrap */
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 12px 0;
  }
  .stat-item { padding: 10px 18px; }
  .stat-num  { font-size: 1.5rem; }
  .stat-suffix { font-size: 1.1rem; }
  .stat-label { font-size: 0.72rem; }
  /* Divider elrejtése mobilon – wrap esetén zavaró */
  .stat-divider { display: none; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 4px; }

  .about-highlights { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Sticky call – full width on mobile */
  .sticky-call { bottom: 16px; right: 16px; left: 16px; justify-content: center; border-radius: 14px; animation: none; }
  .back-to-top { bottom: 80px; left: 16px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 1.5rem; }
  .stat-item { padding: 10px 14px; }
}
/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}