:root {
  --c1: #082c4b;
  --c1-rgb: 8, 44, 75;
  --c2: #ee212b;
  --c2-rgb: 238, 33, 43;
  --c3: #102147;
  --c3-rgb: 16, 33, 71;
  --c4: #fc6a20;
  --muted: #6b7a8c;
  --text: #5b6775;
  --heading: #102147;
  --light: #f4f7fb;
  --border: #e8eef5;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(16, 33, 71, 0.08);
  --shadow-lg: 0 18px 50px rgba(16, 33, 71, 0.12);
  --radius: 6px;
  --container: 1200px;
  --header-h: 88px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Roboto", sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c1); text-decoration: none; transition: .25s; }
a:hover { color: var(--c2); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5,h6 {
  font-family: "Poppins", sans-serif;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
}

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.container-wide { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 80px 0; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--c1); color: #c9d4e0; }
.bg-navy { background: var(--c3); }
.text-white { color: #fff; }
.text-red { color: var(--c2); }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: .25s ease;
  text-transform: capitalize;
}
.btn-red { background: var(--c2); color: #fff; }
.btn-red:hover { background: #d11b24; color: #fff; }
.btn-navy { background: var(--c1); color: #fff; }
.btn-navy:hover { background: var(--c3); color: #fff; }
.btn-white { background: #fff; color: var(--c1); }
.btn-white:hover { background: var(--c2); color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover { background: #fff; color: var(--c1); }

/* Topbar */
.topbar {
  background: var(--c1);
  color: #d7e2ee;
  font-size: 13px;
  position: relative;
  z-index: 40;
  display: flex;
  align-items: stretch;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  gap: 16px;
  flex: 1;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar-left span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-left i { color: var(--c2); }
.topbar-right { display: flex; align-items: center; gap: 0; }
.topbar-social { display: flex; align-items: center; gap: 14px; margin-right: 22px; }
.topbar-social a { color: #fff; font-size: 13px; }
.topbar-social a:hover { color: var(--c2); }
.btn-appoint {
  background: var(--c2);
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-height: 46px;
}
.btn-appoint:hover { background: #d11b24; }

/* Header */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 18px rgba(8, 44, 75, .06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c1);
  flex-shrink: 0;
}
.logo svg, .logo img { width: 46px; height: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--c1);
  letter-spacing: -.4px;
}
.logo-text small {
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--c2);
  font-weight: 600;
  margin-top: 4px;
}

.nav-wrap { display: flex; align-items: center; gap: 8px; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--c3);
  padding: 9px 13px;
  border-radius: 50px;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--c2);
  color: #fff;
}
.header-tools { display: flex; align-items: center; gap: 8px; margin-left: 10px; }
.icon-btn {
  width: 42px; height: 42px;
  border: none; background: transparent;
  color: var(--c1); cursor: pointer;
  font-size: 16px; border-radius: 50%;
}
.icon-btn:hover { color: var(--c2); background: var(--light); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: #08111c center/cover no-repeat;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,17,28,.72) 0%, rgba(8,17,28,.35) 55%, rgba(8,17,28,.2) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 90px 0; }
.hero-kicker {
  font-family: "Caveat", cursive;
  font-size: 34px;
  color: #fff;
  font-weight: 600;
}
.hero h1 {
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 6px 0 28px;
  line-height: 1.08;
}
.hero h1 span { color: var(--c2); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Page banner */
.page-banner {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #08111c center/cover no-repeat;
  color: #fff;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(8, 17, 28, .62);
}
.page-banner-inner { position: relative; z-index: 2; padding: 70px 0; }
.page-banner h1 { color: #fff; font-size: 48px; margin-bottom: 8px; }
.breadcrumb { color: #e9eef4; font-size: 14px; }
.breadcrumb a { color: #fff; }
.breadcrumb span { color: #c5d0dc; }

/* Section titles */
.sec-kicker {
  font-family: "Caveat", cursive;
  font-size: 28px;
  color: var(--c2);
  font-weight: 600;
}
.sec-title {
  font-size: 40px;
  margin: 0 0 18px;
}
.sec-title span { color: var(--c2); }
.sec-desc { max-width: 560px; }
.sec-head { margin-bottom: 50px; }
.sec-head.center .sec-desc { margin: 0 auto; }
.sec-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end;
}

/* About / intro split */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 360px;
  gap: 36px;
  align-items: start;
}
.feature-list { margin: 22px 0 28px; }
.feature-list li {
  position: relative;
  padding: 7px 0 7px 28px;
  color: var(--text);
}
.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0; top: 8px;
  color: var(--c2);
  font-size: 13px;
}
.progress-wrap { margin-top: 10px; }
.progress-item { margin-bottom: 16px; }
.progress-item .row-lab {
  display: flex; justify-content: space-between;
  font-family: "Poppins", sans-serif;
  font-weight: 600; color: var(--heading); font-size: 14px;
  margin-bottom: 8px;
}
.bar {
  height: 6px; background: #edf1f6; border-radius: 20px; overflow: hidden;
}
.bar span {
  display: block; height: 100%; background: var(--c2); width: 0;
  transition: width 1.4s ease;
}

.about-photo { position: relative; }
.about-photo img {
  width: 100%; height: 460px; object-fit: cover; border-radius: 4px;
}

/* Quote card */
.quote-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 42px 28px 28px;
  position: relative;
  margin-top: 18px;
}
.quote-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}
.quote-badge {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--c2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  position: absolute;
  right: 22px; top: -28px;
  box-shadow: 0 10px 20px rgba(238, 33, 43, .3);
}
.form-control {
  width: 100%;
  background: #f3f6fa;
  border: 1px solid transparent;
  padding: 13px 16px;
  margin-bottom: 12px;
  border-radius: 4px;
  color: var(--c1);
  outline: none;
  font-size: 14px;
}
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23082c4b' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
form[data-validate] .btn + .btn { margin-left: 8px; }
.form-control.error { border-color: var(--c2); background: #fff5f5; }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-error { color: var(--c2); font-size: 12px; margin: -8px 0 10px; display: none; }
.form-error.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.success-msg {
  display: none;
  background: #e9f8ef;
  color: #1c7c45;
  border: 1px solid #bde5cc;
  padding: 14px 16px;
  border-radius: 6px;
  margin-bottom: 14px;
  font-weight: 500;
}
.success-msg.show { display: block; }

/* Funfacts */
.funfacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
  text-align: center;
}
.funfact .fi {
  width: 86px; height: 86px;
  margin: 0 auto 14px;
  border: 2px dashed #cfd8e3;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c1);
  font-size: 30px;
  position: relative;
}
.funfact .fi i { font-size: 30px; color: var(--c1); }
.funfact .fi::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  background: var(--c2);
  border-radius: 50%;
  right: -2px; bottom: 6px;
}
.funfact h3 { font-size: 36px; margin-bottom: 4px; }
.funfact p { color: var(--muted); font-size: 15px; }

/* Benefits */
.benefits { background: var(--c1); color: #c9d4e0; overflow: hidden; }
.benefits .sec-title, .benefits h3 { color: #fff; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card:hover { transform: translateY(-6px); }
.benefit-card { transition: .3s; }
.benefit-card img { width: 100%; height: 220px; object-fit: cover; }
.benefit-body { padding: 26px 24px 30px; position: relative; }
.benefit-body h3 { font-size: 22px; margin-bottom: 10px; }
.benefit-no {
  position: absolute;
  right: 18px; top: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #eef2f7;
  line-height: 1;
}

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}
.video-box { position: relative; }
.video-box img { width: 100%; height: 360px; object-fit: cover; border-radius: 8px; }
.play-btn {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  background: var(--c2);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 0 12px rgba(238,33,43,.25);
}
.play-btn:hover { color: #fff; transform: translate(-50%, -50%) scale(1.06); }
.years-badge {
  position: absolute;
  right: 18px; bottom: 18px;
  background: var(--c2);
  color: #fff;
  width: 118px; height: 118px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 10px 25px rgba(238,33,43,.35);
}
.years-badge strong { font-size: 34px; line-height: 1; color: #fff; }
.years-badge span { font-size: 12px; color: #fff; padding: 0 10px; }

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
}
.project-card img { width: 100%; height: 250px; object-fit: cover; transition: .45s; }
.project-card:hover img { transform: scale(1.08); }
.project-card figcaption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(8,44,75,.85));
  color: #fff;
  padding: 28px 18px 16px;
  transform: translateY(12px);
  opacity: 0;
  transition: .3s;
}
.project-card:hover figcaption { opacity: 1; transform: none; }
.project-card h4 { color: #fff; font-size: 18px; }

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.testi-card p { margin-bottom: 22px; }
.testi-user { display: flex; align-items: center; gap: 12px; }
.testi-user img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.testi-user h5 { font-size: 16px; margin-bottom: 2px; }
.testi-user span { font-size: 13px; color: var(--muted); }
.quote-icon {
  position: absolute; right: 22px; bottom: 22px;
  color: #f0d6d8; font-size: 28px;
}

/* Counters red bar */
.counter-bar {
  background: var(--c2);
  color: #fff;
  padding: 42px 0;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.counter-grid h3 { color: #fff; font-size: 40px; }
.counter-grid p { color: #ffd7d9; font-size: 15px; }

/* Insights / news */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s;
}
.news-card:hover { transform: translateY(-6px); }
.news-card img { width: 100%; height: 220px; object-fit: cover; }
.news-body { padding: 22px 22px 26px; }
.news-meta { font-size: 13px; color: var(--muted); margin-bottom: 10px; display: flex; gap: 14px; }
.news-meta i { color: var(--c2); margin-right: 4px; }
.news-body h3 { font-size: 20px; margin-bottom: 8px; }
.news-body h3 a { color: var(--heading); }
.news-body h3 a:hover { color: var(--c2); }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-radius: 6px;
  overflow: hidden;
  margin-top: -70px;
  position: relative;
  z-index: 3;
}
.service-item {
  padding: 42px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.service-item:last-child { border-right: none; }
.service-item .icon {
  width: 78px; height: 78px;
  margin: 0 auto 16px;
  border: 1px dashed #c5d0dc;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c1);
  font-size: 28px;
}
.service-item h4 { font-size: 18px; margin-bottom: 8px; }
.service-item p { font-size: 14px; }
.service-item:hover { background: #fafbfd; }
.service-item:hover .icon { background: var(--c1); color: #fff; border-color: var(--c1); }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 6px;
  overflow: hidden;
}
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card .body { padding: 24px; }
.service-card h3 { font-size: 22px; margin-bottom: 8px; }

/* CTA */
.cta-band {
  position: relative;
  background: var(--c1) center/cover no-repeat;
  text-align: center;
  padding: 90px 0;
  color: #fff;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(16, 33, 71, .72);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: 42px; margin-bottom: 22px; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card { text-align: center; }
.team-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; border-radius: 4px; margin-bottom: 14px; }
.team-card h4 { font-size: 18px; }
.team-card span { color: var(--c2); font-size: 14px; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}
.price-card.featured {
  background: var(--c1);
  color: #c9d4e0;
  transform: translateY(-12px);
}
.price-card.featured h3, .price-card.featured .amount { color: #fff; }
.price-card h3 { font-size: 22px; margin-bottom: 8px; }
.amount { font-size: 48px; font-weight: 800; color: var(--c1); font-family: "Poppins", sans-serif; }
.amount small { font-size: 16px; font-weight: 500; color: var(--muted); }
.price-card ul { margin: 24px 0; text-align: left; }
.price-card ul li { padding: 8px 0 8px 26px; position: relative; }
.price-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--c2);
  position: absolute; left: 0;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}
.info-card {
  background: #f4f6f8;
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  border-radius: 4px;
}
.info-card .ic {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--c1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.info-card:nth-child(even) .ic { background: var(--c2); }
.info-card h4 { font-size: 16px; margin-bottom: 2px; }
.info-card p { font-size: 14px; margin: 0; }

/* Legal */
.legal-content h2 { font-size: 26px; margin: 28px 0 12px; }
.legal-content h3 { font-size: 20px; margin: 22px 0 10px; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 16px 22px; list-style: disc; }
.legal-content li { margin-bottom: 8px; }

/* Sidebar */
.layout-2 {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}
.side-nav a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: #f4f6f8;
  margin-bottom: 8px;
  color: var(--heading);
  font-weight: 500;
  border-left: 3px solid transparent;
}
.side-nav a.active, .side-nav a:hover {
  background: #eef2f6;
  border-left-color: var(--c1);
  color: var(--c1);
}
.help-box {
  background: var(--c1);
  color: #fff;
  text-align: center;
  padding: 36px 20px;
  margin: 18px 0;
  border-radius: 4px;
}
.help-box i { font-size: 42px; margin-bottom: 10px; display: block; }
.help-box h4 { color: #fff; }
.help-box p { color: #c9d4e0; margin: 6px 0 0; }

.meta-list { font-size: 14px; }
.meta-list li { margin-bottom: 12px; }
.meta-list strong { display: block; color: var(--heading); font-size: 13px; }
.share-row a {
  width: 36px; height: 36px; display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--c1); color: #fff; border-radius: 50%; margin-right: 6px;
}
.share-row a:hover { background: var(--c2); color: #fff; }

.gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.gallery-3 img { width: 100%; height: 160px; object-fit: cover; border-radius: 4px; }

.timeline { margin: 10px 0 24px; }
.timeline li { padding: 0 0 18px 22px; border-left: 2px solid #edf1f6; position: relative; }
.timeline li::before {
  content: "";
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c2);
  position: absolute; left: -6px; top: 6px;
}
.timeline h5 { font-size: 16px; }

blockquote.pull {
  background: #f6f8fb;
  border-left: 4px solid var(--c1);
  padding: 22px 24px;
  margin: 22px 0;
  font-style: italic;
}

/* Footer */
.site-footer {
  background: var(--c3) url("../images/house-outline.svg") right 8% bottom 10% / 280px no-repeat;
  color: #b7c4d3;
  padding: 80px 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1.2fr .9fr;
  gap: 36px;
  padding-bottom: 40px;
}
.site-footer h4 { color: #fff; font-size: 20px; margin-bottom: 18px; }
.site-footer p { margin-bottom: 16px; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.socials a:hover { background: var(--c2); color: #fff; }
.foot-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.foot-links a { color: #b7c4d3; font-size: 14px; }
.foot-links a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--c2); margin-right: 8px; }
.foot-links a:hover { color: #fff; }
.mini-post { display: flex; gap: 12px; margin-bottom: 16px; }
.mini-post img { width: 70px; height: 58px; object-fit: cover; border-radius: 4px; }
.mini-post h5 { color: #fff; font-size: 14px; font-weight: 500; }
.mini-post span { font-size: 12px; color: #8ea0b4; }
.legal-links { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 14px; }
.legal-links a { color: #8ea0b4; font-size: 13px; }
.legal-links a:hover { color: var(--c2); }
.copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
  color: #8ea0b4;
}

/* Search modal */
.search-modal {
  position: fixed; inset: 0;
  background: rgba(8, 17, 28, .86);
  display: none;
  align-items: center; justify-content: center;
  z-index: 80;
  padding: 20px;
}
.search-modal.open { display: flex; }
.search-box { width: min(640px, 100%); }
.search-box input {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  border: none;
  border-radius: 6px;
}
.search-results { margin-top: 14px; background: #fff; border-radius: 6px; overflow: hidden; }
.search-results a { display: block; padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--heading); }
.search-results a:hover { background: var(--light); color: var(--c2); }

/* Video modal */
.video-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.82);
  display: none; align-items: center; justify-content: center;
  z-index: 90; padding: 20px;
}
.video-modal.open { display: flex; }
.video-modal video { width: min(900px, 100%); border-radius: 8px; background: #000; }

/* Watermark house */
.with-house {
  background-image: url("../images/house-outline.svg");
  background-repeat: no-repeat;
  background-position: left 2% bottom 0;
  background-size: 280px;
}

/* Pattern overlay on dark */
.pattern-dark {
  background-image:
    radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* Subscribe page card */
.simple-form {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
}

/* Team details */
.team-hero-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 36px;
}
.team-hero-row img { width: 100%; height: 240px; object-fit: cover; object-position: top; border-radius: 4px; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

/* Project details */
.project-hero {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: start;
}
.project-hero img { width: 100%; height: 420px; object-fit: cover; border-radius: 6px; }

/* Responsive */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-grid .quote-card { grid-column: 1 / -1; max-width: 420px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
  .team-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 48px; }
  .layout-2, .contact-wrap, .project-hero { grid-template-columns: 1fr; }
  .btn-appoint { margin-right: 0; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .header-inner { position: relative; }
}
@media (max-width: 900px) {
  .benefit-grid, .project-grid, .testi-grid, .news-grid, .service-cards, .pricing-grid, .funfacts, .counter-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid, .form-row, .exp-grid, .team-hero-row, .sec-split { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}
@media (max-width: 640px) {
  .topbar-left { display: none; }
  .hero { min-height: 520px; }
  .hero h1 { font-size: 34px; }
  .sec-title, .cta-band h2, .page-banner h1 { font-size: 30px; }
  .benefit-grid, .project-grid, .testi-grid, .news-grid, .service-cards, .pricing-grid, .funfacts, .counter-grid, .service-grid, .team-grid, .footer-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured { transform: none; }
  .gallery-3 { grid-template-columns: 1fr; }
}
