/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #1a3a62;
  --primary-d:  #122d52;
  --gold:       #c89208;
  --gold-light: #e8a830;
  --dark:       #09111e;
  --dark2:      #101d32;
  --dark3:      #1c3050;
  --text:       #182438;
  --text-muted: #5c6e84;
  --bg:         #f1ede6;
  --white:      #ffffff;
  --card-bg:    #ffffff;
  --border:     #dfd7c8;
  --radius:     16px;
  --radius-lg:  26px;
  --shadow-sm:  0 2px 12px rgba(9,17,30,.07);
  --shadow-md:  0 8px 36px rgba(9,17,30,.11);
  --shadow-lg:  0 24px 64px rgba(9,17,30,.16);
  --trans:      all .3s cubic-bezier(.4,0,.2,1);
  --header-h:   72px;
  --gold-onlight: #7a5600; /* WCAG AA gold on light backgrounds */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
}

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

.gold { color: var(--gold); }
.gold-onlight { color: var(--gold-onlight); }

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

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: var(--trans);
}

#header.scrolled {
  background: rgba(15, 23, 42, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-size: 1.25rem; font-weight: 800; color: #fff; }
.logo-sub  { font-size: .7rem; font-weight: 400; color: rgba(255,255,255,.7); letter-spacing: .3px; }
.logo-license { font-size: .6rem; color: rgba(255,255,255,.4); letter-spacing: .02em; margin-top: 1px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  transition: var(--trans);
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--trans);
}

.desktop-nav a:hover { color: var(--gold); }
.desktop-nav a:hover::after { width: 100%; }

.btn-nav {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: .9rem !important;
  transition: var(--trans) !important;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--gold-light) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,.4) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(15,23,42,.98);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  gap: 4px;
}
.mobile-nav a {
  padding: 13px 0;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--trans);
}
.mobile-nav a:last-child { border: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav.open { display: flex; }

/* ===== INNER PAGE HEADER (sub-pages: minhelet, knowledge-center, projects/*) ===== */
.page-header {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 60%, #0e2040 130%);
  padding: calc(var(--header-h) + 80px) 0 72px;
  text-align: center;
}
.page-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,.18);
  border: 1px solid rgba(212,160,23,.4);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.page-header-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.2; letter-spacing: -0.01em; }
.page-header-subtitle { font-size: 1.07rem; color: rgba(255,255,255,.80); max-width: 660px; margin: 0 auto; line-height: 1.7; }

.page-section { padding: 110px 0; }
.page-section.alt { background: var(--white); }
.page-block { max-width: 860px; margin: 0 auto 60px; }
.page-block:last-child { margin-bottom: 0; }
.page-block h2 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.page-block p { color: var(--text-muted); line-height: 1.85; font-size: .98rem; margin-bottom: 14px; }
.page-block .note-box {
  background: rgba(26,58,98,.06);
  border-right: 3px solid var(--primary);
  padding: 16px 20px;
  border-radius: 10px;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.8;
}

/* ===== KNOWLEDGE CENTER ===== */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.knowledge-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  position: relative;
}
.knowledge-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.kc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26,58,98,.10);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.kc-soon {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(212,160,23,.12);
  border: 1px solid rgba(212,160,23,.3);
  color: var(--gold-onlight);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.knowledge-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.knowledge-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== PROJECT PAGE COMPONENTS ===== */
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.section-lead {
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 760px;
}

/* Two-column image row (maps / paired visuals) */
.img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 640px) { .img-pair { grid-template-columns: 1fr; } }

/* Gallery grid (renderings / plans) */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--trans);
}
.gallery-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  padding: 12px 16px;
}
.gallery-caption strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.gallery-caption small {
  font-size: .78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Standalone figure (single full-width image) */
.project-figure {
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.project-figure img { width: 100%; display: block; }
.project-figure figcaption {
  padding: 12px 20px;
  font-size: .82rem;
  color: var(--text-muted);
  font-style: italic;
  background: var(--white);
  text-align: center;
}

/* img-pair caption variant */
.img-pair-item { display: flex; flex-direction: column; }
.img-pair-item img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.img-pair-caption {
  padding: 10px 4px 0;
  font-size: .82rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* Status block */
.status-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-right: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}
.status-block .status-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,58,98,.10);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.status-block p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: .97rem;
  margin-bottom: 10px;
}
.status-block p:last-child { margin-bottom: 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('assets/hero-bg.webp') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(9,17,30,.92) 0%,
    rgba(15,28,52,.52) 55%,
    rgba(9,17,30,.76) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 100px;
  max-width: 1100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,146,8,.12);
  border: 1px solid rgba(200,146,8,.45);
  color: var(--gold-light);
  padding: 10px 26px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: .06em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(200,146,8,.12), inset 0 1px 0 rgba(255,255,255,.08);
  animation: fadeInDown .6s ease both;
}

.hero-title {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  animation: fadeInDown .6s .1s ease both;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.7;
  animation: fadeInDown .6s .2s ease both;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px; height: 46px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 5px; height: 10px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollBounce 1.8s ease infinite;
}

/* ===== SECTION SHARED ===== */
.section-header { text-align: center; margin-bottom: 68px; }
.section-tag {
  display: inline-block;
  background: rgba(26,58,98,.12);
  color: var(--primary);
  border: 1px solid rgba(26,58,98,.3);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-tag.light { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.25); }
.section-title { font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.01em; }
.section-title.light { color: #fff; }
.section-subtitle { font-size: 1.02rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.section-subtitle.light { color: rgba(255,255,255,.7); }
.placeholder-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 6px 16px;
  background: rgba(212,160,23,.1);
  border: 1px solid rgba(212,160,23,.3);
  border-radius: 50px;
  color: var(--gold-onlight);
  font-size: .82rem;
  font-weight: 600;
}

.center-btn { text-align: center; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #a07200);
  color: var(--dark);
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Heebo', sans-serif;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  letter-spacing: .01em;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(200,146,8,.38); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Heebo', sans-serif;
  border: 1.5px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-3px); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  animation: fadeInUp .6s .3s ease both;
}

/* ===== SERVICES ===== */
.services {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--dark) 0%, #0e1d38 100%);
}
.services .container { position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--trans);
}
.service-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(200,146,8,.45);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
}

.service-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 20px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 600;
  transition: var(--trans);
}
.service-link:hover { gap: 10px; }

/* ===== WHY US ===== */
.why-us { padding: 110px 0; background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-content .section-tag { margin-bottom: 12px; display: block; }
.why-content .section-title { margin-bottom: 16px; }
.why-text { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; font-size: .97rem; }

.why-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .97rem;
  color: var(--text);
  font-weight: 500;
}
.why-list li i { font-size: 1.1rem; flex-shrink: 0; }

.why-visual { display: flex; align-items: center; justify-content: center; }

.why-card-stack {
  position: relative;
  width: 340px; height: 340px;
}

.why-center-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 8px 30px rgba(26,58,98,.4);
  z-index: 2;
}
.why-center-circle span { font-size: .9rem; font-weight: 700; margin-top: 2px; }

.why-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 180px;
  z-index: 3;
  animation: floatCard 3s ease-in-out infinite;
}
.why-float-card i { font-size: 1.5rem; flex-shrink: 0; }
.why-float-card strong { display: block; font-size: .9rem; color: var(--dark); font-weight: 700; }
.why-float-card small { font-size: .75rem; color: var(--text-muted); }

.card1 { top: 10px; right: 0; animation-delay: 0s; }
.card2 { top: 50%; right: -10px; transform: translateY(-50%); animation-delay: .6s; }
.card3 { bottom: 10px; right: 0; animation-delay: 1.2s; }

/* ===== ABOUT ===== */
.about { padding: 110px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about-img-block { position: relative; }
.about-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.about-main-img:hover img { transform: scale(1.03); }
.about-avatar { display: none; }

.about-content .section-tag { display: block; margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 18px; }
.about-text { color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; font-size: .97rem; }

.about-team { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.team-member { display: flex; align-items: center; gap: 12px; }
.team-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}
.team-member strong { display: block; font-size: .92rem; font-weight: 700; color: var(--dark); }
.team-member small { font-size: .78rem; color: var(--text-muted); }

.team-signature { display: flex; flex-direction: column; }
.team-signature strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.team-signature .sig-role {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.7;
}
.team-signature .sig-rep {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-onlight);
  line-height: 1.7;
}
.team-signature .sig-license {
  display: block;
  font-size: .72rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact { padding: 110px 0; background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: start;
}

.contact-info .section-tag { display: block; margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 14px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 36px; font-size: .97rem; }

.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(26,58,98,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .82rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: .97rem; font-weight: 600; color: var(--dark); transition: var(--trans); }
.contact-item a:hover { color: var(--primary); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Heebo', sans-serif;
  font-size: .93rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: var(--trans);
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,98,.12); }
.form-group textarea { resize: vertical; }

.form-status { font-size: .85rem; margin-bottom: 14px; min-height: 1.2em; }
.form-status.success { color: #16a34a; font-weight: 600; }
.form-status.error { color: #dc2626; font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 90px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; margin-top: 16px; }
.footer-brand .logo { margin-bottom: 0; }

.footer-links h4, .footer-contact-col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  padding: 6px 0;
  transition: var(--trans);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-links a:last-child { border: none; }
.footer-links a:hover { color: var(--gold); padding-right: 6px; }

.footer-contact-col p { color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-contact-col i { color: var(--primary); width: 16px; flex-shrink: 0; }
.footer-contact-col a { color: rgba(255,255,255,.55); transition: var(--trans); }
.footer-contact-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  z-index: 999;
  transition: var(--trans);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,.55); }

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--dark);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary-d); transform: translateY(-3px); }

/* ===== SERVICES – featured card ===== */
.featured-service {
  border: 1px solid rgba(212,160,23,.35) !important;
  background: rgba(212,160,23,.06) !important;
}
.gold-icon { background: linear-gradient(135deg, var(--gold), #b8860b) !important; }

/* ===== URBAN RENEWAL SECTION ===== */
.renewal { padding: 110px 0; background: var(--bg); }

/* ===== PROJECT INDEX CARDS (homepage renewal section) ===== */
.projects-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.proj-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.proj-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }

.proj-card-thumb {
  height: 190px;
  overflow: hidden;
}
.proj-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.proj-card:hover .proj-card-thumb img { transform: scale(1.04); }

.proj-card-body {
  padding: 20px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.proj-card-tag {
  font-size: .75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.proj-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.proj-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(26,58,98,.08);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.proj-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .87rem;
  font-weight: 700;
  color: var(--primary);
}
.proj-card-link i { transition: transform .2s; }
.proj-card:hover .proj-card-link i { transform: translateX(-4px); }

.renewal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.renewal-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--trans);
}
.renewal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.renewal-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 auto 16px;
}
.renewal-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.renewal-card p  { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ===== COST / NO-FEE MESSAGING ===== */
.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(26,58,98,.08);
  border: 1.5px solid rgba(26,58,98,.35);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 24px;
}
.highlight-box i { font-size: 1.3rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.highlight-box p { color: var(--dark); font-weight: 700; font-size: .98rem; line-height: 1.7; margin: 0; }

.cost-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,58,98,.10);
  border: 1px solid rgba(26,58,98,.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  margin: 14px 0;
}
.cost-badge.light {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

/* ===== PROCESS TIMELINE (homepage) ===== */
.timeline-section {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #0d1c34 100%);
  position: relative;
  overflow: hidden;
}
.timeline-wrap { display: flex; flex-direction: column; gap: 36px; }
.timeline-row { display: flex; align-items: flex-start; gap: 0; }
.timeline-connector {
  flex: 0 0 36px;
  width: 36px;
  height: 2px;
  margin-top: 30px;
  background: linear-gradient(90deg, rgba(212,160,23,.08), rgba(212,160,23,.55), rgba(212,160,23,.08));
}
.timeline-row-connector {
  width: 2px;
  height: 36px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(212,160,23,.08), rgba(212,160,23,.55), rgba(212,160,23,.08));
}
.timeline-step {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 22px 14px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--trans);
}
.timeline-step:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(212,160,23,.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.timeline-num {
  width: 58px; height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  color: #fff;
  font-size: 1.25rem;
}
.timeline-step-no {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 22px; height: 22px;
  background: var(--dark);
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  color: var(--gold-light);
}
.timeline-step h4 { font-size: .92rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.timeline-step p { font-size: .76rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ===== HERO TAGLINE ===== */
.hero-tagline {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-top: 4px;
  margin-bottom: 32px;
  letter-spacing: .04em;
  animation: fadeInDown .6s .15s ease both;
  text-align: center;
  width: 100%;
  display: block;
}

/* ===== CHECKLIST GRID (payment section) ===== */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
  margin-top: 36px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .93rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.checklist-item:hover { border-color: var(--primary); transform: translateY(-2px); }
.checklist-item i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }

/* ===== QUOTE BLOCK ===== */
.quote-block {
  position: relative;
  border-right: 3px solid var(--gold);
  padding: 22px 28px 22px 0;
  margin-top: 36px;
  background: rgba(200,146,8,.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.85;
  font-style: italic;
  margin: 0;
}
.quote-block cite {
  display: block;
  margin-top: 12px;
  font-size: .85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gold-onlight);
}
.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 4rem;
  color: var(--gold);
  opacity: .25;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ===== ADVANTAGE CARDS (minhelet) ===== */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.advantage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.advantage-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(26,58,98,.25); }
.advantage-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.advantage-card h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.advantage-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(12px); opacity: .4; }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.card2 { animation-name: floatCard2; }
@keyframes floatCard2 {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 8px)); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .checklist-grid  { grid-template-columns: repeat(2, 1fr); }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-grid           { grid-template-columns: 1fr; gap: 50px; }
  .why-visual         { order: -1; }
  .about-grid         { grid-template-columns: 1fr; }
  .about-img-block    { max-width: 500px; margin: 0 auto; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .renewal-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-title  { white-space: normal; font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .desktop-nav { display: none; }
  .hamburger   { display: flex; }
  .renewal-grid { grid-template-columns: 1fr 1fr; }
  .services-grid       { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .footer-inner        { grid-template-columns: 1fr; }
  .why-card-stack      { width: 280px; height: 280px; }
  .contact-form-wrap   { padding: 24px; }
  .timeline-row        { flex-direction: column; gap: 16px; }
  .timeline-connector  {
    width: 2px;
    height: 28px;
    flex: 0 0 28px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(212,160,23,.08), rgba(212,160,23,.55), rgba(212,160,23,.08));
  }
}

@media (max-width: 480px) {
  .hero-title      { font-size: 2rem; }
  .checklist-grid  { grid-template-columns: 1fr; }
  .advantage-grid  { grid-template-columns: 1fr; }
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  right: 24px;
  z-index: 9999;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ===== KEYBOARD FOCUS ===== */
:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

/* ===== ACCESSIBILITY WIDGET BUTTON ===== */
.acc-btn {
  position: fixed;
  bottom: 98px;
  left: 28px;
  z-index: 1050;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(26,58,98,.45);
  transition: var(--trans);
  font-family: 'Heebo', sans-serif;
}
.acc-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(26,58,98,.55); }

/* ===== ACCESSIBILITY PANEL ===== */
.acc-panel {
  position: fixed;
  bottom: 160px;
  left: 90px;
  z-index: 1051;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  width: 290px;
  overflow: hidden;
  transform: scale(.88) translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s cubic-bezier(.4,0,.2,1), opacity .22s ease;
  transform-origin: bottom left;
}
.acc-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.acc-panel-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.acc-panel-header h3 {
  font-size: .92rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.acc-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  font-size: 1rem;
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
  font-family: 'Heebo', sans-serif;
  flex-shrink: 0;
}
.acc-close:hover { background: rgba(255,255,255,.2); color: #fff; }

.acc-panel-body { padding: 18px; }

.acc-section { margin-bottom: 18px; }
.acc-section:last-of-type { margin-bottom: 14px; }
.acc-section-title {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.acc-text-controls { display: flex; gap: 6px; }
.acc-text-btn {
  flex: 1;
  padding: 8px 4px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  transition: var(--trans);
  text-align: center;
}
.acc-text-btn:hover { border-color: var(--primary); color: var(--primary); }
.acc-text-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.acc-toggle-list { display: flex; flex-direction: column; gap: 8px; }
.acc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 10px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--trans);
  text-align: right;
  width: 100%;
  font-family: 'Heebo', sans-serif;
}
.acc-toggle:hover { border-color: rgba(26,58,98,.2); }
.acc-toggle.on { background: rgba(26,58,98,.07); border-color: rgba(26,58,98,.3); }
.acc-toggle span { font-size: .88rem; font-weight: 600; color: var(--dark); }

.acc-switch {
  width: 38px; height: 22px;
  background: rgba(0,0,0,.15);
  border-radius: 11px;
  position: relative;
  transition: background .22s ease;
  flex-shrink: 0;
}
.acc-toggle.on .acc-switch { background: var(--primary); }
.acc-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: right .22s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.acc-toggle.on .acc-switch::after { right: calc(100% - 19px); }

.acc-reset-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: 'Heebo', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
}
.acc-reset-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ===== ACCESSIBILITY MODES ===== */
html.acc-text-sm  { font-size: 14px; }
html.acc-text-lg  { font-size: 18px; }
html.acc-text-xl  { font-size: 21px; }

html.acc-high-contrast body { filter: invert(1) hue-rotate(180deg); }
html.acc-high-contrast img,
html.acc-high-contrast video,
html.acc-high-contrast .hero-bg,
html.acc-high-contrast .acc-btn { filter: invert(1) hue-rotate(180deg); }

html.acc-readable-font body,
html.acc-readable-font * {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.04em;
  word-spacing: 0.08em;
}
html.acc-readable-font p,
html.acc-readable-font li { line-height: 1.9 !important; }

html.acc-highlight-links a:not(.btn-primary):not(.btn-nav):not(.btn-outline-light):not(.logo):not(.whatsapp-float) {
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  text-decoration-thickness: 2px !important;
  background: rgba(255,240,0,.35) !important;
  padding: 1px 4px !important;
  border-radius: 3px !important;
  color: #1a0c00 !important;
}

html.acc-stop-animations *,
html.acc-stop-animations *::before,
html.acc-stop-animations *::after {
  animation-duration: .001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .001ms !important;
  scroll-behavior: auto !important;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  background: rgba(15,23,42,.97);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.85);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  animation: fadeInUp .4s ease both;
}
.cookie-consent p { font-size: .88rem; max-width: 640px; line-height: 1.6; margin: 0; }
.cookie-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--trans);
}
.cookie-btn.accept { background: var(--gold); color: var(--dark); }
.cookie-btn.accept:hover { background: var(--gold-light); }
.cookie-btn.decline { background: transparent; color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.25); }
.cookie-btn.decline:hover { color: #fff; border-color: rgba(255,255,255,.5); }

@media (max-width: 600px) {
  .cookie-consent { flex-direction: column; text-align: center; }
}
