/* ============================================================
   BSR Wohnungsauflösung Berlin – Hauptstylesheet
   Mobile-First | Orange #F07D00 | © 2024
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --orange:        #F07D00;
  --orange-dark:   #D96900;
  --orange-light:  #FF8F1C;
  --white:         #FFFFFF;
  --dark:          #1A1A1A;
  --gray-900:      #2D2D2D;
  --gray-700:      #595959;
  --gray-500:      #888888;
  --gray-200:      #E8E8E8;
  --gray-100:      #F4F4F4;
  --success:       #28a745;
  --error:         #dc3545;

  --font:          'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:        6px;
  --radius-lg:     12px;
  --radius-xl:     18px;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.14);
  --trans:         0.25s ease;
  --maxw:          1280px;
  --header-h:      68px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--orange-dark); }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; }
input, select, textarea { font-family: var(--font); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.625rem); }
h4 { font-size: clamp(1.05rem, 2.5vw, 1.25rem); }
p { margin-bottom: 1rem; color: var(--gray-700); line-height: 1.75; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--gray-900); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

.section        { padding: 4rem 0; }
.section--sm    { padding: 2.5rem 0; }
.section--lg    { padding: 6rem 0; }
.section--gray  { background: var(--gray-100); }
.section--dark  { background: var(--dark); }
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p  { color: rgba(255,255,255,0.75); }

.section__header { text-align: center; margin-bottom: 3rem; }
.section__eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.625rem;
}
.section--dark .section__eyebrow { color: var(--orange-light); }
.section__desc {
  max-width: 620px;
  margin: 0.75rem auto 0;
  font-size: 1.0625rem;
  color: var(--gray-700);
}
.section--dark .section__desc { color: rgba(255,255,255,0.7); }

/* Grid utility */
.grid          { display: grid; gap: 1.5rem; }
.grid--2       { grid-template-columns: 1fr; }
.grid--3       { grid-template-columns: 1fr; }
.grid--4       { grid-template-columns: 1fr; }
@media (min-width: 600px)  { .grid--2 { grid-template-columns: repeat(2,1fr); } .grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px)  { .grid--3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .grid--4 { grid-template-columns: repeat(4,1fr); } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all var(--trans);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,125,0,0.45);
}
.btn--outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn--lg { padding: 1.125rem 2.375rem; font-size: 1.0625rem; }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--dark);
  padding: 0.4rem 0;
  font-size: 0.8125rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.topbar a { color: rgba(255,255,255,0.8); font-weight: 500; }
.topbar a:hover { color: var(--orange); }
.topbar__phone { color: var(--orange) !important; font-weight: 800 !important; font-size: 0.9375rem !important; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}
.header__inner {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img,
.header__logo svg { height: 48px; width: 48px; object-fit: contain; }

/* ---- HAMBURGER ---- */
.hamburger {
  background: none;
  border: none;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger__line {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.is-active .hamburger__line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.is-active .hamburger__line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- MOBILE NAV ---- */
.nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  overflow-y: auto;
  padding: 1.25rem;
  flex-direction: column;
}
.nav.is-open { display: flex; }
.nav__list { display: flex; flex-direction: column; }
.nav__item { border-bottom: 1px solid var(--gray-200); }
.nav__link {
  display: block;
  padding: 0.875rem 0;
  font-weight: 700;
  color: var(--dark);
  font-size: 1.0625rem;
}
.nav__link:hover, .nav__link.is-active { color: var(--orange); }
.nav__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0.875rem 0;
  font-weight: 700;
  color: var(--dark);
  font-size: 1.0625rem;
}
.nav__toggle:hover { color: var(--orange); }
.nav__toggle-icon { transition: transform var(--trans); font-size: 1rem; }
.nav__item.is-open .nav__toggle-icon { transform: rotate(180deg); }
.nav__dropdown {
  display: none;
  flex-direction: column;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}
.nav__item.is-open .nav__dropdown { display: flex; }
.nav__dropdown-link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  border-radius: var(--radius);
  font-weight: 500;
}
.nav__dropdown-link:hover { background: var(--orange); color: var(--white); }

.header__cta { display: none; }

/* ---- DESKTOP NAV ---- */
@media (min-width: 1024px) {
  .hamburger { display: none; }
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: none;
    overflow: visible;
    flex: 1;
    justify-content: center;
  }
  .nav__list { flex-direction: row; align-items: center; }
  .nav__item { border-bottom: none; position: relative; }
  .nav__link {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    white-space: nowrap;
  }
  .nav__toggle {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    white-space: nowrap;
    gap: 0.25rem;
  }
  .nav__dropdown {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 0.5rem 0.625rem 0.625rem;
    flex-direction: column;
    z-index: 100;
    margin-bottom: 0;
    /* Fade instead of display:none so hover gap is bridged */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
    /* Transparent top padding bridges the gap between trigger and dropdown */
    padding-top: 0.75rem;
  }
  /* Invisible bridge above dropdown keeps :hover alive while mouse travels */
  .nav__dropdown::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
  }
  .nav__item:hover .nav__dropdown,
  .nav__item.is-open .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav__dropdown-link { white-space: nowrap; font-size: 0.875rem; }
  .header__cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }
  .header__phone {
    font-weight: 800;
    color: var(--orange);
    font-size: 1.0625rem;
    white-space: nowrap;
  }
  .header__phone:hover { color: var(--orange-dark); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: url('../images/hero-banner.jpg') center center / cover no-repeat;
  color: var(--white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18,18,18,0.70);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 0% 50%, rgba(240,125,0,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__content { position: relative; z-index: 1; max-width: 720px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.375rem 1rem;
  border-radius: 30px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero__title { color: var(--white); margin-bottom: 1.25rem; }
.hero__title span { color: var(--orange); }
.hero__desc { color: rgba(255,255,255,0.82); font-size: 1.125rem; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.hero__trust-check {
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: white;
  font-weight: 700;
}
@media (min-width: 1024px) { .hero { padding: 6.5rem 0; } }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--orange); padding: 2.5rem 0; }
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-bar__grid { grid-template-columns: repeat(4,1fr); } }
.stat__num {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-top: 0.375rem;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card__top {
  background: var(--orange);
  padding: 2rem 1.75rem 1.5rem;
}
.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.5rem;
}
.service-card__title { color: var(--white); font-size: 1.375rem; margin-bottom: 0.375rem; }
.service-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card__desc { color: var(--gray-700); margin-bottom: 1.25rem; flex: 1; }
.service-card__list { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-card__list li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--gray-700);
}
.service-card__list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}

/* ============================================================
   FEATURE BOXES
   ============================================================ */
.feature-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--orange);
}
.feature-box__icon {
  width: 48px; height: 48px;
  background: rgba(240,125,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.375rem;
  flex-shrink: 0;
}
.feature-box__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--dark); }
.feature-box__desc { font-size: 0.875rem; color: var(--gray-700); margin: 0; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: grid; gap: 1.5rem; }
@media (min-width: 600px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4,1fr); } }
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step__num {
  width: 56px; height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.step__title { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.step__desc { font-size: 0.875rem; color: var(--gray-700); margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.625rem; }
.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--trans);
  line-height: 1.4;
}
.faq-question:hover { background: var(--gray-100); }
.faq-question.is-active { background: var(--orange); color: var(--white); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--trans);
}
.faq-question.is-active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 1.25rem 1.5rem;
  background: var(--gray-100);
}
.faq-answer.is-open { display: block; }
.faq-answer p { font-size: 0.9375rem; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.testimonial__stars { color: var(--orange); font-size: 1.125rem; letter-spacing: 2px; display: block; margin-bottom: 1rem; }
.testimonial__text { font-style: italic; color: var(--gray-700); margin-bottom: 1.25rem; font-size: 0.9375rem; }
.testimonial__author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(240,125,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--orange);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 700; color: var(--dark); display: block; font-size: 0.9375rem; }
.testimonial__loc { font-size: 0.8125rem; color: var(--gray-500); }

/* ============================================================
   DISTRICT GRID
   ============================================================ */
.district-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0.875rem;
}
@media (min-width: 600px)  { .district-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .district-grid { grid-template-columns: repeat(4,1fr); } }
.district-link {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  transition: all var(--trans);
}
.district-link:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.section--dark .district-link {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.section--dark .district-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 600px) { .form-grid--2 { grid-template-columns: repeat(2,1fr); } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
}
.form-label .req { color: var(--orange); }
.form-control {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,125,0,0.14);
}
.form-control::placeholder { color: var(--gray-500); }
.form-control--select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}
.form-control--textarea { resize: vertical; min-height: 130px; }
.form-check {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}
.form-check label { font-size: 0.875rem; color: var(--gray-700); line-height: 1.55; }
.form-check a { color: var(--orange); text-decoration: underline; }
.form-msg {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  display: none;
  margin-top: 1rem;
}
.form-msg--success { background: rgba(40,167,69,0.1); color: var(--success); border: 1.5px solid var(--success); }
.form-msg--error   { background: rgba(220,53,69,0.1);  color: var(--error);   border: 1.5px solid var(--error); }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.9); margin-bottom: 2rem; font-size: 1.0625rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs { padding: 0.75rem 0; background: var(--gray-100); border-bottom: 1px solid var(--gray-200); }
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8125rem;
}
.breadcrumbs__item { display: flex; align-items: center; gap: 0.5rem; color: var(--gray-700); }
.breadcrumbs__item:not(:last-child)::after { content: '›'; color: var(--gray-500); }
.breadcrumbs__item a { color: var(--gray-700); }
.breadcrumbs__item a:hover { color: var(--orange); }
.breadcrumbs__item:last-child { color: var(--orange); font-weight: 600; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: url('../images/hero-banner.jpg') center center / cover no-repeat;
  padding: 4rem 0;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18,18,18,0.72);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__title { color: var(--white); margin-bottom: 1rem; }
.page-hero__title span { color: var(--orange); }
.page-hero__desc { color: rgba(255,255,255,0.78); max-width: 640px; margin: 0 auto; font-size: 1.0625rem; }

/* ============================================================
   CONTENT SPLIT
   ============================================================ */
.content-split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) {
  .content-split { grid-template-columns: repeat(2,1fr); }
  .content-split--reverse .content-split__visual { order: 2; }
  .content-split--reverse .content-split__text   { order: 1; }
}
.content-split__visual {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: var(--radius-xl);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.content-split__visual::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--orange);
}
.content-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

/* ============================================================
   CHECK LIST
   ============================================================ */
.check-list { display: flex; flex-direction: column; gap: 0.625rem; }
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--gray-700);
}
.check-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1.6;
}

/* ============================================================
   PRICE CARDS
   ============================================================ */
.price-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: border-color var(--trans);
}
.price-card--featured { border-color: var(--orange); }
.price-card:hover { border-color: var(--orange); }
.price-card__head {
  background: var(--gray-100);
  padding: 2rem 1.75rem;
  text-align: center;
}
.price-card--featured .price-card__head { background: var(--orange); }
.price-card__type { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-700); display: block; margin-bottom: 0.5rem; }
.price-card--featured .price-card__type { color: rgba(255,255,255,0.8); }
.price-card__price { font-size: 2.75rem; font-weight: 800; color: var(--dark); line-height: 1; }
.price-card--featured .price-card__price { color: var(--white); }
.price-card__unit { font-size: 0.875rem; color: var(--gray-500); }
.price-card--featured .price-card__unit { color: rgba(255,255,255,0.7); }
.price-card__body { padding: 1.75rem; }
.price-card__list { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.75rem; }
.price-card__list li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--gray-700);
}
.price-card__list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1.55;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); padding-top: 4rem; }
.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 600px)  { .footer__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-top: 1rem; }
.footer__logo { display: inline-flex; }
.footer__logo img,
.footer__logo svg { height: 42px; width: auto; }
.footer__col-title { color: var(--white); font-size: 0.9375rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer__nav { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__nav a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color var(--trans); }
.footer__nav a:hover { color: var(--orange); }
.footer__contact-item {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.625rem;
  line-height: 1.6;
}
.footer__contact-item a { color: rgba(255,255,255,0.6); }
.footer__contact-item a:hover { color: var(--orange); }
.footer__contact-item .sym { color: var(--orange); flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer__legal a:hover { color: var(--orange); }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #111;
  padding: 1.25rem 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cookie-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cookie-banner__text { font-size: 0.875rem; color: rgba(255,255,255,0.8); flex: 1; line-height: 1.6; }
.cookie-banner__text a { color: var(--orange); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   FLOAT PHONE (mobile only)
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 999;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.9375rem;
  box-shadow: 0 6px 24px rgba(240,125,0,0.55);
  animation: ctaPulse 2.5s infinite;
}
.float-cta:hover { background: var(--orange-dark); color: var(--white); }
@media (min-width: 1024px) { .float-cta { display: none; } }
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(240,125,0,0.55); }
  50%      { box-shadow: 0 6px 36px rgba(240,125,0,0.85); }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-orange  { color: var(--orange) !important; }
.text-white   { color: var(--white)  !important; }
.text-gray    { color: var(--gray-700); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

/* Fade-in animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fadeup { animation: fadeUp 0.6s ease both; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 599px) { .hide-xs { display: none; } }
@media (min-width: 600px) { .show-xs-only { display: none; } }
