/* ============================================================
   Dojcsák Elektro — Custom CSS
   Palette: #1c4b75 (kék) + #f5c84c (arany)
   Betűtípus: Nunito
   ============================================================ */

:root {
  --blue:          #1c4b75;
  --blue-dark:     #153b5e;
  --blue-light:    #2e7db5;
  --navy:          #1c4b75;
  --gold:          #f5c84c;
  --gold-dark:     #d4a820;
  --gold-light:    #fef9e7;
  --grey-50:       #fbfbfb;
  --grey-100:      #f0f2f5;
  --grey-200:      #dee2e6;
  --grey-400:      #adb5bd;
  --grey-500:      #6c757d;
  --grey-700:      #495057;
  --grey-900:      #212529;
  --white:         #ffffff;
  --font-display:  'Nunito', sans-serif;
  --font-body:     'Nunito', sans-serif;
  --nav-height:    72px;
  --topbar-height: 40px;
  --header-total:  112px;
  --radius:        8px;
  --shadow-sm:     0 2px 8px rgba(28,75,117,0.08);
  --shadow-md:     0 4px 20px rgba(28,75,117,0.14);
  --shadow-lg:     0 8px 40px rgba(28,75,117,0.18);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; margin: 0; padding: 0; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--grey-700);
  background: var(--grey-50);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.2;
}

a { color: var(--blue); }
a:hover { color: var(--blue-dark); }

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

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ===== CONTACT BAR ===== */
.contact-bar {
  background: var(--blue);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1001;
}

.contact-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.contact-bar a {
  color: #fff;
  text-decoration: none;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: 0 1rem;
  white-space: nowrap;
  transition: color .15s;
}

.contact-bar a:hover { color: var(--gold); }
.contact-bar .bi { color: var(--gold); font-size: .9rem; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: var(--topbar-height);
  left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--nav-height);
  box-shadow: 0 2px 7px -1px rgba(0,0,0,0.15);
  transition: box-shadow .3s;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.brand-icon { font-size: 1.4rem; color: var(--gold); line-height: 1; }

.brand-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: .02em;
}

.brand-text strong { color: var(--gold); font-weight: 800; }

.site-nav {
  display: flex;
  align-items: center;
  gap: .125rem;
}

.site-nav a {
  color: var(--blue);
  text-decoration: none;
  padding: .5rem .6rem;
  font-size: .9rem;
  font-weight: 600;
  border-radius: 4px;
  line-height: 1.1;
  white-space: nowrap;
  transition: background-color .2s;
}

.site-nav a:hover { background: rgba(245,200,76,0.75); color: var(--blue); }

.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  padding: .45rem 1rem !important;
  margin-left: .375rem !important;
  font-size: .875rem !important;
  transition: background .2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: #000 !important; }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: sticky;
  top: calc(var(--topbar-height) + var(--nav-height));
  left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-top: 2px solid var(--gold);
}
.mobile-nav a {
  display: block;
  padding: .875rem 1.5rem;
  color: var(--blue);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--grey-100);
  transition: background .2s;
}
.mobile-nav a:hover { background: rgba(245,200,76,0.15); }
.nav-cta-mobile {
  display: block;
  margin: 1rem 1.5rem;
  padding: .75rem 1.5rem !important;
  background: var(--gold);
  color: #000 !important;
  border-radius: 50px;
  font-weight: 700 !important;
  text-align: center;
  font-size: 1rem !important;
  border: none !important;
  border-bottom: none !important;
}
.nav-cta-mobile:hover { background: var(--gold-dark) !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: var(--header-total);
  background-color: #1c424e;
  background-image:
    linear-gradient(135deg, rgba(28,66,78,0.97) 0%, rgba(28,75,117,0.88) 55%, rgba(28,75,117,0.80) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(245,200,76,0.04) 49px, rgba(245,200,76,0.04) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(245,200,76,0.04) 49px, rgba(245,200,76,0.04) 50px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  right: -150px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(28,75,117,0.35) 0%, transparent 70%);
  pointer-events: none;
}


.hero .container { position: relative; z-index: 1; padding: 80px 0; display: flex; justify-content: flex-end; }

.hero-content { max-width: 600px; text-align: right; padding-right: 3rem; }

.hero-surtitle {
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.hero-text {
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .25rem;
}

.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 1.5rem;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%        { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION COMMON ===== */
.section { padding: 96px 0; }
.section-light { background: var(--grey-100); }
.section-white { background: var(--white); }
.section-blue  { background: var(--navy); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-surtitle {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
  padding: .3rem .875rem;
  background: rgba(28,75,117,0.08);
  border-radius: 20px;
  margin-bottom: .875rem;
}
.section-surtitle.light { color: var(--gold); background: rgba(245,200,76,0.15); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: .5rem;
}

.section-text {
  font-size: 1rem;
  color: var(--grey-500);
  max-width: 560px;
  margin: .5rem auto 0;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  background: var(--gold);
  color: #000;
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: all .2s;
  cursor: pointer;
}
.btn-primary-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,200,76,0.45);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all .2s;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.875rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all .2s;
}
.btn-blue:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-1px); }

/* ===== ABOUT / EDITORIAL ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--grey-100), var(--grey-200));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--grey-400);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .25rem;
}

.about-content { padding-left: 1rem; }

.about-text {
  font-size: 1rem;
  color: var(--grey-700);
  line-height: 1.75;
}

.about-text p { margin-bottom: 1rem; }

.about-highlights { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }

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

.about-highlight-icon {
  width: 42px;
  height: 42px;
  background: rgba(28,75,117,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
  flex-shrink: 0;
}

.about-highlight strong {
  display: block;
  font-family: var(--font-display);
  font-size: .9375rem;
  color: var(--grey-900);
  margin-bottom: .2rem;
}

/* ===== SERVICES / PUSHES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--grey-200);
  transition: all .3s;
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(28,75,117,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.375rem;
  font-size: 1.875rem;
  color: var(--blue);
  transition: all .3s;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: #000;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: .625rem;
}

.service-text {
  font-size: .875rem;
  color: var(--grey-500);
  line-height: 1.6;
  margin-bottom: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  margin-top: 1.25rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .02em;
  font-family: var(--font-display);
}

/* Category page service cards (list.html) */
.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 1.5rem; text-align: left; }
.service-card-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: .5rem; }
.service-card-text { font-size: .875rem; color: var(--grey-500); margin-bottom: 1rem; }
.service-card-cta {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--blue);
  font-family: var(--font-display);
}

.category-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--grey-700);
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.75rem;
  border: 1px solid var(--grey-200);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: .2rem;
}

.review-text {
  font-size: .9375rem;
  color: var(--grey-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.review-author {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 0;
}

.review-location {
  font-weight: 400;
  color: var(--grey-500);
}

.review-quote {
  position: absolute;
  top: 1rem;
  right: 1.375rem;
  font-size: 3.5rem;
  color: var(--grey-200);
  line-height: 1;
  font-family: Georgia, serif;
  user-select: none;
}

.reviews-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: .78rem;
  color: var(--grey-400);
  font-style: italic;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--grey-200);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .2s;
}

.faq-question:hover { color: var(--blue); }
.faq-icon {
  color: var(--blue);
  font-size: 1.125rem;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
}

.faq-answer-inner {
  padding: 0 0 1.375rem;
  color: var(--grey-700);
  line-height: 1.75;
  font-size: .9375rem;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: .375rem;
  display: block;
  font-family: var(--font-display);
  letter-spacing: .02em;
}

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

.contact-form .form-group { margin-bottom: 1rem; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--grey-900);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(28,75,117,0.1);
}

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

.form-checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--grey-700);
  cursor: pointer;
  font-weight: 400;
  font-family: var(--font-body);
}
.form-checkbox input { width: auto; margin-top: .2rem; accent-color: var(--blue); }

.btn-submit {
  width: 100%;
  padding: .875rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
  letter-spacing: .02em;
  margin-top: .5rem;
}
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }

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

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(28,75,117,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-item-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: .25rem;
  font-family: var(--font-display);
}

.contact-item-value {
  font-size: 1rem;
  color: var(--grey-900);
  font-weight: 500;
  margin-bottom: 0;
}

.contact-item-value a { color: var(--blue); text-decoration: none; }
.contact-item-value a:hover { text-decoration: underline; }

.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--grey-200);
}
.contact-map iframe { display: block; width: 100%; height: 380px; border: 0; }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  margin-top: .75rem;
  font-size: .8125rem;
  color: var(--grey-500);
  text-decoration: none;
}
.map-link:hover { color: var(--blue); }

/* ===== CATEGORY HERO ===== */
.category-hero {
  padding: calc(var(--header-total) + 3rem) 0 4rem;
}

.category-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  max-width: 700px;
  line-height: 1.2;
  margin-top: .75rem;
}

.category-hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ===== SERVICE PAGE ===== */
.service-page-hero {
  padding: calc(var(--header-total) + 2.5rem) 0 3.5rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  font-size: .8125rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb-nav a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--white); }

.service-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-page-lead {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  line-height: 1.7;
}

.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.gallery-main {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs { display: flex; gap: .75rem; margin-top: .75rem; }
.gallery-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.gallery-thumb:hover { border-color: var(--gold); }

.service-page-cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
  font-family: var(--font-display);
}

.service-page-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey-700);
}
.service-page-body ul { padding-left: 1.25rem; }
.service-page-body li { margin-bottom: .375rem; }
.service-page-body strong { color: var(--grey-900); }

.service-page-cta-box {
  margin-top: 2rem;
  padding: 1.75rem;
  background: var(--grey-100);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}

.cta-box-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: .375rem;
}

.cta-box-text {
  font-size: .9rem;
  color: var(--grey-500);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.btn-cta-box {
  display: inline-block;
  padding: .75rem 1.75rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  margin-right: .75rem;
  margin-bottom: .5rem;
  transition: background .2s;
}
.btn-cta-box:hover { background: var(--blue-dark); color: var(--white); }

.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  margin-bottom: .5rem;
  transition: all .2s;
}
.btn-cta-phone:hover { background: var(--blue); color: var(--white); }

/* ===== PAGE (legal) ===== */
.page-layout {
  padding-top: var(--header-total);
  min-height: 70vh;
}
.page-layout .container {
  max-width: 780px;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.page-layout h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 2rem; }
.page-layout h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: .75rem; color: var(--grey-900); }
.page-layout h3 { font-size: 1rem; margin-top: 1.5rem; }
.page-layout p, .page-layout li { font-size: .9375rem; line-height: 1.75; }
.page-layout ul { padding-left: 1.25rem; }

/* ===== FOOTER DSP BAR ===== */
.footer-dsp {
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  padding: 1.25rem 0;
}
.footer-dsp-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-dsp-logos {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.footer-dsp-logos img {
  height: 44px;
  width: auto;
  opacity: .65;
}
.footer-dsp-text {
  font-size: .72rem;
  color: var(--grey-500);
  line-height: 1.6;
  margin: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--white);
  color: var(--grey-700);
  padding: 64px 0 0;
  border-top: 2px solid var(--gold);
}

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

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: .625rem;
}
.footer-brand-text strong { color: var(--gold-dark); }

.footer-tagline {
  font-size: .875rem;
  color: var(--grey-500);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(28,75,117,0.08);
  border-radius: 6px;
  color: var(--blue);
  text-decoration: none;
  margin-right: .5rem;
  font-size: 1rem;
  transition: all .2s;
}
.footer-social a:hover { background: var(--gold); color: #000; }

.footer-col-title {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: var(--grey-700);
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-dark); }

.footer-bottom {
  background: var(--blue);
  padding: 12px 0;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .78rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.footer-copy { color: rgba(255,255,255,0.8); margin: 0; }
.footer-tax  { color: rgba(255,255,255,0.5); margin: 0; }

.footer-legal-links { display: flex; gap: 1.25rem; }
.footer-legal-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: .78rem;
  transition: color .2s;
}
.footer-legal-links a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .contact-bar a { font-size: .78rem; padding: 0 .5rem; }
}

@media (max-width: 1199px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .about-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge       { bottom: 1rem; right: 1rem; }
  .contact-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .service-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .section           { padding: 64px 0; }
  .services-grid     { grid-template-columns: 1fr; }
  .reviews-grid      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats        { flex-direction: column; gap: 1.5rem; border-top: none; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .about-content     { padding-left: 0; }
  .contact-bar a span.d-sm-none { display: inline !important; }
  .contact-bar a span.d-none { display: none !important; }
}

/* ===== IMAGE-TEXT BLOCK ===== */
.image-text-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.image-text-section .about-grid-reverse { direction: rtl; }
.image-text-section .about-grid-reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .image-text-section .about-grid,
  .image-text-section .about-grid-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ===== TEXT BLOCK ===== */
.text-section .text-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== LEGAL PAGE ===== */
.page-layout {
  padding: 4rem 0;
}
.page-layout h1 { margin-bottom: 2rem; }
.page-layout .page-text-content {
  max-width: 800px;
  line-height: 1.8;
}
