/* ========================================
   Dr. Vankó Norbert - Ügyvédi Iroda
   Mockup-exact design - kék-arany színvilág
   ======================================== */

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

/* CSS Variables */
:root {
  --color-primary: #0f2a4a;
  --color-primary-dark: #0a1f38;
  --color-gold: #c9a227;
  --color-gold-hover: #b8922a;
  --color-white: #ffffff;
  --color-gray-50: #f5f7fa;
  --color-gray-100: #eef1f5;
  --color-gray-200: #dde3eb;
  --color-gray-400: #9ca3af;
  --color-gray-600: #4b5563;
  --color-gray-800: #1f2937;
  --color-text: #374151;
  --color-text-light: #6b7280;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

ul, ol, li {
  list-style: none;
}

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

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

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  width: 250px;
}

.loading-bar-container {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: var(--color-gold);
  animation: loadProgress 1s ease-out forwards;
}

@keyframes loadProgress {
  to { width: 100%; }
}

.loading-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ========================================
   HEADER - Sötétkék sticky header (KOMPAKT)
   ======================================== */
.site-header {
  background: var(--color-primary);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* Amikor a felhasznalo lejjebb gorget, a header lekicsinyedik */
.site-header.scrolled .header-container {
  min-height: 44px;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.site-header.scrolled .logo-img {
  width: 150px;
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* A fixed header alatti tartalmat le kell tolni, hogy ne takarja el */
.page-wrapper {
  padding-top: 72px;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  transition: min-height 0.3s ease, padding 0.3s ease;
  position: relative;
}

.logo {
  display: block;
  text-decoration: none;
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.logo-img {
  width: 240px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: width 0.3s ease;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-white);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s;
}

/* ========================================
   DROPDOWN MENU
   ======================================== */
.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary-dark);
  min-width: 220px;
  padding: 0.5rem 0;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-primary-dark);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  padding: 0;
  display: block;
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-gold);
  border-left-color: var(--color-gold);
  padding-left: 1.5rem;
}

/* Header - fix logo overlap */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

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

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 500;
  transition: gap 0.2s;
}

.link-arrow:hover {
  gap: 0.6rem;
}

/* ========================================
   HERO SECTION - Sötétkék háttér mint a mockupon
   ======================================== */
.hero {
  background-color: #0a2647;
  background-image: 
    linear-gradient(to right, rgba(10, 38, 71, 0.92) 0%, rgba(10, 38, 71, 0.7) 40%, rgba(10, 38, 71, 0.25) 70%, rgba(10, 38, 71, 0.05) 100%),
    url('17.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 65vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: fadeInScale 1.2s ease-out forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
}

.hero-content {
  max-width: 550px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.hero-highlight {
  font-weight: 400;
  opacity: 0.9;
  color: var(--color-gold);
  font-weight: bolder;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.badge svg {
  color: var(--color-gold);
  width: 16px;
  height: 16px;
}

.hero-image {
  display: none;
}

/* Hero háttérkép az ingatlan adásvétel oldalhoz */
.hero-ingatlan-adas-vetel {
  background-image: 
    linear-gradient(to right, rgba(10, 38, 71, 0.92) 0%, rgba(10, 38, 71, 0.7) 40%, rgba(10, 38, 71, 0.25) 70%, rgba(10, 38, 71, 0.05) 100%),
    url('ingatlan-adas-vetel.jpg');
  background-position: center right;
}

/* ========================================
   ABOUT SECTION - Fehér háttér, portré balra
   ======================================== */
.about {
  padding: 5rem 2rem;
  background: var(--color-white);
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  display: block;
  object-fit: cover;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.about-subtitle {
  color: var(--color-gold);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  letter-spacing: 0.3px;
}

.about-text {
  color: var(--color-text);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-text em {
  font-style: italic;
  color: var(--color-text-light);
}

.about-content p {
  text-align: justify;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-content .link-arrow {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.about-content .link-arrow:hover {
  color: var(--color-gold);
}

/* ========================================
   SERVICES SECTION - 4 oszlop x 2 sor, teglalap kartyak, gradient hatter
   ======================================== */
.services {
  padding: 4rem 2rem;
  background: var(--color-gray-50);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gray-800);
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: linear-gradient(145deg, #2d4a6f 0%, #1e3a5f 35%, #152d4a 70%, #0f2440 100%);
  padding: 2rem 1.25rem 1.5rem;
  border-radius: 20px;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.06);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 15px 30px rgba(0, 0, 0, 0.25);
}

.service-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.service-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid;
  border-color: #d4af37 #c9a227 #a8871e #d4af37;
  border-radius: 50%;
  padding: 14px;
  color: var(--color-gold);
  transition: all 0.3s ease;
  box-shadow: inset 2px 2px 4px rgba(255, 215, 100, 0.15), inset -2px -2px 4px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon {
  background: rgba(201, 162, 39, 0.12);
  box-shadow: inset 3px 3px 6px rgba(255, 215, 100, 0.2), inset -3px -3px 6px rgba(0, 0, 0, 0.25);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold);
  transition: all 0.3s ease;
  line-height: 1.3;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4), 0 3px 6px rgba(0, 0, 0, 0.25);
}

.service-card:hover h3 {
  color: #d4af37;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(201, 162, 39, 0.9);
  margin-bottom: 1rem;
  line-height: 1.55;
  flex-grow: 1;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-card .link-arrow {
  font-size: 0.95rem;
  color: var(--color-gold);
  margin-top: auto;
  font-weight: 600;
  padding-top: 0.5rem;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-card .link-arrow:hover {
  color: #d4af37;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* ========================================
   FEATURED BLOCK - Mockup 1/1
   ======================================== */
.featured-block {
  padding: 3.5rem 2rem;
  background: #fff;
}

.featured-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  min-height: 280px;
  gap: 0;
  position: relative;
}

.featured-content {
  background: linear-gradient(225deg, #ffffff 0%, #f5f7fa 70%, #d6dce3 100%);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 14px 0 0 14px;
  position: relative;
  z-index: 2;
}

.featured-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #0f2a4a;
  margin: 0 auto 1.2rem auto;
  line-height: 1.25;
  letter-spacing: -0.5px;
  text-align: center;
}

.featured-content p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 95%;
  font-weight: 400;
  text-align: center;
}

.btn-featured {
  background: #c9a227;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 90;
}

.btn-featured:hover {
  background: #b8922a;
  transform: translateY(-2px);
  }

.featured-image {
  background: #0f2a4a;
  background-image: linear-gradient(135deg, rgba(15, 42, 74, 0.7) 0%, rgba(15, 42, 74, 0.6) 100%), url('jog.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  left: auto;
  width: 58%;
  border-radius: 0 14px 14px 0;
  transform: skewX(-15deg);
  transform-origin: left;
  margin: 0;
  z-index: 1;
  width: calc(40% + 40px);
}

.featured-image img {
  display: none;
  z-index: 1;
}

.featured-image img {
  display: none;
}
/* ========================================
   WHY CHOOSE SECTION
   ======================================== */
.why-choose {
  padding: 4rem 2rem;
  background: var(--color-white);
}

.why-container {
  max-width: 1000px;
  margin: 0 auto;
}

.why-choose h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-800);
  text-align: center;
  margin-bottom: 2.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-item {
  text-align: center;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--color-gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-gold);
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-item h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 0.35rem;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ========================================
   BOTTOM CTA - Elegáns kék-arany stílus
   ======================================== */
.cta-bottom {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('bottom-cta.jpg') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.cta-container {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-bottom h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-bottom p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}

.cta-bottom .cta-note {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}
  
.cta-bottom .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-gold);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 2.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.35);
}

.cta-bottom .btn-gold:hover {
  background: var(--color-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
}

.page-hero {
  background-color: #0a2647;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: -72px;
  padding-top: 72px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(10, 38, 71, 0.97) 0%, rgba(10, 38, 71, 0.85) 35%, rgba(10, 38, 71, 0.4) 65%, rgba(10, 38, 71, 0.15) 100%);
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Szakterület-specifikus háttérképek */
.page-hero.hero-adojog::after {
  background-image: url('adojog.jpg');
  background-position: center 40%;
}

.page-hero.hero-kereskedelmi::after {
  background-image: url('kereskedelmijog.jpg');
  background-position: center 90%;
}

.page-hero.hero-tarsasagi::after {
  background-image: url('tarsasagi-jog.jpg');
  background-position: center center;
}

.page-hero.hero-ingatlan::after {
  background-image: url('ingatlan-adas-vetel.jpg');
  background-position: right center;
}

.page-hero.hero-csaladjog::after {
  background-image: url('csalad-oroklesi-jog.jpg');
  background-position: center 40%;
}

.page-hero.hero-munkajog::after {
  background-image: url('munkajog.jpg');
  background-position: center center;
}

.page-hero.hero-koveteles::after {
  background-image: url('koveteles-ervenyesites.jpg');
  background-position: center center;
}

.page-hero.hero-gazdasagi::after {
  background-image: url('gazdasagi-buntetojog.jpg');
  background-position: center center;
}
.page-hero.hero-ingatlanjog::after {
  background-image: url('ingatlanjog.jpg');
  background-position: center center;
}

.page-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.page-hero-content {
  max-width: 550px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.page-hero-highlight {
  font-weight: 400;
  opacity: 0.9;
}

.page-hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.page-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.page-hero .badge svg {
  color: var(--color-gold);
  width: 16px;
  height: 16px;
}

/* ========================================
   PAGE CONTENT - Aloldalak tartalom
   ======================================== */
.page-content {
  padding: 4rem 2rem;
  background: var(--color-white);
  text-align: justify;
}

.content-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}

.content-main {
  min-width: 0;
}

.content-main .lead {
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.content-main p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-main h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
}

.content-main h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

.content-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--color-gray-50);
  border-radius: 10px;
  text-align: center;
  border-left: 4px solid var(--color-gold);
}

.content-cta p {
  margin-bottom: 1.25rem;
  font-weight: 500;
}

/* Sidebar */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--color-gray-50);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--color-gray-200);
}

.sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-gold);
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 0.5rem;
}

.sidebar-links li a {
  font-size: 0.9rem;
  color: var(--color-text);
  transition: all 0.2s ease;
  display: block;
  padding: 0.4rem 0;
}

.sidebar-links li a:hover {
  color: var(--color-gold);
  padding-left: 0.5rem;
}

.sidebar-card.sidebar-contact {
  background: var(--color-primary) !important;
  border: none;
  }
  
  .sidebar-card.sidebar-contact h3 {
  color: var(--color-white) !important;
  border-bottom: 2px solid var(--color-gold) !important;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  }
  
  .sidebar-card.sidebar-contact p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  }
  
  .sidebar-card.sidebar-contact .contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: background 0.3s ease;
  }
  
  .sidebar-card.sidebar-contact .contact-info-item:hover {
  background: rgba(255, 255, 255, 0.15);
  }
  
  .sidebar-card.sidebar-contact .contact-info-item svg {
  flex-shrink: 0;
  color: var(--color-gold);
  }
  
  .sidebar-card.sidebar-contact .contact-info-item a {
  color: var(--color-white) !important;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  }
  
  .sidebar-card.sidebar-contact .contact-info-item a:hover {
  color: var(--color-gold) !important;
  }

.sidebar-card.sidebar-contact .contact-item {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-card.sidebar-contact .contact-item .label {
  color: rgba(255, 255, 255, 0.6);
}

.sidebar-card.sidebar-contact .contact-item a {
  color: var(--color-white);
}

.sidebar-card.sidebar-contact .contact-item a:hover {
  color: var(--color-gold);
}

.sidebar-card.sidebar-contact .btn {
  margin-top: 1rem;
  width: 100%;
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.sidebar-card.sidebar-contact .btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* ========================================
   FOOTER - Elegáns sötét stílus
   ======================================== */
.site-footer {
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, #071a2e 100%);
  color: var(--color-white);
  padding: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 3rem;
  padding: 3rem 2rem;
}

.footer-section h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-white);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.footer-section p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

/* Footer Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.footer-logo {
  height: 200px;
  width: auto;
  }

.footer-tagline {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.7 !important;
  margin-bottom: 1rem !important;
}

.footer-registration {
  font-size: 0.8rem !important;
  color: var(--color-gold) !important;
  font-weight: 500;
}

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

.footer-section ul li {
  margin-bottom: 0.4rem;
}

.footer-section ul li a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--color-gold);
}

/* Footer Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact-list li svg {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-contact-list li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer-contact-list li a:hover {
  color: var(--color-gold);
}

/* Footer Contact Section */
.footer-contact-section {
  display: flex;
  flex-direction: column;
}

.footer-links-title {
  margin-top: 1.5rem !important;
}

.footer-quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-quick-links li {
  margin-bottom: 0.5rem;
}

.footer-quick-links li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-quick-links li a:hover {
  color: var(--color-gold);
  padding-left: 0.5rem;
}

/* Footer Map Section */
.footer-map-section {
  text-align: center;
}

.footer-map-section h3 {
  text-align: left;
}

.footer-map-section h3::after {
  left: 0;
}

.footer-map-container {
  margin-top: 0.75rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map-container iframe {
  display: block;
  width: 100%;
  height: 200px;
}

.footer-address {
  margin-top: 1rem !important;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6 !important;
  text-align: left;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  }

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--color-gold);
}

.footer-separator {
  color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   BEMUTATKOZÁS PAGE STYLES
   ======================================== */

.hero.hero-about {
  background-color: #0a2647;
  background-image:
  linear-gradient(to right, rgba(10, 38, 71, 0.95) 0%, rgba(10, 38, 71, 0.75) 40%, rgba(10, 38, 71, 0.3) 70%, rgba(10, 38, 71, 0.1) 100%),
  url('bemutatkozas-targyalo.jpg');
  background-size: 100% 100%, cover;
  background-position: center center, right 20%;
  background-repeat: no-repeat, no-repeat;
  min-height: 65vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: fadeInScale 1.2s ease-out forwards;
}

/* ========================================
   About Intro Section - KÉP BALRA + SZÖVEG MELLETTE, TÖBBI ALATTA
   ======================================== */
.about-intro {
  padding: 5rem 2rem;
  background: var(--color-white);
}

.about-intro-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Felso resz: kep balra, bevezeto szoveg jobbra */
.about-intro-top {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.about-intro-image {
  position: relative;
  flex-shrink: 0;
  width: 320px;
}

.about-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
  border-radius: 8px;
}

.about-intro-badge span {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.about-intro-badge small {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* Bevezeto szoveg a kep mellett */
.about-intro-text {
  flex: 1;
}

.about-intro-text h1 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 1.25rem 0;
  line-height: 1.3;
}

.about-intro-text h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 1.5rem 0 0.75rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
  text-align: justify;
}

.about-intro-text h2:first-of-type {
  margin-top: 0;
}

.about-intro-text p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify !important;
}

/* Also resz: tobbi tartalom teljes szelessegben */
.about-intro-content {
  width: 100%;
  text-align: justify;
}

.about-intro-content h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
}

.about-intro-content h2:first-child {
  margin-top: 0;
}

.about-intro-content p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-intro-content .styled-list {
  margin: 0 0 1.5rem 0;
  list-style: none;
  padding: 0;
}

.about-intro-content .styled-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

.about-intro-content .styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

.about-intro-content .btn {
  margin-top: 1rem;
}

/* Expertise Areas - Képekkel */
.expertise-areas {
  padding: 4rem 2rem;
  background: var(--color-gray-50);
}

.expertise-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.expertise-areas h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.expertise-intro {
  color: var(--color-text-light);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* Szakterületek képekkel grid */
.expertise-grid-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.expertise-image-card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
}

.expertise-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.expertise-image-card:hover .expertise-image-overlay {
  opacity: 0.3;
}

.expertise-image-box {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.expertise-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.expertise-image-card:hover .expertise-image-box img {
  transform: scale(1.1);
}

.expertise-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  opacity: 0.15;
  transition: opacity 0.3s ease;
}

.expertise-image-content {
  padding: 1.25rem;
  text-align: left;
}

.expertise-image-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
  text-align: center;
}

.expertise-image-content p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* Activities Section */
.activities-section {
  padding: 4rem 2rem;
  background: var(--color-white);
}

.activities-container {
  max-width: 800px;
  margin: 0 auto;
}

.activities-section h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 3rem;
}

.activities-timeline {
  position: relative;
  padding-left: 3rem;
}

.activities-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold), var(--color-primary));
}

.activity-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.activity-item:last-child {
  margin-bottom: 0;
}

.activity-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-left: -36px;
}

.activity-content {
  padding-top: 0.5rem;
}

.activity-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 0.25rem;
}

.activity-content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Values Section */
.values-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.values-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.values-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.values-content blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-gold);
}

.values-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  text-align: justify;
}

.values-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 162, 39, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.value-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ========================================
   DÍJAZÁS OLDAL - SPECIFIKUS STÍLUSOK
   ======================================== */



/* Pricing Highlight Box */
.pricing-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--color-gold);
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.pricing-content {
  flex: 1;
}

.pricing-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
}

.pricing-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
  margin: 0.5rem 0;
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin: 0.5rem 0 0 0;
}

/* New pricing list styles for dijazas page */
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.pricing-item {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-200);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--color-gold);
}

.pricing-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.pricing-item .pricing-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 0.5rem 0;
  display: block;
}

.pricing-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-top: 0.5rem;
}

.pricing-note-box {
  background: #f0f4f8;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-gold);
  margin-top: 2rem;
}

.pricing-note-box h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.pricing-note-box p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   FAQ SECTION - Gyakori kérdések
   ======================================== */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.faq-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-gold);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   INGATLAN PAGE SPECIFIKUS
   ======================================== */
@media (max-width: 1024px) {
  .header-container {
    padding: 0.5rem 1.5rem;
  }

  /* SERVICES GRID - TABLET 2 oszlop */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 260px;
  }

    /* FEATURED BLOCK - TABLET */
  .featured-container {
    grid-template-columns: 1fr 1fr;
    min-height: 220px;
    position: relative;
  }

  .featured-content {
  padding: 2rem 2.5rem;
  z-index: 1;
  text-align: center;
  align-items: center;
  }

  .featured-content h2 {
    font-size: 1.3rem;
    text-align: center;
  }

  .featured-image {
    position: absolute;
    width: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
    transform: none;
    border-radius: 0 14px 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
  }

  .btn-featured {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    margin: 0;
    width: auto;
    padding: 0.75rem 1.5rem;
  }

  .btn-featured:hover {
    transform: translateY(-2px);
  }
  .hero {
    background-position: 70% center;
  }

  .main-nav ul {
    gap: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-container {
    gap: 2.5rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .content-container {
    grid-template-columns: 1fr 250px;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem 1.5rem;
  }

  .has-dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .has-dropdown:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .has-dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
  }
  .page-hero {
    min-height: 40vh;
    padding-top: 8rem;
    background-position: 70% center;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero-description {
    font-size: 0.95rem;
  }

  .about-intro-top {
  gap: 2rem;
  }

  .about-intro-image {
  width: 260px;
  }

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

  .values-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

   .content-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .content-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 0;
  }

  .page-wrapper {
    padding-top: 50px;
  }

  .header-container {
    padding: 0.5rem 1rem;
    min-height: 50px;
  }

  .site-header.scrolled .header-container {
    min-height: 40px;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }

  .site-header.scrolled .logo-img {
    width: 120px;
  }

  .has-dropdown {
    position: relative;
  }

  .has-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .has-dropdown .dropdown-toggle svg {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .has-dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    background: rgba(0, 0, 0, 0.25);
    min-width: 100%;
    width: 100%;
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }

  .dropdown-menu::before {
    display: none;
  }

  .has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
  }

  .dropdown-menu li {
    display: block;
    width: 100%;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .has-dropdown.active .dropdown-menu li {
    opacity: 1;
    transform: translateY(0);
  }

  .has-dropdown.active .dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
  .has-dropdown.active .dropdown-menu li:nth-child(2) { transition-delay: 0.1s; }
  .has-dropdown.active .dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
  .has-dropdown.active .dropdown-menu li:nth-child(4) { transition-delay: 0.2s; }
  .has-dropdown.active .dropdown-menu li:nth-child(5) { transition-delay: 0.25s; }
  .has-dropdown.active .dropdown-menu li:nth-child(6) { transition-delay: 0.3s; }
  .has-dropdown.active .dropdown-menu li:nth-child(7) { transition-delay: 0.35s; }
  .has-dropdown.active .dropdown-menu li:nth-child(8) { transition-delay: 0.4s; }

  .dropdown-menu li a {
    padding: 0.75rem 1.5rem;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .dropdown-menu li:last-child a {
    border-bottom: none;
  }

  .dropdown-menu li a:hover {
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.05);
  }

  .logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }

  .logo-img {
    width: 150px;
    height: auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    padding: 100px 2rem 2rem 2rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease,
                visibility 0.4s ease;
    z-index: 999;
  }

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

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .main-nav ul li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

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

  .main-nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
  .main-nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
  .main-nav.active ul li:nth-child(3) { transition-delay: 0.2s; }
  .main-nav.active ul li:nth-child(4) { transition-delay: 0.25s; }
  .main-nav.active ul li:nth-child(5) { transition-delay: 0.3s; }

  .main-nav ul li a {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .main-nav a {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* HERO MOBIL */
  .hero {
  background-color: #0a2647;
  background-image:
  linear-gradient(to bottom, rgba(10, 38, 71, 0.65) 0%, rgba(10, 38, 71, 0.7) 50%, rgba(10, 38, 71, 0.75) 100%),
  url('17_telefonosverzio.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 65%;
  min-height: 75vh;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  }

  .hero-ingatlan-adas-vetel {
  background-image:
  linear-gradient(to bottom, rgba(10, 38, 71, 0.65) 0%, rgba(10, 38, 71, 0.7) 50%, rgba(10, 38, 71, 0.75) 100%),
  url('ingatlan-adas-vetel.jpg');
  background-position: center center;
  }

  .hero-container {
    display: block;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 5rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .hero-description {
    font-size: 0.85rem;
    padding: 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }

  .hero-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
  }

  .badge {
    font-size: 0.8rem;
  }

  .hero-image {
    display: none !important;
  }

  .about {
    padding: 3rem 1rem;
  }

.about-container {
  grid-template-columns: 1fr;
  gap: 2rem;
  }

.about-image {
  max-width: 100%;
  margin: 0 auto;
  }


.about-content {
  text-align: center;
  }

  .services {
    padding: 3rem 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    min-height: 220px;
  }

    /* FEATURED BLOCK - MOBIL */
  .featured-block {
    padding: 1.5rem 1rem;
  }

  .featured-container {
    display: flex;
    flex-direction: column;
    min-height: auto;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
  }

  .featured-content {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    justify-content: center;
    border-radius: 14px 14px 0 0;
    z-index: 1;
    flex: 0 0 60%;
    background: linear-gradient(135deg, #f5f7f9 0%, #e8ecf0 50%, #e8ecf0 100%);
  }

  .featured-content h2 {
    font-size: 1.15rem;
    text-align: center;
    margin: 0;
    width: 90%;
  }

  .featured-content p {
    text-align: center;
    width: 100%;
  }


  .featured-image {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    min-height: 140px;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a3a5c;
    background-image: linear-gradient(to bottom, rgba(26, 58, 92, 0.75), rgba(26, 58, 92, 0.75)), url('jog.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    border-radius: 0 0 14px 14px;
    z-index: 2;
    flex: 0 0 40%;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    margin-top: -30px;
  }

  .featured-image::before {
    display: none;
  }

  .featured-image img {
    display: none;
  }

  .btn-featured {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    padding: 0.75rem 1.5rem;
    margin: 0;
    z-index: 10;
    width: auto;
  }

  .btn-featured:hover {
    transform: translateY(-2px);
  }
  .why-choose {
    padding: 3rem 1rem;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .cta-bottom {
    padding: 3rem 1.5rem;
  }

  .cta-bottom h2 {
    font-size: 1.4rem;
  }

  .cta-bottom p {
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-section h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-map-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-address {
    text-align: center !important;
  }

  .footer-section p,
  .footer-section ul li a {
    font-size: 0.85rem;
  }

  .footer-logo {
    height: 150px;
  }

  .footer-contact-list li {
    justify-content: center;
  }

  .footer-quick-links li a {
    font-size: 0.9rem;
  }

  .footer-map-container iframe {
    height: 180px;
  }

.footer-address-note {
  font-size: 0.75rem !important;
  color: var(--color-gold) !important;
  font-style: italic;
  margin-top: 0.5rem !important;
  text-align: left;
}

.footer-hours-note {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-style: italic;
  margin-top: 0.75rem !important;
}

.footer-bottom {
    padding: 1rem;
    font-size: 0.75rem;
  }

  .page-hero {
    min-height: 50vh;
    padding-top: 8rem;
    background-position: 75% center;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .page-hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .page-hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .page-hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero-badges {
    gap: 1rem;
  }

  .page-hero .badge {
    font-size: 0.8rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .page-content {
    padding: 2.5rem 1rem;
    text-align: justify;
  }

  .content-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-sidebar {
    order: 2;
  }

  .content-main h2 {
    font-size: 1.2rem;
  }

  /* Hero - Mobil - PONTOSAN MINT A FŐOLDAL */
  .hero.hero-about {
    background-image: 
      linear-gradient(to bottom, rgba(10, 38, 71, 0.3) 0%, rgba(10, 38, 71, 0.5) 40%, rgba(10, 38, 71, 0.85) 65%, rgba(10, 38, 71, 1) 80%),
      url('bemutatkozas-targyalo.jpg');
    background-size: cover;
    background-position: center top;
    min-height: auto;
    padding-top: 12vh;
  }

  .hero.hero-about .hero-container {
    padding: 2rem 1.5rem 3rem;
  }

  .hero.hero-about .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero.hero-about .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero.hero-about .hero-description {
    font-size: 0.9rem;
  }

  .hero.hero-about .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero.hero-about .hero-buttons .btn {
    width: 100%;
    max-width: 260px;
  }

  .hero.hero-about .hero-badges {
    justify-content: center;
    gap: 0.75rem 1.5rem;
  }

  /* About Intro - Mobil */
  .about-intro {
  padding: 3rem 1.25rem;
  }

  .about-intro-top {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  }
  
  .about-intro-image {
  width: 100%;
  max-width: 300px;
  }
  
  .about-intro-badge {
  right: -10px;
  bottom: -15px;
  }

  .about-intro-text {
  text-align: center;
  }

  .about-intro-text h1 {
  font-size: 1.4rem;
  }

  .about-intro-text h2 {
  font-size: 1.15rem;
  margin: 1.25rem 0 0.6rem 0;
  }

  .about-intro-text p {
  font-size: 0.9rem;
  text-align: justify !important;
  }
  
  .about-intro-content h2 {
  font-size: 1.15rem;
  }
  
  .about-intro-content p {
  font-size: 0.9rem;
  }
  
  .about-intro-content .styled-list {
  margin: 0 0 1.25rem 0;
  list-style: none;
  padding: 0;
  }
  
  .about-intro-content .styled-list li {
  padding-left: 1.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  text-align: left;
  }



  .about-intro-image {
    max-width: 280px;
    margin-bottom: 2.5rem;
  }

  .about-intro-badge {
    right: -10px;
    bottom: -15px;
  }

  .about-intro-content h1 {
    font-size: 1.4rem;
    text-align: center;
  }

  .about-intro-content h2 {
    font-size: 1.15rem;
    display: inline-block;
  }

  .about-intro-content p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .about-intro-content .styled-list {
    margin: 0 0 1.25rem 0;
  }

  .about-intro-content .styled-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
  }

  .about-intro-tags {
    justify-content: center;
  }

  /* Expertise - Mobil */
  .expertise-areas {
    padding: 3rem 1rem;
  }

  .expertise-grid-images {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .expertise-image-box {
    height: 100px;
  }

  .expertise-image-content {
    padding: 1rem;
  }

  .expertise-image-content h3 {
    font-size: 0.9rem;
    text-align: center;
  }

  .expertise-image-content p {
    font-size: 0.75rem;
    text-align: center;
  }

  /* Activities - Mobil */
  .activities-section {
    padding: 3rem 1.5rem;
  }

  .activities-timeline {
    padding-left: 2.5rem;
  }

  .activity-icon {
    width: 40px;
    height: 40px;
    margin-left: -32px;
  }

  /* Values - Mobil */
  .values-section {
    padding: 3rem 1.5rem;
  }

  .values-content {
    text-align: center;
  }

  .values-content blockquote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--color-gold);
    padding-top: 1.5rem;
  }

  .pricing-highlight {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .pricing-icon {
    margin: 0 auto;
  }

  .content-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .expertise-image-box {
    height: 120px;
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.main-nav a:focus-visible {
  outline: none;
}



@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   DÍJAZÁS PAGE STYLES
   ======================================== */
.page-hero.hero-dijazas::after {
  background-image: url('dijazas.png');
  background-position: center center;
}

.pricing-highlight {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-gray-50);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  border-left: 4px solid var(--color-gold);
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.pricing-icon svg {
  width: 40px;
  height: 40px;
}

.pricing-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin: 0;
}

/* Sidebar Contact Items */
.sidebar-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Contact Items - Fehér háttérhez (sidebar-card) */
.sidebar-card .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--color-gray-50);
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
}

.sidebar-card .contact-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.sidebar-card .contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  overflow: hidden;
  flex: 1;
}

.sidebar-card .contact-item .label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.sidebar-card .contact-item a {
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.2s ease;
  word-break: break-all;
  overflow-wrap: anywhere;
  white-space: normal;
  display: block;
  width: 100%;
  }

.sidebar-card .contact-item a:hover {
  color: var(--color-gold);
}

/* Sidebar Highlight Card */
/* Sidebar Highlight Card - Sötétkék háttér fehér szöveggel */
.sidebar-card.sidebar-highlight {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%) !important;
  border: 1px solid rgba(201, 162, 39, 0.2);
  text-align: center;
  padding: 2rem 1.5rem;
}

.sidebar-highlight .highlight-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 162, 39, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin: 0 auto 1rem;
}

.sidebar-highlight h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-white) !important;
  margin-bottom: 0.75rem;
  border: none !important;
}

.sidebar-highlight h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.sidebar-highlight p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
}

/* ========================================
   KAPCSOLAT PAGE STYLES
   ======================================== */
.page-hero.hero-contact::after {
  background-image: url('kapcsolat.jpg');
  background-position: center center;
}

.contact-section {
  padding: 3rem 0;
  background: var(--color-gray-50);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-intro {
  margin-bottom: 2rem;
}

.contact-intro h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.contact-intro p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* Alert Messages */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.alert svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.alert p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.alert-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert-success svg {
  color: #28a745;
}

.alert-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.alert-error svg {
  color: #dc3545;
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group .required {
  color: #dc3545;
}

.form-group .optional {
  color: var(--color-text-light);
  font-weight: 400;
  font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10, 38, 71, 0.1);
}

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

.form-group small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.char-counter {
  text-align: right;
}

/* CAPTCHA */
.captcha-group {
  background: var(--color-gray-50);
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid var(--color-gray-200);
}

.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.captcha-question {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  flex: 1;
}

.captcha-text {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.captcha-input {
  width: 120px !important;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  margin-top: 1rem;
}

.btn-submit svg {
  flex-shrink: 0;
}

/* QR Code Section */
.qr-code-section {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.qr-code-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.qr-code-image {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.qr-code-text {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

  /* Contact Sidebar */
  .contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  }

  .contact-content {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  }

  .sidebar-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  }

.sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-gold);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-detail-item .label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-detail-item a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-detail-item a:hover {
  color: var(--color-gold);
}

.contact-detail-item p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Office Hours */
.sidebar-hours {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.sidebar-hours h3 {
  color: var(--color-gold);
  border-bottom-color: rgba(201, 162, 39, 0.3);
  margin-bottom: 0.25rem;
}

.hours-subtitle {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  padding: 0;
  margin: 0 0 1rem 0;
  letter-spacing: 0.02em;
}

.hours-description {
  color: #ffffff;
  text-align: center;
  padding: 1rem 1rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  border-left: 3px solid var(--color-gold);
}

.office-hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  color: var(--color-white);
  font-size: 0.9rem;
}

.hour-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item span:first-child {
  font-weight: 500;
}

.hour-item span:last-child {
  color: var(--color-gold);
  font-weight: 600;
}

.hours-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-style: italic;
}

/* ========================================
   RESPONSIVE - KAPCSOLAT
   ======================================== */
  @media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .contact-sidebar {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 2rem 0;
  }

  .contact-container {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .contact-intro h2 {
    font-size: 1.5rem;
  }

  .contact-intro p {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .sidebar-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .sidebar-card h3 {
    font-size: 1.1rem;
  }

  .contact-info-item {
    font-size: 0.9rem;
  }

  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 8rem 1rem 2.5rem;
    min-height: 300px;
  }

  .page-hero-container {
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .page-hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .page-hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 0 0.75rem;
  }

  .contact-intro {
    padding: 0 0.25rem;
  }

  .contact-intro h2 {
    font-size: 1.25rem;
  }

  .contact-intro p {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 1.25rem 1rem;
  }

  .sidebar-card {
    padding: 1rem;
  }

  .contact-info-item a {
    word-break: break-word;
  }

  .qr-code-section {
    padding: 1.5rem 1rem;
  }

  .qr-code-container {
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
  }

  .qr-code-section h3 {
    font-size: 1rem;
  }

  .qr-code-text {
    font-size: 0.85rem;
  }

  .page-hero {
    padding: 8rem 1rem 2.5rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .page-hero-description {
    font-size: 0.95rem;
  }

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

  .btn-submit {
    width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 1.5rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

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

  .captcha-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-input {
    width: 100% !important;
  }

  .contact-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Google Maps Container */
.sidebar-map {
  padding: 1.5rem;
}

.map-container {
  width: 100%;
  max-width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
  box-sizing: border-box;
}

.map-container iframe {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .map-container {
    height: 250px;
  }

  .map-intro {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 220px;
    border-radius: 6px;
  }
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* ========================================
   SZAKTERÜLETEK PAGE STYLES
   ======================================== */
.page-hero.hero-szakteruletek::after {
  background-image: url('szakteruletek.jpg');
  background-position: center center;
}

.expertise-overview {
  padding: 5rem 2rem;
  background: var(--color-gray-50);
}

.expertise-overview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.expertise-intro-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.expertise-intro-text p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Expertise Cards Grid */
.expertise-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.expertise-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.expertise-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.expertise-card:hover .expertise-card-image img {
  transform: scale(1.1);
}

.expertise-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 38, 71, 0.2), rgba(10, 38, 71, 0.6));
  transition: opacity 0.3s ease;
}

.expertise-card:hover .expertise-card-overlay {
  opacity: 0.4;
}

.expertise-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.expertise-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.expertise-card-content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.expertise-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  transition: gap 0.3s ease;
}

.expertise-card:hover .expertise-card-link {
  gap: 0.75rem;
}

.expertise-card-link svg {
  transition: transform 0.3s ease;
}

.expertise-card:hover .expertise-card-link svg {
  transform: translateX(4px);
}

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

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ========================================
   RESPONSIVE - SZAKTERÜLETEK
   ======================================== */
@media (max-width: 1200px) {
  .expertise-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .expertise-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .expertise-overview {
    padding: 3rem 1.5rem;
  }

  .expertise-intro-text {
    margin-bottom: 2.5rem;
  }

  .expertise-intro-text h2 {
    font-size: 1.5rem;
  }

  .expertise-intro-text p {
    font-size: 0.95rem;
  }

  .expertise-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .expertise-card-image {
    height: 180px;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }
}

/* ========================================
   INGATLANJOG ALOLDAL
   ======================================== */

/* Hero */
.hero-ingatlanjog {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a2a4a 100%);
}

/* 2. Ügyvédi munkadíj szekció */
.ingatlan-pricing-section {
  padding: 4rem 2rem;
  background: #f0f4f8;
}

.ingatlan-pricing-container {
  max-width: 900px;
  margin: 0 auto;
}

.ingatlan-pricing-card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ingatlan-pricing-header {
  background: var(--color-primary);
  padding: 2rem 2.5rem;
  text-align: center;
}

.ingatlan-pricing-header h2 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.ingatlan-pricing-subtitle {
  color: var(--color-gold);
  font-size: 1.75rem;
  font-weight: 700;
}

.ingatlan-pricing-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.ingatlan-pricing-table-wrapper {
  padding: 0 2.5rem;
  padding-top: 1.5rem;
}

.ingatlan-pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.ingatlan-pricing-table thead th {
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  border-bottom: 2px solid var(--color-gold);
  font-weight: 600;
}

.ingatlan-pricing-table tbody td {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text);
  border-bottom: 1px solid #eee;
}

.ingatlan-pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.ingatlan-pricing-table tbody tr:hover {
  background: #f8f9fa;
}

.ingatlan-pricing-table tbody td strong {
  color: var(--color-primary);
  font-weight: 600;
}

.ingatlan-pricing-footer {
  padding: 1.25rem 2.5rem 2rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
  text-align: center;
}

/* 3. Magyarázó blokk */
.ingatlan-info-section {
  padding: 4rem 2rem;
  background: var(--color-white);
}

.ingatlan-info-container {
  max-width: 800px;
  margin: 0 auto;
}

.ingatlan-info-container h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.ingatlan-info-lead {
  font-size: 1.1rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.ingatlan-info-container p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  text-align: justify;
}

.ingatlan-info-container .styled-list {
  text-align: left;
}

.ingatlan-info-container .styled-list li {
  text-align: left;
}

/* 4. Két oszlopos blokk */
.ingatlan-twocol-section {
  padding: 4rem 2rem;
  background: #f8f9fc;
}

.ingatlan-twocol-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.ingatlan-twocol-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--color-gold);
}

.ingatlan-twocol-icon {
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.ingatlan-twocol-card h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.ingatlan-twocol-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingatlan-twocol-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
}

.ingatlan-twocol-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

.ingatlan-twocol-card p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* 5. Kötelező elemek */
.ingatlan-required-section {
  padding: 4rem 2rem;
  background: var(--color-white);
}

.ingatlan-required-container {
  max-width: 1000px;
  margin: 0 auto;
}

.ingatlan-required-container h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.ingatlan-required-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.ingatlan-required-card {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 2.5rem;
  border-left: 4px solid var(--color-gold);
}

.ingatlan-required-card h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.ingatlan-required-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingatlan-required-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
}

.ingatlan-required-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* 6. Figyelemfelhívó szekció */
.ingatlan-warning-section {
  padding: 4rem 2rem;
  background: #e8edf5;
}

.ingatlan-warning-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ingatlan-warning-icon {
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.ingatlan-warning-container h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ingatlan-warning-container p {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* 7. Hogyan dolgozom - process grid */
.ingatlan-process-section {
  padding: 4rem 2rem;
  background: var(--color-white);
}

.ingatlan-process-container {
  max-width: 1000px;
  margin: 0 auto;
}

.ingatlan-process-container h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.ingatlan-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ingatlan-process-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f8f9fc;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingatlan-process-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ingatlan-process-icon {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.ingatlan-process-item h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.ingatlan-process-item p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* 8. Várható költségek */
.ingatlan-costs-section {
  padding: 4rem 2rem;
  background: #f8f9fc;
}

.ingatlan-costs-container {
  max-width: 1000px;
  margin: 0 auto;
}

.ingatlan-costs-container h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.ingatlan-costs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.ingatlan-costs-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.ingatlan-costs-card h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-gold);
}

.ingatlan-costs-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingatlan-costs-card ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}

.ingatlan-costs-card ul li:last-child {
  border-bottom: none;
}

.cost-label {
  color: var(--color-text);
  font-weight: 500;
}

.cost-value {
  color: var(--color-primary);
  font-weight: 600;
  text-align: right;
  font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE - INGATLANJOG
   ======================================== */
@media (max-width: 768px) {
  .ingatlan-pricing-header {
    padding: 1.5rem;
  }

  .ingatlan-pricing-subtitle {
    font-size: 1.35rem;
  }

  .ingatlan-pricing-table-wrapper {
    padding: 0 1rem;
    padding-top: 1rem;
    overflow-x: auto;
  }

  .ingatlan-pricing-footer {
    padding: 1rem 1rem 1.5rem;
  }

  .ingatlan-twocol-container {
    grid-template-columns: 1fr;
  }

  .ingatlan-required-grid {
    grid-template-columns: 1fr;
  }

  .ingatlan-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .ingatlan-costs-grid {
    grid-template-columns: 1fr;
  }

  .ingatlan-info-container h2 {
    font-size: 1.35rem;
  }

  .ingatlan-required-container h2,
  .ingatlan-process-container h2,
  .ingatlan-costs-container h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .ingatlan-process-grid {
    grid-template-columns: 1fr;
  }

  .ingatlan-costs-card ul li {
    flex-direction: column;
    gap: 0.25rem;
  }

  .cost-value {
    text-align: left;
  }
}

/* ========================================
   KAPCSOLAT OLDAL - EXTRA STÍLUSOK
   ======================================== */

/* Hogyan zajlik a kapcsolatfelvétel szekció */
.contact-process-section {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-process-section h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .contact-process-section {
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
    border-radius: 8px;
  }

  .contact-process-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-process-section {
    padding: 1.25rem 0.75rem;
  }

  .contact-process-section h2 {
    font-size: 1.25rem;
  }
}

/* Adatvédelmi megjegyzés */
.form-privacy-notice {
  margin: 1rem 0;
  padding: 0.75rem;
  background: #f8f9fc;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.form-privacy-notice a {
  color: var(--color-gold);
  text-decoration: underline;
}

.form-privacy-notice a:hover {
  color: var(--color-primary);
}

/* Fogadóórák kiemelés */
.hours-highlight {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff8e6;
  border-left: 3px solid var(--color-gold);
  border-radius: 6px;
}

.hours-highlight p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text);
}

/* Iroda fotósor - CAROUSEL */
.sidebar-gallery {
  margin-bottom: 2rem;
}

.gallery-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.office-gallery-carousel {
  position: relative;
  margin-bottom: 1.5rem;
}

.office-gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0 1rem 0;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) #f1f5f9;
}

.office-gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.office-gallery-scroll::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.office-gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

.office-gallery-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

.gallery-item {
  position: relative;
  flex: 0 0 280px;
  height: 210px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 38, 71, 0.95), transparent);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 2rem 1rem 0.75rem 1rem;
  text-align: center;
  pointer-events: none;
}

.gallery-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8f9fc;
  border-radius: 8px;
}

.gallery-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text);
}

.gallery-info-item svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

/* Térkép intro */
.map-intro {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* QR kód fejléc */
.qr-code-section h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Footer extra notice a kapcsolat oldalon */
.footer-contact-extra {
  background: #fff8e6;
  border-bottom: 3px solid var(--color-gold);
  padding: 1rem 2rem;
  text-align: center;
}

.footer-contact-extra p {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-process-section {
    padding: 1.5rem;
  }

  .office-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    aspect-ratio: 16/9;
  }

  .footer-contact-extra {
    padding: 0.75rem 1rem;
  }

  .footer-contact-extra p {
    font-size: 0.85rem;
  }
}

/* ========================================
   PRIVACY CHECKBOX - Kapcsolat űrlap
   ======================================== */

.form-privacy-checkbox {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f8f9fc;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  transition: border-color 0.3s ease;
}

.form-privacy-checkbox:has(input:checked) {
  border-color: var(--color-gold);
  background: #fffef8;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin: 0;
}

.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  cursor: pointer;
  accent-color: var(--color-gold);
  border: 2px solid #d1d5db;
  border-radius: 4px;
}

.checkbox-label input[type="checkbox"]:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.checkbox-text {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--color-gold);
  text-decoration: underline;
  font-weight: 500;
}

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

.checkbox-text .required {
  color: #dc2626;
  font-weight: 600;
}

/* Error state */
.checkbox-label.error {
  border-color: #dc2626;
}

.checkbox-label.error .checkbox-text {
  color: #dc2626;
}

@media (max-width: 768px) {
  .form-privacy-checkbox {
    padding: 0.75rem;
  }
  
  .checkbox-text {
    font-size: 0.85rem;
  }
}

/* ========================================
   GALÉRIA NAVIGÁCIÓ ÉS LIGHTBOX
   ======================================== */

/* Carousel navigation arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.gallery-nav:hover {
  background: var(--color-gold);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav svg {
  color: var(--color-primary);
}

.gallery-nav:hover svg {
  color: white;
}

.gallery-nav-left {
  left: -15px;
}

.gallery-nav-right {
  right: -15px;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: white;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: white;
  transform: rotate(90deg);
}

.lightbox-close svg {
  color: white;
}

.lightbox-close:hover svg {
  color: #000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav svg {
  color: white;
}

.lightbox-nav:hover svg {
  color: #000;
}

.lightbox-nav-left {
  left: 3rem;
}

.lightbox-nav-right {
  right: 3rem;
}

/* Responsive gallery & lightbox */
@media (max-width: 768px) {
  .office-gallery-scroll {
    gap: 0.75rem;
  }

  .gallery-item {
    flex: 0 0 240px;
    height: 180px;
  }

  .gallery-nav {
    display: none;
  }

  .gallery-lightbox {
    padding: 1rem;
  }

  .gallery-lightbox img {
    max-width: 95%;
    max-height: 70vh;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-nav {
    width: 50px;
    height: 50px;
  }

  .lightbox-nav-left {
    left: 1rem;
  }

  .lightbox-nav-right {
    right: 1rem;
  }

  .lightbox-caption {
    font-size: 0.95rem;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex: 0 0 200px;
    height: 150px;
  }
}

/* ========================================
   JOGI OLDALAK - Adatkezelési tájékoztató, Impresszum
   ======================================== */

.hero-legal {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d3b66 100%);
  min-height: 40vh;
}

.legal-content {
  background: #f8f9fc;
}

.legal-section {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  }
  
.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
  }

.legal-section h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.legal-info-box {
  background: #f8f9fc;
  border-left: 4px solid var(--color-gold);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.legal-info-box p {
  margin: 0.5rem 0;
}

.legal-info-box strong {
  color: var(--color-primary);
  font-weight: 600;
}

.legal-contact-box {
  background: white;
  border: 2px solid var(--color-gold);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin: 1.5rem 0;
}

.legal-contact-box p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.legal-contact-box a {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
}

.legal-contact-box a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.note {
  background: #fffef8;
  border-left: 3px solid var(--color-gold);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  font-style: italic;
  color: var(--color-text-light);
}

/* Responsive legal pages */
@media (max-width: 768px) {
  .legal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }

  .legal-info-box,
  .legal-contact-box {
    padding: 1rem;
  }

  .legal-contact-box p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .legal-section h2 {
    font-size: 1.2rem;
  }

  .legal-info-box,
  .legal-contact-box {
    padding: 0.75rem;
  }
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--color-white);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--color-gold);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.cookie-banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.cookie-banner-text h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin: 0 0 0.35rem 0;
}

.cookie-banner-text p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--color-gold);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner-text a:hover {
  color: var(--color-primary);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Cookie gombok */
.cookie-btn {
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: var(--font-body);
}

.cookie-btn-accept {
  background: var(--color-gold);
  color: white;
  border-color: var(--color-gold);
}

.cookie-btn-accept:hover {
  background: #b8922e;
  border-color: #b8922e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.35);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.cookie-btn-settings:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-1px);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--color-text-light);
  border-color: #e5e7eb;
}

.cookie-btn-reject:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: var(--color-text);
}

/* ========================================
   COOKIE BEALLITASOK PANEL
   ======================================== */

.cookie-settings-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-settings-visible {
  opacity: 1;
}

.cookie-settings-panel {
  background: var(--color-white);
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.cookie-settings-visible .cookie-settings-panel {
  transform: scale(1);
}

.cookie-settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid #f1f5f9;
}

.cookie-settings-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-primary);
  margin: 0;
}

.cookie-settings-close {
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.cookie-settings-close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}

.cookie-settings-body {
  overflow-y: auto;
  padding: 1rem 2rem;
  flex: 1;
}

/* Kategoria kartya */
.cookie-category {
  padding: 1.25rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.cookie-category-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary);
  margin: 0 0 0.25rem 0;
}

.cookie-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-badge-required {
  background: rgba(10, 38, 71, 0.1);
  color: var(--color-primary);
}

.cookie-badge-optional {
  background: rgba(201, 162, 39, 0.12);
  color: #9a7c1e;
}

.cookie-category-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
}

.cookie-examples {
  font-size: 0.8rem;
  color: var(--color-text-light);
  background: #f8f9fc;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  margin-top: 0.5rem;
}

.cookie-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 0.5rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--color-gold);
}

/* Toggle switch */
.cookie-toggle {
  flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
  position: relative;
  width: 50px;
  height: 26px;
  -webkit-appearance: none;
  appearance: none;
  background: #d1d5db;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
  outline: none;
  border: none;
}

.cookie-toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked {
  background: var(--color-gold);
}

.cookie-toggle input[type="checkbox"]:checked::after {
  transform: translateX(24px);
}

.cookie-toggle-disabled input[type="checkbox"] {
  background: var(--color-primary);
  cursor: not-allowed;
  opacity: 0.8;
}

.cookie-toggle-disabled input[type="checkbox"]::after {
  transform: translateX(24px);
}

/* Settings footer */
.cookie-settings-footer {
  padding: 1.25rem 2rem;
  border-top: 2px solid #f1f5f9;
  text-align: center;
}

.cookie-btn-save {
  background: var(--color-gold);
  color: white;
  border: 2px solid var(--color-gold);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  width: 100%;
}

.cookie-btn-save:hover {
  background: #b8922e;
  border-color: #b8922e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.35);
}

.cookie-settings-legal {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.cookie-settings-legal a {
  color: var(--color-gold);
  text-decoration: underline;
}

/* ========================================
   MAP CONSENT PLACEHOLDER
   ======================================== */

.map-consent-placeholder {
  width: 100%;
  background: #f3f4f6;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.map-consent-placeholder svg {
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.map-consent-placeholder p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.map-consent-placeholder .cookie-btn {
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
}

.map-iframe-consent {
  border-radius: 8px;
}

/* ========================================
   COOKIE TAJEKOZTATO OLDAL - LAYOUT
   ======================================== */

.cookie-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}

.cookie-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cookie-sidebar-cta {
  background: var(--color-primary);
  color: white;
  text-align: center;
}

.cookie-sidebar-btn {
  margin-top: 1rem;
  background: var(--color-gold);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-sidebar-btn:hover {
  background: #b8922e;
}

.cookie-sidebar-contact {
  background: var(--color-primary);
  color: white;
}

/* Sidebar linkek stilusa */
.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card ul li a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar-card ul li:last-child a {
  border-bottom: none;
}

.sidebar-card ul li a:hover {
  color: var(--color-gold);
}

/* ========================================
   COOKIE TAJEKOZTATO OLDAL - TABLAZAT + KARTYA
   ======================================== */

.cookie-info-card {
  background: #f8f9fc;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1rem 0;
  border-left: 4px solid #e5e7eb;
}

.cookie-info-necessary {
  border-left-color: var(--color-primary);
}

.cookie-info-functional {
  border-left-color: #3b82f6;
}

.cookie-info-statistics {
  border-left-color: #f59e0b;
}

.cookie-info-external {
  border-left-color: #10b981;
}

.cookie-info-status {
  margin-bottom: 0.75rem;
}

.cookie-status-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-status-active {
  background: rgba(10, 38, 71, 0.1);
  color: var(--color-primary);
}

.cookie-status-optional {
  background: rgba(201, 162, 39, 0.12);
  color: #9a7c1e;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.85rem;
}

.cookie-table th {
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-table th:first-child {
  border-radius: 6px 0 0 0;
}

.cookie-table th:last-child {
  border-radius: 0 6px 0 0;
}

.cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  color: var(--color-text);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table code {
  background: rgba(10, 38, 71, 0.06);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 500;
}

.cookie-note-inline {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-left: 2px solid var(--color-gold);
  background: #fffef8;
}

.cookie-reopen-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--color-gold);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.cookie-reopen-btn:hover {
  background: #b8922e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.35);
}

/* ========================================
   COOKIE RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
  .cookie-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .cookie-card {
    padding: 2rem;
  }

  .cookie-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .cookie-layout {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }

  .cookie-card {
    padding: 1.25rem;
    border-radius: 10px;
  }

  .cookie-card h2 {
    font-size: 1.25rem;
    word-wrap: break-word;
  }

  .cookie-card h3 {
    font-size: 1.1rem;
    word-wrap: break-word;
  }

  .cookie-card p,
  .cookie-card li {
    font-size: 0.9rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cookie-info-card {
    padding: 1rem;
    margin: 0.75rem 0;
  }

  .cookie-table {
    font-size: 0.75rem;
    display: block;
    overflow-x: auto;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.5rem 0.6rem;
    font-size: 0.75rem;
  }

  .cookie-note-inline {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }

  .cookie-banner-inner {
    padding: 1.25rem 1rem;
  }

  .cookie-banner-icon {
    display: none;
  }

  .cookie-banner-text h3 {
    font-size: 1rem;
  }

  .cookie-banner-text p {
    font-size: 0.8rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }

  .cookie-settings-panel {
    max-height: 90vh;
    border-radius: 12px;
  }

  .cookie-settings-header {
    padding: 1.25rem 1.25rem;
  }

  .cookie-settings-body {
    padding: 0.75rem 1.25rem;
  }

  .cookie-settings-footer {
    padding: 1rem 1.25rem;
  }

  .cookie-settings-header h3 {
    font-size: 1.1rem;
  }

  .cookie-info-card {
    padding: 1rem;
  }

  .cookie-table {
    font-size: 0.8rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.5rem 0.65rem;
  }
}

@media (max-width: 480px) {
  .cookie-settings-panel {
    margin: 0.5rem;
  }

  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cookie-toggle {
    align-self: flex-end;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
  }
}

/* ========================================
   HERO IMAGE STRIP - Vegtelen marquee kepsor
   ======================================== */
.hero-image-strip {
  width: 100%;
  overflow: hidden;
  background: var(--color-primary);
  padding: 1rem 0;
}

.hero-strip-track {
  display: flex;
  width: max-content;
  will-change: transform;
  gap: 12px;
}

.hero-strip-scroll {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

.hero-strip-scroll img {
  width: 280px;
  height: 190px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border-radius: 8px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-strip-scroll img:hover {
  opacity: 0.9;
  border-color: var(--color-gold);
  transform: scale(1.02);
}

/* Strip Lightbox */
.strip-lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 38, 71, 0.92);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10000;
  animation: modalFadeIn 0.3s ease;
}

.strip-lightbox-img {
  max-width: 85%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.strip-lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-top: 1rem;
  text-align: center;
}

/* Strip lightbox navigacios gombok - ugyanaz a stilus mint a galeria lightbox */
.strip-lightbox-overlay .lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.strip-lightbox-overlay .lightbox-close:hover {
  background: white;
  transform: rotate(90deg);
}

.strip-lightbox-overlay .lightbox-close svg {
  color: white;
}

.strip-lightbox-overlay .lightbox-close:hover svg {
  color: #000;
}

.strip-lightbox-overlay .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.strip-lightbox-overlay .lightbox-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.strip-lightbox-overlay .lightbox-nav svg {
  color: white;
}

.strip-lightbox-overlay .lightbox-nav:hover svg {
  color: #000;
}

.strip-lightbox-overlay .lightbox-nav-left {
  left: 3rem;
}

.strip-lightbox-overlay .lightbox-nav-right {
  right: 3rem;
}

@media (max-width: 768px) {
  .hero-strip-scroll img {
    width: 200px;
    height: 130px;
  }

  .strip-lightbox-overlay .lightbox-nav {
    width: 50px;
    height: 50px;
  }

  .strip-lightbox-overlay .lightbox-nav-left {
    left: 1rem;
  }

  .strip-lightbox-overlay .lightbox-nav-right {
    right: 1rem;
  }

  .strip-lightbox-overlay .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   CONTACT SUCCESS MODAL - Felugro ablak
   ======================================== */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 38, 71, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.contact-modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.contact-modal-icon {
  margin-bottom: 1.5rem;
}

.contact-modal h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-modal p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-modal .btn {
  min-width: 160px;
}
