/* ============================================================
   OTO KURTARICI - ANA TASARIM
   ============================================================ */

:root {
  --navy-900: #081527;
  --navy-800: #0c2244;
  --navy-700: #12305c;
  --navy-600: #1b3f75;
  --blue: #2b6bd4;
  --orange: #f0641b;
  --orange-600: #e05510;
  --orange-light: #ff8a3d;
  --orange-rgb: 240, 100, 27;
  --orange-tint: #fff0e3;
  --navy-rgb: 12, 34, 68;
  --yellow: #ffd23f;
  --green: #25d366;
  --red: #e53935;
  --text: #223048;
  --text-soft: #5a6b85;
  --muted: #8593ab;
  --bg: #f5f7fb;
  --bg-alt: #eef2f8;
  --line: #e4e9f2;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(var(--navy-rgb), 0.06);
  --shadow: 0 10px 30px rgba(var(--navy-rgb), 0.10);
  --shadow-lg: 0 22px 50px rgba(var(--navy-rgb), 0.16);
  --container: 1200px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

svg { vertical-align: middle; }

/* ============================ TOPBAR ============================ */

.topbar {
  background: var(--navy-900);
  color: #c7d5ea;
  font-size: 13px;
  position: relative;
  z-index: 60;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 16px;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--orange-light); }
.topbar__item a { color: #c7d5ea; transition: color .2s; }
.topbar__item a:hover { color: var(--yellow); }
.topbar__phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--yellow) !important; font-weight: 700; font-size: 14px;
}
.topbar__phone svg { color: var(--yellow); width: 16px; height: 16px; }

/* ============================ HEADER ============================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo__img { height: 52px; width: auto; max-width: 220px; object-fit: contain; flex: 0 0 auto; }
.logo--footer .logo__img { height: 52px; }
.logo__icon {
  width: 48px; height: 48px; flex: 0 0 auto;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: #fff;
  box-shadow: 0 6px 16px rgba(var(--orange-rgb), 0.35);
}
.logo__icon svg { width: 28px; height: 28px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__text strong {
  font-size: 19px; font-weight: 900; color: var(--navy-800);
  letter-spacing: -0.3px;
}
.logo__text small { font-size: 11.5px; color: var(--text-soft); font-weight: 500; }
.logo--footer .logo__icon { background: var(--orange); }
.logo--footer .logo__text strong { color: #fff; }
.logo--footer .logo__text small { color: #9db4d6; }

.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  display: block;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  border-radius: 9px;
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--orange); background: var(--orange-tint); }
.main-nav a.active { color: var(--orange); background: var(--orange-tint); }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--navy-800);
  border-radius: 3px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================ BUTTONS ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--primary {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: #fff;
  box-shadow: 0 8px 20px rgba(var(--orange-rgb), 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(var(--orange-rgb), 0.45);
}
.btn--whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover { transform: translateY(-2px); background: #20bd5a; }
.btn--outline {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}
.btn--outline:hover { background: var(--orange); color: #fff; }
.btn--light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow); }
.btn--light:hover { transform: translateY(-2px); background: var(--yellow); }
.btn--call { padding: 12px 18px; }
.btn--call span { display: inline; }

/* ============================ HERO ============================ */

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 55%, #1a4b8c 100%);
  color: #fff;
  overflow: hidden;
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
  padding: 72px 0 130px;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(255, 210, 63, 0.16), transparent 42%),
    radial-gradient(circle at 12% 85%, rgba(43, 107, 212, 0.35), transparent 46%);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 75%);
}
.hero__inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 210, 63, 0.14);
  border: 1px solid rgba(255, 210, 63, 0.4);
  color: var(--yellow);
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  letter-spacing: .3px;
}
.hero__badge-icon { width: 15px; height: 15px; }
.hero__title {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero__title .accent { color: var(--yellow); }
.hero__subtitle {
  font-size: 17px;
  color: #b9cdea;
  max-width: 540px;
  margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__points { display: flex; flex-direction: column; gap: 9px; }
.hero__points li {
  display: flex; align-items: center; gap: 10px;
  color: #cfe0f6; font-size: 14.5px; font-weight: 500;
}
.hero__points svg { width: 17px; height: 17px; color: var(--yellow); }
.hero__visual { position: relative; display: grid; place-items: center; }
.hero__visual--glow {
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(closest-side, rgba(255, 210, 63, 0.22), transparent 70%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero__visual--img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.hero__visual--img img { width: 100%; height: auto; display: block; filter: none; }
.hero__visual--card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--navy-800);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 14px 34px rgba(9, 25, 51, 0.35);
  backdrop-filter: blur(6px);
}
.hero__visual--card svg { width: 22px; height: 22px; color: var(--orange); }
.hero__visual--card strong { display: block; font-size: 15px; font-weight: 800; line-height: 1.2; white-space: nowrap; }
.hero__visual--card span { display: block; font-size: 12px; color: var(--text-soft); white-space: nowrap; }
.hero__visual--card.card-top { top: 12px; left: -10px; }
.hero__visual--card.card-bottom { bottom: 26px; right: -8px; }

/* ============================ SLIDER ============================ */

.slider {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
}
.slider__track { position: absolute; inset: 0; }
.slider__slide {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 55%, #1a4b8c 100%);
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transition: opacity .9s ease;
}
.slider__slide.is-active {
  opacity: 1;
  z-index: 1;
  animation: sliderZoom 8s ease-out forwards;
}
@keyframes sliderZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.slider__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9, 25, 51, 0.82) 20%, rgba(9, 25, 51, 0.35) 70%, rgba(9, 25, 51, 0.55) 100%);
}
.slider__inner { position: relative; z-index: 2; width: 100%; padding: 110px 0 130px; }
.slider__content { max-width: 720px; }
.slider__title {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.slider__subtitle { font-size: 17px; color: #b9cdea; max-width: 540px; margin-bottom: 30px; }
.slider__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.slider__nav:hover { background: var(--orange); border-color: var(--orange); }
.slider__nav svg { width: 20px; height: 20px; }
.slider__nav--prev { left: 22px; }
.slider__nav--next { right: 22px; }
.slider__nav--prev svg { transform: rotate(180deg); }
.slider__dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; gap: 9px;
}
.slider__dot {
  width: 10px; height: 10px; border-radius: 100px; border: 0; padding: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all .25s;
}
.slider__dot.is-active { background: var(--orange); width: 28px; }

/* ============================ STATS ============================ */

.stats {
  background: linear-gradient(135deg, var(--orange), var(--orange-600));
  color: #fff;
  position: relative;
  margin-top: -46px;
  z-index: 5;
  box-shadow: var(--shadow-lg);
  border-radius: 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 26px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.25); }
.stat:last-child { border-right: 0; }
.stat__value {
  display: block;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.9); }

/* ============================ SECTIONS ============================ */

.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head__kicker {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head__kicker::before,
.section-head__kicker::after { content: ""; }
.section-head__title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  color: var(--navy-800);
  letter-spacing: -0.6px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-head__desc { color: var(--text-soft); font-size: 16px; }
.section-head--left { text-align: left; margin: 0 0 34px; }

/* ============================ SERVICES ============================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 24px 26px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(var(--orange-rgb), 0.4);
}
.service-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--orange);
  background: var(--orange-tint);
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 17.5px; font-weight: 800; color: var(--navy-800); margin-bottom: 9px; }
.service-card p { font-size: 14px; color: var(--text-soft); flex: 1; }
.service-card__link {
  margin-top: 16px;
  display: inline-flex; align-items: center;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
}
.service-card__link svg { width: 18px; height: 18px; transition: transform .2s; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ============================ FEATURES ============================ */

.features-section { background: var(--bg-alt); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform .22s, box-shadow .22s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: #fff;
}
.feature__icon svg { width: 27px; height: 27px; }
.feature__icon--orange { background: linear-gradient(135deg, var(--orange-light), var(--orange)); }
.feature__icon--blue { background: linear-gradient(135deg, #4a90e2, var(--blue)); }
.feature__icon--green { background: linear-gradient(135deg, #46d383, #1f9d55); }
.feature__icon--red { background: linear-gradient(135deg, #f0646a, var(--red)); }
.feature__icon--purple { background: linear-gradient(135deg, #9b6cf5, #6c3ef2); }
.feature__icon--yellow { background: linear-gradient(135deg, #ffd95c, #f5a623); }
.feature h3 { font-size: 17px; font-weight: 800; color: var(--navy-800); margin-bottom: 9px; }
.feature p { font-size: 14px; color: var(--text-soft); }

/* ============================ ABOUT ============================ */

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-section__visual {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.about-card {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.about-card--alt { background: linear-gradient(160deg, var(--orange-light), var(--orange)); transform: translateY(26px); }
.about-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.16);
  color: var(--yellow);
  margin-bottom: 16px;
}
.about-card--alt .about-card__icon { color: #fff; }
.about-card__icon svg { width: 27px; height: 27px; }
.about-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.about-card p { font-size: 14px; color: rgba(255,255,255,0.85); }
.about-section__content p { color: var(--text-soft); margin-bottom: 16px; }
.about-section__note {
  background: #fff7ec;
  border-left: 4px solid var(--orange);
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
  font-weight: 500;
}
.about-section__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.about-section__phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; color: var(--navy-800); font-size: 18px;
}
.about-section__phone svg { width: 19px; height: 19px; color: var(--orange); }

/* ============================ REGIONS ============================ */

.regions-section { background: var(--bg-alt); }
.regions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.region-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform .22s, box-shadow .22s;
}
.region-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.region-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.region-card__head svg { width: 20px; height: 20px; color: var(--orange); }
.region-card__head h3 { font-size: 17px; font-weight: 800; color: var(--navy-800); flex: 1; }
.region-card__count {
  font-size: 11.5px; font-weight: 700;
  background: var(--orange-tint); color: var(--orange);
  padding: 4px 10px; border-radius: 100px;
}
.region-card__links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; }
.region-card__links a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; color: var(--text-soft);
  padding: 5px 0;
  transition: color .18s;
}
.region-card__links a::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); flex: 0 0 auto;
}
.region-card__links a:hover { color: var(--orange); }
.region-card__more {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px;
  font-size: 14px; font-weight: 700; color: var(--orange);
}
.region-card__more svg { width: 16px; height: 16px; transition: transform .2s; }
.region-card__more:hover svg { transform: translateX(4px); }

/* ============================ FAQ ============================ */

.faq-container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow); border-color: rgba(var(--orange-rgb),0.35); }
.faq-item__question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none; border: 0;
  font-size: 15.5px; font-weight: 700; color: var(--navy-800);
  text-align: left;
}
.faq-item__toggle { flex: 0 0 auto; }
.faq-item__toggle svg {
  width: 20px; height: 20px; color: var(--orange);
  transition: transform .25s;
}
.faq-item.open .faq-item__toggle svg { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item__answer p { padding: 0 22px 18px; color: var(--text-soft); font-size: 14.5px; }

/* ============================ TESTIMONIALS ============================ */

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial__stars { display: flex; gap: 3px; margin-bottom: 14px; color: #f5b301; }
.testimonial__stars svg { width: 17px; height: 17px; }
.testimonial blockquote { font-size: 14.5px; color: var(--text); flex: 1; line-height: 1.7; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: #fff; font-weight: 800; font-size: 18px;
}
.testimonial__author strong { display: block; font-size: 14.5px; color: var(--navy-800); }
.testimonial__author span { font-size: 12.5px; color: var(--muted); }

/* ============================ BLOG ============================ */

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(var(--orange-rgb), 0.4); }
.blog-card__thumb {
  display: block; height: 190px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
}
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.blog-card:hover .blog-card__thumb img { transform: scale(1.06); }
.blog-card__placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.35); }
.blog-card__placeholder svg { width: 52px; height: 52px; }
.blog-card__body { display: flex; flex-direction: column; padding: 22px; flex: 1; }
.blog-card__body h3 { font-size: 16.5px; font-weight: 800; color: var(--navy-800); margin-bottom: 9px; line-height: 1.35; }
.blog-card__body p { font-size: 13.5px; color: var(--text-soft); flex: 1; margin-bottom: 14px; }
.blog-card__more { display: inline-flex; align-items: center; gap: 7px; color: var(--orange); font-weight: 700; font-size: 13.5px; }
.blog-card__more svg { width: 16px; height: 16px; transition: transform .2s; }
.blog-card:hover .blog-card__more svg { transform: translateX(4px); }

/* ============================ BLOG DETAIL ============================ */

.blog-detail { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.blog-detail__cover { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 24px; }
.blog-detail__aside { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 26px; height: fit-content; position: sticky; top: 100px; }
.blog-detail__aside h3 { font-size: 16px; font-weight: 800; color: var(--navy-800); margin-bottom: 16px; }

/* ============================ GALLERY ============================ */

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  position: relative; display: block;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.06); }

/* ============================ LIGHTBOX ============================ */

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8, 20, 40, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
}
.lightbox__close:hover { background: var(--orange); }

/* ============================ CTA BAND ============================ */

.cta-band {
  background: linear-gradient(135deg, var(--orange), var(--orange-600));
  padding: 54px 0;
  color: #fff;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band__text h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 900; margin-bottom: 8px; }
.cta-band__text p { color: rgba(255,255,255,0.9); font-size: 15px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================ FOOTER ============================ */

.site-footer { background: var(--navy-900); color: #a7b8d3; font-size: 14px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
  gap: 40px;
  padding: 64px 0 44px;
}
.site-footer__about p { margin: 18px 0; line-height: 1.7; }
.site-footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: .3px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { transition: color .18s, padding-left .18s; }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 13px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--orange-light); flex: 0 0 auto; margin-top: 3px; }
.footer-contact a:hover { color: var(--yellow); }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  color: #c7d5ea;
  transition: background .2s, color .2s, transform .2s;
}
.social-links a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.social-links svg { width: 18px; height: 18px; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.site-footer__districts { font-size: 12.5px; color: #6f82a3; }

/* ============================ FLOAT BUTTONS ============================ */

.whatsapp-float, .call-float {
  position: fixed;
  right: 22px;
  z-index: 40;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .2s;
}
.whatsapp-float { bottom: 92px; background: var(--green); }
.call-float { bottom: 24px; background: linear-gradient(135deg, var(--orange-light), var(--orange)); animation: pulse 2.4s infinite; }
.whatsapp-float:hover, .call-float:hover { transform: scale(1.08); }
.whatsapp-float svg, .call-float svg { width: 28px; height: 28px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--orange-rgb),0.5); }
  70% { box-shadow: 0 0 0 16px rgba(var(--orange-rgb),0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--orange-rgb),0); }
}

/* ============================ PAGE HERO / INNER ============================ */

.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 56px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 10%, rgba(255,210,63,0.15), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(43,107,212,0.3), transparent 45%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -0.6px; margin-bottom: 12px; }
.page-hero p { color: #b9cdea; font-size: 16px; max-width: 620px; margin: 0 auto; }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  justify-content: center;
  font-size: 13px;
  color: #8fa8cc;
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb__current { color: var(--yellow); font-weight: 600; }

.content-wrap { max-width: 860px; }
.content-wrap h2 { color: var(--navy-800); font-size: 26px; margin: 26px 0 14px; font-weight: 800; }
.content-wrap p { color: var(--text-soft); margin-bottom: 14px; }

/* ============================ ABOUT VALUES ============================ */

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.value {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  transition: transform .22s, box-shadow .22s;
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value svg { width: 34px; height: 34px; color: var(--orange); margin-bottom: 12px; }
.value h3 { font-size: 15.5px; font-weight: 800; color: var(--navy-800); margin-bottom: 8px; }
.value p { font-size: 13px; color: var(--text-soft); }

/* ============================ SERVICE LIST PAGE ============================ */

.services-list { display: flex; flex-direction: column; gap: 22px; margin-top: 40px; }
.service-row {
  display: flex;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  align-items: flex-start;
  transition: transform .22s, box-shadow .22s;
}
.service-row:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.service-row__icon {
  width: 62px; height: 62px; flex: 0 0 auto;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--orange-tint); color: var(--orange);
}
.service-row__icon svg { width: 32px; height: 32px; }
.service-row__body h2 { font-size: 19px; font-weight: 800; color: var(--navy-800); margin-bottom: 8px; }
.service-row__body p { color: var(--text-soft); font-size: 14.5px; margin-bottom: 12px; }
.service-row__cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange); font-weight: 700; font-size: 14px;
}
.service-row__cta svg { width: 17px; height: 17px; }

/* ============================ SERVICE DETAIL ============================ */

.service-detail {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
}
.service-detail__main { max-width: 720px; }
.service-detail__icon {
  width: 74px; height: 74px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(var(--orange-rgb),0.35);
}
.service-detail__icon svg { width: 38px; height: 38px; }
.service-detail__main h2 { font-size: 28px; color: var(--navy-800); font-weight: 900; margin-bottom: 16px; }
.service-detail__main p { color: var(--text-soft); font-size: 15.5px; margin-bottom: 16px; }
.service-detail__main .btn { margin-top: 10px; }
.service-detail__aside {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 26px;
  height: fit-content;
  position: sticky; top: 100px;
}
.service-detail__aside h3 { font-size: 16px; font-weight: 800; color: var(--navy-800); margin-bottom: 16px; }
.service-side-list { display: flex; flex-direction: column; gap: 6px; }
.service-side-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  transition: color .18s, border-color .18s, background .18s;
}
.service-side-list a svg { width: 18px; height: 18px; color: var(--orange); }
.service-side-list a:hover, .service-side-list a.active { color: var(--orange); border-color: rgba(var(--orange-rgb),0.4); }

/* ============================ CONTACT ============================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .22s, box-shadow .22s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card__icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 14px;
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card__icon--orange { background: linear-gradient(135deg, var(--orange-light), var(--orange)); }
.contact-card__icon--green { background: linear-gradient(135deg, #46d383, #1f9d55); }
.contact-card__icon--blue { background: linear-gradient(135deg, #4a90e2, var(--blue)); }
.contact-card__icon--red { background: linear-gradient(135deg, #f0646a, var(--red)); }
.contact-card h3 { font-size: 15px; font-weight: 800; color: var(--navy-800); margin-bottom: 6px; }
.contact-card__big { display: block; font-size: 16px; font-weight: 800; color: var(--orange); margin-bottom: 4px; }
.contact-card p { font-size: 13px; color: var(--text-soft); }
.contact-card__addr { margin-top: 4px; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { font-size: 22px; font-weight: 900; color: var(--navy-800); margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-soft); font-size: 14px; margin-bottom: 22px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13.5px; font-weight: 700; color: var(--navy-800); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--orange-rgb),0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.alert { border-radius: 12px; padding: 14px 18px; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.alert--success { background: #e9f9ef; color: #15803d; border: 1px solid #b7e6c8; }
.alert--error { background: #fdecec; color: #c0392b; border: 1px solid #f5c1c1; }
.alert--error p { margin: 2px 0; }

.map-section iframe { border-radius: var(--radius-lg); width: 100%; min-height: 380px; border: 0; box-shadow: var(--shadow); }

/* ============================ REGIONS PAGE ============================ */

.city-index {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 48px;
}
.city-index__item {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 18px;
  font-weight: 700; font-size: 14px; color: var(--navy-800);
  transition: background .18s, color .18s, transform .18s;
}
.city-index__item svg { width: 15px; height: 15px; color: var(--orange); }
.city-index__item:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.city-index__item:hover svg { color: #fff; }

.city-block { margin-bottom: 44px; scroll-margin-top: 100px; }
.city-block__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
}
.city-block__head svg { width: 22px; height: 22px; color: var(--orange); }
.city-block__head h2 { font-size: 22px; font-weight: 900; color: var(--navy-800); flex: 1; }
.city-block__head span { font-size: 12.5px; font-weight: 700; color: var(--orange); background: var(--orange-tint); padding: 5px 12px; border-radius: 100px; }
.city-block__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.city-block__grid a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 11px 14px;
  font-size: 13.5px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 8px;
  transition: color .18s, border-color .18s, background .18s, transform .18s;
}
.city-block__grid a::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex: 0 0 auto;
}
.city-block__grid a:hover { color: var(--orange); border-color: rgba(var(--orange-rgb),0.4); transform: translateY(-2px); }

/* ============================ REGION DETAIL ============================ */

.region-intro__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.region-intro__content h2 { font-size: 26px; font-weight: 900; color: var(--navy-800); margin-bottom: 16px; }
.region-intro__content p { color: var(--text-soft); font-size: 15px; margin-bottom: 14px; }
.region-intro__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.region-intro__visual img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 17px;
  font-size: 13.5px; font-weight: 600; color: var(--text);
  transition: all .18s;
}
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.chip:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }
.chip:hover::before { background: #fff; }

.region-closing {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
  text-align: center;
}
.region-closing__text { font-size: 18px; font-weight: 600; max-width: 800px; margin: 0 auto; line-height: 1.7; }

/* ============================ RESPONSIVE ============================ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin: 0 auto 30px; }
  .hero__actions, .hero__points { justify-content: center; align-items: center; }
  .slider__content { text-align: center; margin: 0 auto; }
  .slider__content .hero__actions, .slider__content .hero__points { justify-content: center; }
  .slider__subtitle { margin: 0 auto 30px; }
  .about-section__inner { grid-template-columns: 1fr; }
  .about-card--alt { transform: none; }
  .about-section__cta { justify-content: center; }
  .region-intro__grid { grid-template-columns: 1fr; }
  .blog-detail { grid-template-columns: 1fr; }
  .city-block__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 70;
    padding: 90px 24px 30px;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { padding: 14px 16px; font-size: 16px; }
  .nav-toggle { display: flex; }
  .topbar__left .topbar__item--hours { display: none; }
  .btn--call span { display: none; }
  .btn--call { width: 48px; padding: 0; }
  .btn--whatsapp span { display: none; }
  .btn--whatsapp { width: 48px; padding: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(255,255,255,0.25); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .city-block__grid { grid-template-columns: repeat(2, 1fr); }
  .site-header__inner { min-height: 66px; }
  .slider__nav { display: none; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .services-grid, .features-grid, .regions-grid, .contact-info, .about-section__visual { grid-template-columns: 1fr; }
  .blog-grid, .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding: 52px 0 84px; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual--card.card-top { left: 8px; }
  .hero__visual--card.card-bottom { right: 8px; }
  .slider { height: 72vh; min-height: 460px; }
  .slider__inner { padding: 84px 0 110px; }
  .stats { margin-top: -34px; }
  .stat__value { font-size: 30px; }
  .logo__text small { display: none; }
  .city-block__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band__inner { justify-content: center; text-align: center; }
  .about-section__cta { flex-direction: column; }
  .about-section__phone { font-size: 16px; }
}
