/* ============================================
   Kertészek Vagyunk - Mobile-First CSS
   Természetes, kertészeti színvilág
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #2D5016;
  --color-primary-light: #3A6B1E;
  --color-secondary: #4A7C28;
  --color-accent: #8BC34A;
  --color-accent-light: #AED581;
  --color-cta: #E67E22;
  --color-cta-hover: #D35400;
  --color-bg: #F7FAF4;
  --color-bg-alt: #EDF5E1;
  --color-bg-dark: #1B3409;
  --color-text: #1A2E0A;
  --color-text-light: #4A5E3A;
  --color-text-muted: #6B7F5B;
  --color-white: #FFFFFF;
  --color-border: #D4E4C8;
  --color-border-light: #E8F0DE;
  --shadow-sm: 0 1px 3px rgba(45,80,22,0.08);
  --shadow-md: 0 4px 12px rgba(45,80,22,0.10);
  --shadow-lg: 0 8px 30px rgba(45,80,22,0.12);
  --shadow-xl: 0 16px 48px rgba(45,80,22,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 70px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--color-cta);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: var(--color-primary);
  font-weight: 700;
}

h1 { font-size: 1.85rem; margin-bottom: 1rem; }
h2 { font-size: 1.5rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }

p { margin-bottom: 1rem; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 0;
}

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

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

.section--dark h2,
.section--dark h3 {
  color: var(--color-accent-light);
}

.section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.section__header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }

.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;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

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

.btn--primary:hover {
  background: var(--color-cta-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

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

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

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo svg {
  width: 36px;
  height: 36px;
  fill: var(--color-secondary);
}

.header__logo:hover {
  color: var(--color-secondary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.header__phone svg {
  width: 18px;
  height: 18px;
}

.header__cta {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  transition: all var(--transition);
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.menu-toggle.active span {
  background: transparent;
}

.menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  padding: calc(var(--header-height) + 1rem) 1.5rem 2rem;
  transition: right var(--transition);
  overflow-y: auto;
  z-index: 999;
}

.nav.open {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__link {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
  transition: color var(--transition), padding-left var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-cta);
  padding-left: 0.5rem;
}

.nav__phone-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--color-primary);
}

.nav__cta-mobile {
  display: block;
  margin-top: 1rem;
  text-align: center;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

.overlay.active {
  display: block;
}

/* --- Hero --- */
.hero {
  padding: calc(var(--header-height) + 2rem) 0 3rem;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(139,195,74,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(139,195,74,0.2);
  border: 1px solid rgba(139,195,74,0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-accent-light);
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 550px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* --- Cards --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 3rem;
}

.card__body {
  padding: 1.25rem;
}

.card__tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--color-bg-alt);
  color: var(--color-secondary);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card__title a {
  color: var(--color-primary);
}

.card__title a:hover {
  color: var(--color-cta);
}

.card__text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-cta);
}

.card__link:hover {
  color: var(--color-cta-hover);
  gap: 0.55rem;
}

/* --- Grid Layouts --- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

/* --- Service Icon Cards --- */
.service-icon-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
}

.service-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.service-icon-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-secondary);
}

.service-icon-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.service-icon-card__text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

/* --- Why Us / Features --- */
.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-secondary);
}

.section--dark .feature__icon {
  background: rgba(139,195,74,0.15);
}

.feature__content h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.feature__content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

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

/* --- CTA Section --- */
.cta-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.cta-section .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* --- Service Area --- */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.85rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--color-text-light);
  transition: all var(--transition);
}

.area-tag:hover {
  border-color: var(--color-accent);
  background: var(--color-bg-alt);
}

/* --- Trust Bar --- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trust-item {
  text-align: center;
  padding: 1rem;
}

.trust-item__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

.trust-item__text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-light);
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: calc(var(--header-height) + 1rem) 0 0;
  background: var(--color-bg-alt);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 0.5rem 0;
}

.breadcrumb__list a {
  color: var(--color-text-muted);
}

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

.breadcrumb__separator {
  color: var(--color-border);
}

.breadcrumb__current {
  color: var(--color-primary);
  font-weight: 600;
}

/* --- Page Header (for subpages) --- */
.page-header {
  padding: 2rem 0;
  background: var(--color-bg-alt);
  text-align: center;
}

.page-header.has-breadcrumb {
  padding-top: 1rem;
}

.page-header h1 {
  color: var(--color-primary);
}

.page-header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(139,195,74,0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.form-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --- Steps / Process --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

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

.step__content h3 {
  margin-bottom: 0.25rem;
}

.step__content p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* --- Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-alt);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 2rem;
  cursor: pointer;
  transition: transform var(--transition);
}

.gallery__item:hover {
  transform: scale(1.02);
}

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

/* --- Info Box --- */
.info-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
}

.info-box h3 {
  margin-bottom: 0.5rem;
}

.info-box p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.info-box a {
  font-weight: 600;
}

/* --- Contact Info --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.15rem;
}

.contact-info__text strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.contact-info__text span,
.contact-info__text a {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

/* --- Map Placeholder --- */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  border: 2px dashed var(--color-border);
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 0;
}

.footer h3 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand {
  margin-bottom: 0.5rem;
}

.footer__brand-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.footer__brand-name svg {
  width: 30px;
  height: 30px;
  fill: var(--color-accent);
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--color-accent);
}

.footer__contact-item a {
  color: rgba(255,255,255,0.7);
}

.footer__contact-item a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer__legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer__legal a:hover {
  color: var(--color-accent);
}

/* --- Opening Hours Table --- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--color-border-light);
}

.hours-table td {
  padding: 0.5rem 0;
  font-size: 0.92rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-text-muted);
}

/* --- Related items --- */
.related-services,
.related-references {
  margin-top: 2rem;
}

/* --- Tags list --- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-list__item {
  padding: 0.25rem 0.65rem;
  background: var(--color-bg-alt);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Tablet (600px+) */
@media (min-width: 600px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }

  .hero h1 { font-size: 2.5rem; }

  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }

  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* Desktop (900px+) */
@media (min-width: 900px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .section { padding: 4.5rem 0; }

  .container { padding: 0 2rem; }

  .hero {
    padding: calc(var(--header-height) + 4rem) 0 4.5rem;
  }

  .hero h1 { font-size: 3rem; }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  /* Desktop Navigation */
  .menu-toggle { display: none; }
  .overlay { display: none !important; }

  .nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }

  .nav__list {
    flex-direction: row;
    gap: 0;
  }

  .nav__link {
    padding: 0.5rem 0.85rem;
    font-size: 0.92rem;
    border-bottom: none;
    border-radius: var(--radius-sm);
    position: relative;
  }

  .nav__link:hover,
  .nav__link.active {
    padding-left: 0.85rem;
    background: var(--color-bg-alt);
  }

  .nav__phone-mobile,
  .nav__cta-mobile {
    display: none;
  }

  .header__phone {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__actions {
    gap: 1rem;
  }
}

/* Large Desktop (1100px+) */
@media (min-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .two-col--wide-left {
    grid-template-columns: 1.5fr 1fr;
  }

  .two-col--wide-right {
    grid-template-columns: 1fr 1.5fr;
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Szolgáltatások dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 220px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-radius: 8px; padding: 0.5rem 0; z-index: 100; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 0.5rem 1rem; color: #333; text-decoration: none; font-size: 0.9rem; }
.nav-dropdown-menu a:hover { background: #f5f5f5; }
