:root {
  --color-ink: #18232f;
  --color-charcoal: #1e2d3d;
  --color-slate: #546779;
  --color-muted: #708398;
  --color-ash: #f4f7fb;
  --color-white: #ffffff;
  --color-cta: #d84d22;
  --color-cta-dark: #b83a14;
  --color-safety: #f7bf12;
  --color-success: #1c8653;
  --color-navy: #0f1b28;
  --color-navy-soft: #24384d;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 14px 30px rgba(20, 34, 49, 0.12);
  --shadow-card: 0 18px 32px rgba(17, 31, 45, 0.1);
  --shadow-strong: 0 24px 48px rgba(10, 20, 31, 0.24);
  --transition-base: 300ms ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--color-ink);
  background: linear-gradient(170deg, #f8fbff 0%, #eef3f8 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

.client-preview-mode a {
  cursor: not-allowed !important;
}

.skip-link {
  position: fixed;
  top: -48px;
  left: 14px;
  z-index: 1200;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  color: #fff;
  background: #0f1b28;
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: 14px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(247, 191, 18, 0.9);
  outline-offset: 2px;
}

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

.section-padding {
  padding: 96px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #775600;
  background: rgba(247, 191, 18, 0.16);
}

.section-title {
  margin-bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: var(--color-charcoal);
}

.section-subtitle {
  margin: 0;
  color: var(--color-slate);
  font-size: 1.03rem;
}

.bg-panel {
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 41, 56, 0.08);
}

.text-safety {
  color: var(--color-safety);
}

.site-header {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(24, 40, 57, 0.1);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 12px 24px rgba(20, 34, 49, 0.14);
}

.navbar-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  color: var(--color-charcoal);
}

.navbar-brand span {
  color: var(--color-cta);
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 800;
  color: #314659;
  margin: 0 6px;
  transition: color var(--transition-base);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-cta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--color-cta);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--color-charcoal);
}

.header-phone i {
  color: var(--color-cta);
}

.btn-main,
.btn-outline-call {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
}

.btn-main {
  padding: 12px 24px;
  color: var(--color-white);
  border: 0;
  background: linear-gradient(120deg, #ea5d30 0%, #cb3d15 100%);
  box-shadow: 0 14px 24px rgba(203, 61, 21, 0.28);
}

.btn-main:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(203, 61, 21, 0.34);
}

.btn-outline-call {
  padding: 11px 24px;
  border: 2px solid rgba(30, 45, 61, 0.3);
  color: var(--color-charcoal);
  background: transparent;
}

.btn-outline-call:hover {
  color: var(--color-charcoal);
  border-color: rgba(30, 45, 61, 0.72);
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  color: var(--color-white);
  overflow: hidden;
  background: radial-gradient(circle at 20% 10%, #1f3042 0%, #0f1b28 50%, #0a131c 100%);
}

.hero-split {
  min-height: 100vh;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(247, 191, 18, 0.3) 0 4px, transparent 4px),
    radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.18) 0 3px, transparent 3px);
  background-size: 120px 120px, 170px 170px;
  opacity: 0.32;
  pointer-events: none;
}

.hero-top-content {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 4;
  pointer-events: auto;
  padding-top: 104px;
  padding-bottom: 26px;
}

.hero-spotlight {
  pointer-events: auto;
  max-width: 740px;
  padding: 26px 28px;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(21, 34, 49, 0.78) 0%, rgba(17, 29, 42, 0.62) 100%);
  border: 1px solid rgba(245, 248, 251, 0.24);
  box-shadow: 0 26px 44px rgba(8, 17, 27, 0.34);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 900;
  color: #402f00;
  background: linear-gradient(100deg, #ffe07a 0%, #f7bf12 100%);
  box-shadow: 0 8px 18px rgba(247, 191, 18, 0.36);
}

.hero-spotlight h1 {
  margin-bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5.6vw, 4.5rem);
  line-height: 0.92;
}

.hero-spotlight p {
  margin-bottom: 20px;
  max-width: 680px;
  color: rgba(247, 251, 255, 0.92);
  font-size: 1.06rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  color: #f6fbff;
  background: rgba(255, 255, 255, 0.14);
}

.hero-ctas {
  margin-bottom: 14px;
}

.hero-mini-note {
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: rgba(245, 250, 255, 0.85);
}

.hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stat-strip div {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-strip strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  color: #ffe07a;
}

.hero-stat-strip span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-hotbox {
  pointer-events: auto;
  border-radius: 20px;
  padding: 24px;
  color: var(--color-charcoal);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 251, 0.96) 100%);
  border: 2px solid rgba(247, 191, 18, 0.88);
  box-shadow: var(--shadow-strong);
}

.hero-hotbox .label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9d3f1f;
  background: rgba(216, 77, 34, 0.14);
}

.hero-hotbox h3 {
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.1rem;
  line-height: 0.92;
}

.hero-hotbox p {
  margin-bottom: 14px;
  color: #44576b;
}

.hero-hotbox ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: #32475a;
}

.hero-hotbox li {
  margin-bottom: 6px;
  font-weight: 700;
}

.hero-split-grid,
.hero-split-grid .row,
.hero-split-grid .col-lg-6 {
  min-height: 100vh;
}

.split-card {
  display: block;
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  height: 100%;
  min-height: 290px;
}

.hero-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 138px 60px 92px;
  border-radius: 0;
}

.split-card.left {
  background-image: url('../img/hero-1.jpg');
  background-size: cover;
  background-position: center center;
}

.split-card.right {
  background-image: url('../img/hero-2.jpg');
  background-size: cover;
  background-position: center center;
}

.split-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 31, 0.22) 0%, rgba(9, 18, 27, 0.84) 70%);
  transition: opacity var(--transition-base);
}

.split-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(247, 191, 18, 0.12) 0%, transparent 45%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.split-card .content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
  transition: transform var(--transition-base);
}

.panel-badge {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
}

.split-card h1,
.split-card h2,
.split-card h3 {
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.9;
}

.split-card p {
  margin-bottom: 18px;
  color: rgba(248, 251, 255, 0.92);
}

.split-card .chip {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.16);
}

.split-card .link-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #ffe07a;
}

.split-card:hover::before {
  opacity: 0.75;
}

.split-card:hover::after {
  opacity: 1;
}

.split-card:hover .content {
  transform: translateY(-6px);
}

.hero-service-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 7px;
}

.hero-service-list li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-size: 0.97rem;
  color: rgba(246, 251, 255, 0.94);
  text-align: left;
}

.hero-service-list i {
  color: #ffe07a;
}

.hero-column-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-column-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.14);
}

.parallax-section {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.parallax-about {
  background-image: url('../img/about-bg.jpg');
}

.parallax-about .parallax-overlay {
  background: linear-gradient(125deg, rgba(10, 20, 31, 0.9) 0%, rgba(28, 47, 66, 0.82) 62%, rgba(12, 23, 35, 0.88) 100%);
}

.about-home-lead {
  margin-bottom: 16px;
  max-width: 760px;
  color: rgba(243, 250, 255, 0.93);
  font-size: 1.08rem;
}

.about-home-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-home-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  color: #f1f7ff;
  background: rgba(255, 255, 255, 0.12);
}

.about-home-card {
  height: 100%;
  border-radius: 18px;
  padding: 24px;
  color: #153047;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 34px rgba(10, 20, 31, 0.2);
}

.about-home-card h3 {
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.3rem;
  line-height: 0.9;
}

.about-home-card p {
  margin-bottom: 14px;
  color: #3f576b;
}

.about-home-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.about-home-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #2f4559;
  font-weight: 700;
}

.about-home-list i {
  color: var(--color-success);
}

.about-home-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-home-stats div {
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(150deg, #edf4fb 0%, #e4eef9 100%);
  border: 1px solid rgba(36, 56, 77, 0.13);
}

.about-home-stats strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  color: #16344a;
}

.about-home-stats span {
  display: block;
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #39546c;
}

.parallax-service-area {
  background-image: url('../img/service-area-bg.jpg');
}

.parallax-service-area .parallax-overlay {
  background: linear-gradient(120deg, rgba(248, 251, 255, 0.93) 0%, rgba(240, 246, 252, 0.9) 100%);
}

.service-card,
.mini-card,
.area-point,
.testimonial-card {
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.service-card {
  height: 100%;
  border-radius: 16px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid rgba(24, 40, 57, 0.08);
  box-shadow: var(--shadow-card);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.45rem;
  color: var(--color-white);
  background: linear-gradient(145deg, #243d56 0%, #3f5f7b 100%);
}

.service-card h4 {
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  color: var(--color-charcoal);
}

.service-card p {
  margin: 0;
  color: #57697a;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 77, 34, 0.24);
  box-shadow: 0 22px 34px rgba(20, 34, 49, 0.16);
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.why-list li {
  position: relative;
  padding: 14px 16px 14px 49px;
  border-radius: 12px;
  border: 1px solid rgba(24, 40, 57, 0.09);
  background: rgba(255, 255, 255, 0.95);
  color: #2f4458;
  font-weight: 700;
}

.why-list li::before {
  content: '\f26e';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 15px;
  top: 12px;
  font-size: 1.16rem;
  color: var(--color-success);
}

.stats-panel {
  border-radius: 18px;
  padding: 30px;
  color: #e8f1fa;
  background: linear-gradient(150deg, #1b2a3a 0%, #334d67 100%);
  box-shadow: var(--shadow-strong);
}

.stats-panel h3 {
  margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  line-height: 0.92;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-box {
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-box strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  color: #ffe07a;
}

.stats-panel-extra {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-panel-extra ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.stats-panel-extra li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(234, 243, 252, 0.95);
  font-weight: 700;
}

.stats-panel-extra li i {
  color: #ffe07a;
}

.discount-banner {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 42px;
  color: #fff;
  background: linear-gradient(125deg, #b7330f 0%, #db4b20 44%, #f08a2d 100%);
  box-shadow: 0 30px 48px rgba(165, 55, 16, 0.34);
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.discount-banner::before {
  content: '';
  position: absolute;
  inset: -88px auto auto -88px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 20px solid rgba(255, 255, 255, 0.14);
}

.discount-pulse {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.discount-mega {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.discount-mega strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 8vw, 5.6rem);
  line-height: 0.76;
}

.discount-mega span {
  display: block;
  margin-top: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.discount-mega small {
  margin-top: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0.93;
}

.discount-banner h3 {
  margin-bottom: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  line-height: 0.88;
}

.discount-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.discount-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.18);
}

.area-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.area-point {
  border-radius: 14px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(24, 40, 57, 0.09);
  box-shadow: 0 10px 18px rgba(20, 34, 49, 0.08);
}

.area-point h5 {
  margin-bottom: 6px;
  font-weight: 800;
  color: var(--color-charcoal);
}

.area-point p {
  margin: 0;
  color: #586a7d;
}

.area-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(20, 34, 49, 0.14);
  border-color: rgba(216, 77, 34, 0.18);
}

.map-search-card {
  border-radius: var(--radius-lg);
  padding: 34px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(24, 40, 57, 0.08);
}

.map-search-controls .form-control,
.map-search-controls .btn {
  height: 52px;
}

.map-search-controls .form-control {
  border-radius: 999px;
  border-color: rgba(36, 58, 79, 0.24);
  padding-left: 18px;
  font-weight: 700;
}

.map-search-controls .form-control:focus {
  border-color: #35587c;
  box-shadow: 0 0 0 0.2rem rgba(53, 88, 124, 0.15);
}

.quick-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.foster-chip {
  border: 0;
  border-radius: 999px;
  padding: 7px 14px;
  background: #edf2f8;
  color: #2f475f;
  font-size: 0.86rem;
  font-weight: 800;
  transition: all var(--transition-base);
}

.foster-chip:hover,
.foster-chip.active {
  color: #1d3044;
  background: #dce8f5;
  transform: translateY(-1px);
}

.map-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf4fb;
  color: #2d4a66;
  font-weight: 700;
  font-size: 0.88rem;
}

.map-frame-wrap {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(24, 40, 57, 0.16);
  box-shadow: 0 14px 26px rgba(20, 34, 49, 0.12);
}

.map-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
}

.map-side-panel {
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(170deg, #f5f9fd 0%, #ecf2f9 100%);
  border: 1px solid rgba(24, 40, 57, 0.1);
  box-shadow: 0 12px 22px rgba(20, 34, 49, 0.1);
}

.map-side-panel h4 {
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  line-height: 0.9;
  color: var(--color-charcoal);
}

.map-side-panel p {
  color: #4f6478;
}

.map-note {
  margin-bottom: 14px;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(24, 40, 57, 0.12);
}

.map-note strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: #2d4359;
}

.map-help-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.map-help-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: #41576c;
  font-size: 0.92rem;
  font-weight: 700;
}

.map-help-list li span {
  color: var(--color-success);
}

.map-last-query {
  margin-left: 26px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(216, 77, 34, 0.11);
  color: #7c3319;
  font-weight: 800;
  text-transform: none;
}

.testimonial-card {
  height: 100%;
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  border: 1px solid rgba(24, 40, 57, 0.09);
  box-shadow: 0 11px 20px rgba(20, 34, 49, 0.09);
}

.star-rating {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 12px;
  color: #f7bf12;
  font-size: 0.94rem;
}

.testimonial-card p {
  margin-bottom: 16px;
  color: #42576b;
}

.testimonial-author {
  font-weight: 900;
  color: var(--color-charcoal);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 32px rgba(20, 34, 49, 0.16);
}

.testimonials-swiper {
  padding-bottom: 34px;
}

.testimonials-pagination {
  text-align: center;
  margin-top: 10px;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #8ea3b8;
  opacity: 0.45;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: #d84d22;
  opacity: 1;
}

.projects-swiper-wrap {
  position: relative;
}

.projects-swiper {
  padding-bottom: 30px;
}

.project-slide {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(24, 40, 57, 0.1);
  box-shadow: 0 12px 22px rgba(20, 34, 49, 0.11);
}

.project-lightbox {
  display: block;
}

.project-slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.project-slide:hover img {
  transform: scale(1.03);
}

.project-caption {
  padding: 14px 16px 16px;
}

.project-caption h4 {
  margin-bottom: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.65rem;
  line-height: 0.95;
  color: var(--color-charcoal);
}

.project-caption p {
  margin: 0;
  color: #53687c;
}

.projects-swiper-prev,
.projects-swiper-next {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(24, 40, 57, 0.82);
  transition: all var(--transition-base);
}

.projects-swiper-prev {
  left: -10px;
}

.projects-swiper-next {
  right: -10px;
}

.projects-swiper-prev:hover,
.projects-swiper-next:hover {
  background: rgba(216, 77, 34, 0.92);
}

.projects-pagination {
  text-align: center;
  margin-top: 8px;
}

.projects-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #8ea3b8;
  opacity: 0.45;
}

.projects-pagination .swiper-pagination-bullet-active {
  background: #d84d22;
  opacity: 1;
}

.contact-block {
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(24, 40, 57, 0.08);
}

.contact-aside {
  height: 100%;
  padding: 36px;
  color: #f4f8fd;
  background: linear-gradient(155deg, #172736 0%, #344f69 100%);
}

.contact-aside h3 {
  margin-bottom: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.45rem;
  line-height: 0.9;
}

.contact-points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-points i {
  color: #ffe07a;
}

.contact-aside-cta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-aside-cta p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #e8f3ff;
  font-weight: 700;
}

.contact-aside-cta i {
  color: #ffe07a;
}

.quote-form-wrap {
  height: 100%;
  padding: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.form-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(24, 40, 57, 0.2);
}

.form-head h4 {
  margin-bottom: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  color: var(--color-charcoal);
}

.form-head p {
  margin: 0;
  color: #5a6d7f;
}

.quote-form-wrap .form-label {
  margin-bottom: 5px;
  font-weight: 800;
  color: #30465b;
}

.quote-form-wrap .form-control,
.quote-form-wrap .form-select {
  min-height: 49px;
  border-radius: 11px;
  border-color: rgba(24, 40, 57, 0.22);
  padding: 10px 13px;
  font-weight: 700;
  color: #1f3448;
}

.quote-form-wrap textarea.form-control {
  min-height: 128px;
  resize: vertical;
}

.quote-form-wrap .form-control::placeholder {
  color: #90a0b1;
  font-weight: 600;
}

.quote-form-wrap .form-control:focus,
.quote-form-wrap .form-select:focus {
  border-color: #35587c;
  box-shadow: 0 0 0 0.22rem rgba(53, 88, 124, 0.15);
}

.quote-form-wrap .is-invalid {
  border-color: #d63f27;
}

.form-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #39536f;
  background: #eef5fd;
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-main {
  background: #162330;
  color: rgba(235, 241, 248, 0.92);
  padding: 60px 0 22px;
}

.footer-main h5,
.footer-main h6 {
  margin-bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
}

.footer-main a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-main a:hover {
  color: #ffe07a;
}

.footer-main li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.footer-main li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-main li i {
  color: #ffe07a;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(235, 241, 248, 0.18);
  font-size: 0.9rem;
}

.tap-chat {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1060;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  color: #1f384f;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(30, 51, 70, 0.16);
  box-shadow: 0 14px 24px rgba(20, 34, 49, 0.22);
  transition: all var(--transition-base);
  animation: tapChatFloat 2.6s ease-in-out infinite;
}

.tap-chat::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 2px solid rgba(33, 163, 101, 0.38);
  animation: tapChatRing 2.6s ease-out infinite;
  pointer-events: none;
}

.tap-chat-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #21a365 0%, #0f7d49 100%);
  animation: tapChatIconPulse 2.6s ease-in-out infinite;
}

.tap-chat-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.tap-chat-text strong {
  font-size: 0.86rem;
}

.tap-chat-text small {
  font-size: 0.7rem;
  color: #5a6f84;
}

.tap-chat:hover {
  color: #1f384f;
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(20, 34, 49, 0.27);
  animation-play-state: paused;
}

.tap-chat:hover::before,
.tap-chat:hover .tap-chat-icon {
  animation-play-state: paused;
}

@keyframes tapChatFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes tapChatRing {
  0% {
    opacity: 0.62;
    transform: scale(0.98);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes tapChatIconPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(33, 163, 101, 0.36);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(33, 163, 101, 0);
  }
}

.go-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1060;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #d84d22 0%, #ba3d17 100%);
  box-shadow: 0 14px 26px rgba(186, 61, 23, 0.33);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base), box-shadow var(--transition-base);
}

.go-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-top:hover {
  box-shadow: 0 18px 30px rgba(186, 61, 23, 0.4);
}

.subhero {
  position: relative;
  padding: 176px 0 88px;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 23, 35, 0.85) 0%, rgba(24, 38, 56, 0.74) 100%);
}

.subhero .container {
  position: relative;
}

.subhero h1 {
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.45rem, 4.2vw, 3.7rem);
  line-height: 0.92;
}

.subhero p {
  max-width: 720px;
  margin: 0;
  color: rgba(247, 252, 255, 0.92);
}

.subhero-about {
  background-image: url('https://images.unsplash.com/photo-1591799265444-d66432b91588?auto=format&fit=crop&w=1800&q=80');
}

.subhero-services {
  background-image: url('https://images.unsplash.com/photo-1517089596392-fb9a9033e05b?auto=format&fit=crop&w=1800&q=80');
}

.subhero-discounts {
  background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1800&q=80');
}

.subhero-contact {
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80');
}

.mini-card {
  height: 100%;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(24, 40, 57, 0.09);
  box-shadow: 0 11px 19px rgba(20, 34, 49, 0.08);
}

.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(20, 34, 49, 0.15);
  border-color: rgba(216, 77, 34, 0.18);
}

.offer-box {
  border-radius: 18px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(128deg, #cf4c1f 0%, #f07a27 100%);
  box-shadow: var(--shadow-soft);
}

.offer-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  line-height: 0.9;
}

.table-pricing {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-ready {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1399.98px) {
  .hero-panel {
    padding: 126px 50px 84px;
  }
}

@media (max-width: 1199.98px) {
  .section-padding {
    padding: 88px 0;
  }

  .hero-panel {
    padding: 116px 40px 76px;
  }

  .discount-banner {
    padding: 34px;
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 76px 0;
  }

  .hero-split {
    min-height: auto;
  }

  .hero-split-grid,
  .hero-split-grid .row,
  .hero-split-grid .col-lg-6 {
    min-height: auto;
  }

  .hero-panel {
    min-height: 62vh;
    padding: 102px 26px 54px;
    align-items: center;
  }

  .header-phone {
    margin: 7px 0;
  }

  .area-points,
  .stats-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .map-search-card {
    padding: 26px;
  }

  .projects-swiper-prev,
  .projects-swiper-next {
    display: none;
  }

  .parallax-section {
    background-attachment: scroll;
  }

  .about-home-stats {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .contact-aside,
  .quote-form-wrap {
    padding: 26px;
  }

  .tap-chat {
    left: 12px;
    bottom: 12px;
  }

  .go-top {
    right: 12px;
    bottom: 12px;
  }

  .subhero {
    padding: 150px 0 74px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 66px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-panel {
    min-height: 58vh;
    padding: 96px 20px 40px;
  }

  .split-card h1,
  .split-card h2,
  .split-card h3 {
    font-size: clamp(1.75rem, 7.8vw, 2.3rem);
  }

  .discount-banner {
    padding: 26px;
  }

  .discount-mega strong {
    font-size: 3.8rem;
  }

  .discount-mega span {
    font-size: 1.7rem;
  }

  .map-search-card {
    padding: 20px;
  }

  .map-frame-wrap iframe {
    min-height: 300px;
  }

  .testimonials-swiper {
    padding-bottom: 30px;
  }

  .tap-chat {
    padding: 6px;
  }

  .tap-chat-text {
    display: none;
  }

  .go-top {
    width: 42px;
    height: 42px;
  }

  .footer-main {
    padding-top: 48px;
  }

  .subhero {
    padding: 136px 0 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .tap-chat,
  .tap-chat::before,
  .tap-chat-icon {
    animation: none !important;
  }
}
