/* SmartLife Solar — Professional Design System */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --brand: var(--green-600);
  --brand-dark: var(--green-800);
  --brand-mid: var(--green-700);
  --brand-light: var(--green-50);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,.1);
  --radius: 4px;
  --radius-lg: 6px;
  --transition: .2s ease;
  --header-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans Arabic', Tahoma, Arial, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body[dir="ltr"] { font-family: 'DM Sans', system-ui, sans-serif; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1140px, 90%);
  margin-inline: auto;
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--sm { width: 16px; height: 16px; }
.icon--lg { width: 24px; height: 24px; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-600);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  height: 54px;
  width: auto;
  max-width: min(150px, 38vw);
  object-fit: contain;
  display: block;
}

.nav { display: flex; align-items: center; gap: .1rem; }
.nav__link {
  padding: .45rem .75rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .9rem;
  color: var(--gray-600);
  transition: color var(--transition);
}
.nav__link:hover, .nav__link.active {
  background: var(--green-50);
  color: var(--green-700);
}

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

.lang-btn {
  padding: .35rem .7rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: .8rem;
  color: var(--gray-600);
  transition: all var(--transition);
}
.lang-btn:hover { border-color: var(--green-500); color: var(--green-600); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--gray-700);
}
.menu-toggle svg { width: 26px; height: 26px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  box-shadow: 0 4px 14px rgba(22,163,74,.35);
}
.btn--primary:hover { background: linear-gradient(135deg, var(--green-700), var(--green-800)); }
.btn--secondary {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--blue-100);
}
.btn--secondary:hover { background: var(--blue-50); border-color: var(--blue-100); }
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--whatsapp {
  background: #25d366;
  color: #fff;
}
.btn--whatsapp:hover { background: #1ebe57; }
.btn--lg { padding: .9rem 1.75rem; font-size: .95rem; }
.btn--sm { padding: .45rem .9rem; font-size: .85rem; }

/* Hero — image only */
section.hero {
  position: relative;
  padding: var(--header-h) 0 0;
  overflow: hidden;
}
.hero__slider {
  position: relative;
  width: 100%;
}
.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}
.hero__slide.is-active {
  position: relative;
  opacity: 1;
}
.hero__slide img {
  width: 100%;
  height: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
}

/* Sections */
section { padding: 4.5rem 0; }
.section-header {
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.section-header--center {
  text-align: center;
  margin-inline: auto;
}
.section-tag {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-700);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
  line-height: 1.35;
}
.section-desc { color: var(--gray-600); font-size: 1rem; }

.bg-light { background: var(--gray-50); }
.bg-green { background: linear-gradient(135deg, var(--green-50), var(--blue-50)); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.grid-2 > * { min-width: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* About block */
.about-block { align-items: center; }
.about-block__text { color: var(--gray-600); margin-bottom: 1.75rem; line-height: 1.85; }
.about-block__img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition);
}
.card:hover { border-color: var(--gray-300); }
.card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-100), var(--blue-100));
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--green-700);
}
.card__title { font-size: 1.05rem; font-weight: 600; margin-bottom: .4rem; color: var(--gray-900); }
.card__text { color: var(--gray-600); font-size: .9rem; line-height: 1.7; }
.about-objectives {
  border-top: 3px solid var(--green-600);
  margin-bottom: 1rem;
}
.about-objectives__list {
  color: var(--gray-600);
  padding-inline-start: 1.4rem;
  display: grid;
  gap: .7rem;
  font-size: .95rem;
  line-height: 1.8;
}

/* Benefits */
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.benefit-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-600);
  color: #fff;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}
.benefit-item__icon .icon { stroke: #fff; }
.benefit-item__title { font-weight: 600; margin-bottom: .2rem; font-size: .95rem; }
.benefit-item__text { color: var(--gray-600); font-size: .875rem; line-height: 1.65; }

/* Services */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition);
}
.service-card:hover { border-color: var(--green-500); }
.service-card__img { height: 190px; object-fit: cover; width: 100%; }
.service-card__body { padding: 1.35rem; }
.service-card__title { font-size: 1.05rem; font-weight: 600; margin-bottom: .45rem; color: var(--gray-900); }
.service-card__text { color: var(--gray-600); font-size: .875rem; margin-bottom: 1rem; line-height: 1.65; }
.service-card__link {
  color: var(--green-600);
  font-weight: 600;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.service-card__link:hover { color: var(--green-700); }
[dir="rtl"] .service-card__link .icon { transform: scaleX(-1); }

.service-card__title a:hover { color: var(--green-600); }

/* Service detail */
.service-detail__intro { align-items: start; margin-bottom: 2rem; }
.service-detail__image {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.service-detail__summary { display: flex; flex-direction: column; gap: 1.5rem; }
.service-detail__overview {
  color: var(--gray-600);
  line-height: 1.85;
  font-size: 1rem;
}
.service-detail__content { align-items: start; }
.service-detail__heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
}
.service-features { list-style: none; }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-size: .925rem;
  line-height: 1.6;
}
.service-features li:last-child { border-bottom: none; }
.service-features__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}
.service-features__icon .icon { stroke: var(--green-600); }
.service-process {
  list-style: none;
  counter-reset: service-step;
}
.service-process li {
  counter-increment: service-step;
  position: relative;
  padding-inline-start: 2.75rem;
  margin-bottom: 1.25rem;
}
.service-process li:last-child { margin-bottom: 0; }
.service-process li::before {
  content: counter(service-step);
  position: absolute;
  inset-inline-start: 0;
  top: .1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.service-process li strong {
  display: block;
  font-size: .95rem;
  color: var(--gray-900);
  margin-bottom: .25rem;
}
.service-process li span {
  display: block;
  color: var(--gray-600);
  font-size: .875rem;
  line-height: 1.65;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700), var(--blue-800));
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner__content { flex: 1; min-width: 240px; }
.cta-banner__title { font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 700; margin-bottom: .5rem; letter-spacing: -.02em; }
.cta-banner__text { opacity: .85; font-size: .95rem; max-width: 480px; }

/* Forms */
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: .35rem;
  font-size: .85rem;
  color: var(--gray-700);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
}

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--green-700), var(--blue-800));
  color: #fff;
  padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
}
.page-hero--center { text-align: center; }
.page-hero__title { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 700; margin-bottom: .6rem; letter-spacing: -.02em; }
.page-hero__desc { opacity: .85; max-width: 560px; font-size: .95rem; }
.page-hero--center .page-hero__desc { margin: 0 auto; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.breadcrumbs a:hover { color: var(--green-600); }
.breadcrumbs__sep { opacity: .4; }

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 3.5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__logo-img {
  height: 48px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}
.footer__brand { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: .85rem; }
.footer__desc { font-size: .875rem; line-height: 1.8; margin-bottom: 1.25rem; color: var(--gray-500); }
.footer__title { color: #fff; font-weight: 600; margin-bottom: .85rem; font-size: .9rem; }
.footer__link {
  display: block;
  padding: .25rem 0;
  font-size: .875rem;
  color: var(--gray-500);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--green-400); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  margin-bottom: .6rem;
  color: var(--gray-500);
}
.footer__contact-item .icon { margin-top: .15rem; color: var(--green-400); stroke: var(--green-400); }
.footer__contact-item a:hover { color: #fff; }
.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: var(--gray-500);
}
.footer__social { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer__social:empty { display: none; }
.footer__social a,
.footer__social-static {
  width: 34px; height: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  color: var(--gray-500);
  transition: all var(--transition);
}
.footer__social a .icon,
.footer__social-static .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}
.footer__social a:hover { background: var(--green-600); border-color: var(--green-600); color: #fff; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 50px;
  height: 50px;
  background: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: background var(--transition);
}
body[dir="ltr"] .whatsapp-float { left: auto; right: 1.25rem; }
.whatsapp-float:hover { background: #1ebe57; }
.whatsapp-float .icon { width: 26px; height: 26px; stroke: #fff; fill: #fff; stroke-width: 0; }

/* Chatbot */
.chatbot {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1000;
  font-family: inherit;
}
body[dir="ltr"] .chatbot { right: auto; left: 1.25rem; }
.chatbot__launcher {
  width: auto;
  min-width: 56px;
  height: 56px;
  padding: 0 1rem;
  border: none;
  border-radius: 999px;
  background: var(--green-700);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  transition: background var(--transition), transform var(--transition);
}
.chatbot__launcher:hover { background: var(--green-800); transform: scale(1.05); }
.chatbot__launcher-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
}
.chatbot__launcher svg { width: 26px; height: 26px; }
.chatbot__launcher-label {
  font-family: inherit;
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
}
.chatbot__panel {
  display: none;
  position: absolute;
  bottom: calc(100% + .75rem);
  right: 0;
  width: min(360px, calc(100vw - 2rem));
  height: min(520px, calc(100vh - 7rem));
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  overflow: hidden;
}
body[dir="ltr"] .chatbot__panel { right: auto; left: 0; }
.chatbot.is-open .chatbot__panel { display: flex; }
.chatbot.is-open .chatbot__launcher { background: var(--gray-800); }
.chatbot__header {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: #fff;
  padding: .9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.chatbot__header-text { min-width: 0; }
.chatbot__title { font-weight: 700; font-size: .95rem; line-height: 1.3; }
.chatbot__subtitle { font-size: .75rem; opacity: .85; margin-top: .15rem; }
.chatbot__close {
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}
.chatbot__close:hover { background: rgba(255,255,255,.25); }
.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.chatbot__msg {
  max-width: 88%;
  padding: .65rem .85rem;
  border-radius: 12px;
  font-size: .88rem;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}
.chatbot__msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  border-bottom-inline-start-radius: 4px;
}
.chatbot__msg--user {
  align-self: flex-end;
  background: var(--green-700);
  color: #fff;
  border-bottom-inline-end-radius: 4px;
}
.chatbot__msg--error {
  align-self: flex-start;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.chatbot__typing {
  align-self: flex-start;
  color: var(--gray-500);
  font-size: .8rem;
  padding: .25rem .5rem;
}
.chatbot__form {
  display: flex;
  gap: .5rem;
  padding: .75rem;
  border-top: 1px solid var(--gray-200);
  background: #fff;
}
.chatbot__input {
  flex: 1;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: .65rem .75rem;
  font: inherit;
  font-size: .88rem;
  outline: none;
  min-width: 0;
}
.chatbot__input:focus { border-color: var(--green-600); }
.chatbot__send {
  border: none;
  background: var(--green-700);
  color: #fff;
  border-radius: 8px;
  padding: 0 .9rem;
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.chatbot__send:hover { background: var(--green-800); }
.chatbot__send:disabled { opacity: .6; cursor: not-allowed; }

@media (max-width: 480px) {
  .chatbot__panel {
    position: fixed;
    inset: auto .75rem 5.5rem .75rem;
    width: auto;
    height: min(70vh, 520px);
    right: .75rem;
    left: .75rem;
  }
  body[dir="ltr"] .chatbot__panel { left: .75rem; right: .75rem; }
}

/* Projects */
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.project-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
}
.project-card__img { height: 170px; object-fit: cover; width: 100%; }
.project-card__badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: var(--green-600);
  color: #fff;
  padding: .2rem .65rem;
  border-radius: var(--radius);
  font-size: .75rem;
  font-weight: 600;
}
body[dir="ltr"] .project-card__badge { right: auto; left: .75rem; }
.project-card__body { padding: 1.35rem; }
.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .85rem;
  font-size: .8rem;
  color: var(--gray-500);
}
.project-card__meta span { display: flex; align-items: center; gap: .3rem; }

/* About */
.team-card { text-align: center; }
.team-card__avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto .85rem;
  object-fit: cover;
  border: 2px solid var(--gray-200);
}
.team-card__name { font-weight: 600; font-size: 1rem; }
.team-card__role { color: var(--green-600); font-size: .875rem; margin-bottom: .4rem; }
.team-card__bio { color: var(--gray-600); font-size: .85rem; }

.cert-badge {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  text-align: center;
}
.cert-badge__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto .65rem;
  background: linear-gradient(135deg, var(--green-100), var(--blue-100));
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--green-700);
}
.cert-badge__title { font-weight: 600; font-size: .9rem; }

/* Map */
.map-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  aspect-ratio: 16 / 10;
  min-height: 260px;
  background: var(--gray-100);
}
.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Contact info */
.contact-info-card {
  background: var(--green-50);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--green-100);
}
.contact-info-item {
  display: flex;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.contact-info-item__icon {
  width: 40px; height: 40px;
  background: var(--green-600);
  color: #fff;
  border-radius: var(--radius);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info-item__icon .icon { stroke: #fff; }
.contact-info-item__title { font-weight: 600; font-size: .9rem; margin-bottom: .1rem; }
.contact-info-item__text { color: var(--gray-600); font-size: .875rem; }
.contact-info-item__text a:hover { color: var(--green-600); }

.section-cta { text-align: center; margin-top: 2rem; }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gray-900);
  color: #fff;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  z-index: 9999;
  opacity: 0;
  transition: all .35s ease;
  font-size: .9rem;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast--success { background: var(--green-700); }

/* Mobile nav */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
  }
  body[dir="ltr"] .nav { right: 0; left: 0; }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav__link { width: 100%; padding: .7rem 1rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .map-container {
    aspect-ratio: 4 / 3;
    min-height: 240px;
    margin-top: .5rem;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  section { padding: 3rem 0; }
  section.hero { padding: var(--header-h) 0 0; }
}
