:root {
  --orange: #ff5e14;
  --orange-dark: #e54e0b;
  --orange-soft: #fff1e8;
  --navy: #0c2340;
  --navy-2: #0e2c4d;
  --navy-3: #123251;
  --navy-mid: #163a5c;
  --navy-deep: #071525;
  --navy-footer: #08192c;
  --heading: #0c2340;
  --text: #5b6b7c;
  --muted: #8896a6;
  --light: #f5f7fa;
  --white: #ffffff;
  --border: #e7edf3;
  --shadow: 0 12px 40px rgba(12, 35, 64, 0.08);
  --radius: 4px;
  --container: 1200px;
  --header-h: 92px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: 0.25s ease; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Rajdhani", sans-serif;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section { padding: 100px 0; }
.section-sm { padding: 80px 0; }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy-2); color: #c9d4e0; }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }

.sec-head { text-align: center; margin-bottom: 50px; }
.sec-head.left { text-align: left; }
.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}
.sec-head h2 {
  font-size: 42px;
  margin-bottom: 16px;
}
.sec-head p {
  max-width: 640px;
  margin: 0 auto;
}
.sec-head.left p { margin: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: 0.25s ease;
  line-height: 1;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--orange); color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--navy); color: #fff; }

/* Topbar */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 16px;
}
.topbar-left { display: flex; gap: 28px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-left i { color: var(--orange); }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-right a, .search-open {
  color: var(--navy);
  font-size: 13px;
}
.topbar-right a:hover, .search-open:hover { color: var(--orange); }

/* Header */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(12, 35, 64, 0.06);
  overflow: visible;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.brand-text strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  letter-spacing: 0.4px;
  color: var(--navy);
  line-height: 1;
}
.brand-text small {
  display: block;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.nav { display: none; align-items: center; gap: 2px; }
.nav.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 12px 0;
  z-index: 20;
}
@media (min-width: 1101px) {
  .nav { display: flex; position: static; flex-direction: row; padding: 0; box-shadow: none; background: transparent; }
  .nav.open { position: static; flex-direction: row; }
}
.nav a {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 9px;
  white-space: nowrap;
}
.nav a:hover,
.nav a.active { color: var(--orange); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.talk-box {
  display: flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  min-height: 64px;
  padding: 8px 18px 8px 0;
}
.talk-box .icon {
  width: 54px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--orange);
  margin-right: 14px;
  color: #fff;
  font-size: 20px;
}
.talk-box:hover { background: #08192c; }
.talk-box:hover .icon { background: var(--orange-dark); }
.talk-box span {
  display: block;
  font-size: 11px;
  opacity: 0.75;
  line-height: 1.2;
}
.talk-box strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
button.menu-toggle {
  width: 48px;
  height: 48px;
  background: var(--orange) !important;
  color: #fff !important;
  font-size: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
}
@media (min-width: 1101px) {
  button.menu-toggle { display: none !important; }
}

/* Hero */
.home-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy) center/cover no-repeat;
}
.home-hero .slides { position: absolute; inset: 0; }
.home-hero .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.home-hero .slide.active { opacity: 1; }
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 22, 40, 0.82) 0%, rgba(8, 22, 40, 0.45) 55%, rgba(8, 22, 40, 0.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 90px 0 140px;
}
.hero-content .eyebrow { color: var(--orange); }
.hero-content h1 {
  color: #fff;
  font-size: clamp(28px, 5.2vw, 64px);
  line-height: 1.08;
  margin: 8px 0 22px;
}
.hero-content p {
  color: #dce4ee;
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: #fff;
  clip-path: polygon(0 100%, 0 55%, 100% 0, 100% 100%);
  z-index: 3;
}
.hero-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.hero-dots button.active { background: var(--orange); }

.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy) center/cover no-repeat;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 40, 0.68);
}
.page-hero-inner { position: relative; z-index: 2; padding: 90px 0 120px; }
.page-hero h1 { color: #fff; font-size: 56px; margin-bottom: 10px; }
.page-hero h1::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--orange);
  margin: 14px auto 0;
}
.breadcrumb { color: #d5deea; font-size: 14px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }
.page-hero .hero-shape { height: 80px; clip-path: polygon(0 100%, 0 70%, 100% 15%, 100% 100%); }

/* About collage */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; min-height: 480px; }
.about-media .img-main {
  width: 72%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.about-media .img-side {
  position: absolute;
  right: 0;
  top: 90px;
  width: 46%;
  height: 230px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.years-box {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 210px;
  background: var(--orange);
  color: #fff;
  padding: 28px 24px;
}
.years-box .num {
  font-family: "Rajdhani", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}
.years-box .num span { font-size: 28px; }
.years-box p {
  color: #fff;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 6px;
}
.feature-list { margin-top: 28px; display: grid; gap: 18px; }
.feature-item { display: grid; grid-template-columns: 50px 1fr; gap: 14px; }
.feature-item i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 22px;
  background: var(--orange-soft);
  border-radius: 4px;
}
.feature-item h4 { font-size: 18px; margin-bottom: 4px; }
.feature-item p { font-size: 14.5px; }

.check-list { margin: 18px 0 28px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
}
.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--orange);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Stats */
.stats {
  background: var(--navy-2);
  color: #fff;
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat .num {
  font-family: "Rajdhani", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat p { color: #c5d0dc; margin-top: 6px; }

/* Vehicle types */
.types { background: var(--navy-2); }
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.type-card {
  background: #fff;
  padding: 32px 24px 28px;
  text-align: center;
  border-radius: 4px;
  transition: 0.3s ease;
}
.type-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.18); }
.type-card .car-icon { height: 86px; margin-bottom: 16px; display: grid; place-items: center; }
.type-card .car-icon svg { transform: scale(1.35); }
.type-card h3 { font-size: 22px; margin-bottom: 10px; }
.type-card p { font-size: 14.5px; margin-bottom: 16px; }
.type-card a { color: var(--orange); font-family: "Rajdhani", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; }
.type-card a:hover { color: var(--navy); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.services-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 4px;
  transition: 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card img { width: 100%; height: 210px; object-fit: cover; }
.service-body {
  padding: 22px 24px 26px;
  position: relative;
}
.service-body h3 { font-size: 22px; margin-bottom: 6px; }
.service-body h3 a:hover { color: var(--orange); }
.service-body .price { color: var(--muted); font-size: 14px; }
.service-arrow {
  position: absolute;
  right: 22px;
  top: 26px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--orange);
}
.service-card:hover .service-arrow { background: var(--orange); color: #fff; border-color: var(--orange); }

/* CTA bars */
.cta-orange {
  background: var(--orange);
  color: #fff;
  padding: 28px 0;
}
.cta-orange-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-orange h3 { color: #fff; font-size: 28px; }
.cta-orange p { color: #ffe8d9; }

.split-cta {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 520px;
}
.split-copy {
  background: var(--navy-2);
  color: #c9d4e0;
  padding: 90px 70px;
  position: relative;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}
.split-copy h2 { color: #fff; font-size: 40px; margin: 8px 0 18px; max-width: 460px; }
.split-copy .feature-item i { background: rgba(255,94,20,0.15); }
.split-copy .feature-item h4 { color: #fff; }
.split-copy .feature-item p { color: #b7c4d2; }
.split-photo {
  background: var(--navy) center/cover no-repeat;
  position: relative;
}
.split-photo .play {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  left: 18%;
  bottom: 18%;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card { position: relative; overflow: hidden; border-radius: 4px; min-height: 340px; }
.project-card img { width: 100%; height: 340px; object-fit: cover; transition: 0.45s ease; }
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: auto 20px 20px 20px;
  background: rgba(12, 35, 64, 0.92);
  color: #fff;
  padding: 22px;
  transform: translateY(12px);
  transition: 0.3s ease;
}
.project-card:hover .project-overlay { transform: translateY(0); background: var(--orange); }
.project-overlay span { color: var(--orange); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.project-card:hover .project-overlay span { color: #ffe4d2; }
.project-overlay h3 { color: #fff; font-size: 22px; margin: 6px 0 8px; }
.project-overlay p { color: #d5deea; font-size: 14px; }
.project-card:hover .project-overlay p { color: #fff; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item button {
  width: 100%;
  text-align: left;
  padding: 18px 36px 18px 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}
.faq-item button::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--orange);
  font-size: 14px;
}
.faq-item.active button::after { content: "\f068"; }
.faq-item .faq-body {
  display: none;
  padding: 0 10px 16px 0;
  color: var(--text);
}
.faq-item.active .faq-body { display: block; }
.help-card {
  background: var(--navy-2);
  color: #fff;
  padding: 40px 36px;
  border-radius: 4px;
  margin-top: 28px;
}
.help-card h3 { color: #fff; margin-bottom: 10px; }
.help-card p { color: #c5d0dc; margin-bottom: 18px; }

/* Testimonials */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 32px 28px;
  border-radius: 4px;
}
.stars { color: #f5b301; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { margin-bottom: 22px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.reviewer h4 { font-size: 16px; margin-bottom: 2px; }
.reviewer span { font-size: 13px; color: var(--muted); }

/* Partners */
.partners { padding: 50px 0 30px; text-align: center; }
.partners h3 {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.badge-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.72;
}
.stamp {
  width: 120px;
  height: 120px;
}

/* Newsletter */
.newsletter {
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 140px;
}
.envelope {
  width: 140px;
  height: 100px;
  background: #f3c445;
  position: relative;
  border-radius: 4px;
  transform: rotate(-8deg);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.envelope::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 42px solid #e2b12e;
}
.envelope .badge-num {
  position: absolute;
  left: -10px;
  top: 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.newsletter h3 { color: #fff; font-size: 28px; margin-bottom: 6px; }
.newsletter p { color: #b9c6d4; }
.news-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-start; }
.news-form .form-success { flex: 1 0 100%; }
.news-form input {
  width: 280px;
  height: 52px;
  padding: 0 16px;
  border: 0;
  outline: none;
}

/* Footer */
.footer {
  background: var(--navy-footer);
  color: #9aabc0;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer .brand-text strong { color: #fff; }
.footer p { font-size: 14.5px; margin: 16px 0; }
.footer h4 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer a:hover { color: var(--orange); }
.footer-grid ul li { margin: 8px 0; }
.footer-grid ul li a { display: inline-flex; gap: 8px; align-items: center; }
.footer-grid ul li a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 3px;
}
.socials a:hover { background: var(--orange); border-color: var(--orange); }
.contact-mini li {
  display: flex;
  gap: 12px;
  margin: 14px 0;
  align-items: flex-start;
}
.contact-mini i { color: var(--orange); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: #9aabc0; }
.footer-links a:hover { color: var(--orange); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card { text-align: center; }
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  margin-bottom: 16px;
}
.team-card h3 { font-size: 20px; }
.team-card span { color: var(--muted); font-size: 14px; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.price-card {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 40px 32px;
  text-align: center;
  border-radius: 4px;
  border-top: 4px solid transparent;
  position: relative;
}
.price-card.featured {
  border-top-color: var(--orange);
  transform: translateY(-12px);
}
.price-card .tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  text-transform: uppercase;
}
.price-card h3 { font-size: 24px; margin-bottom: 8px; }
.price-card .amount {
  font-family: "Rajdhani", sans-serif;
  font-size: 52px;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
  margin: 12px 0;
}
.price-card .amount small { font-size: 16px; color: var(--muted); }
.price-card ul { text-align: left; margin: 22px 0 28px; }
.price-card ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px dashed var(--border);
}
.price-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--orange);
  position: absolute;
  left: 0;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  box-shadow: var(--shadow);
  background: #fff;
  margin-top: -40px;
  position: relative;
  z-index: 4;
}
.contact-aside {
  background: var(--navy-2);
  color: #c9d4e0;
  padding: 48px 36px;
}
.contact-aside h3 { color: #fff; margin-bottom: 28px; }
.contact-aside li {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}
.contact-aside i {
  color: var(--orange);
  font-size: 18px;
  margin-top: 4px;
}
.contact-aside h4 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.contact-aside p { overflow-wrap: anywhere; }
.hero-content p { overflow-wrap: break-word; }
.contact-form { padding: 48px 42px; }
.contact-form h3 { margin-bottom: 8px; }
.form-note { font-size: 13px; color: var(--muted); margin-bottom: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-group label:has(input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  line-height: 1.45;
}
.form-group input[type="checkbox"] { width: auto; margin-top: 3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--light);
  padding: 13px 14px;
  outline: none;
  color: var(--navy);
  transition: 0.2s ease;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: #fff; }
.form-group .error {
  display: none;
  color: #d7263d;
  font-size: 12px;
  margin-top: 4px;
}
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: #d7263d; }
.form-group.invalid .error { display: block; }
.form-success {
  display: none;
  background: #e9f8ef;
  border: 1px solid #b7e4c7;
  color: #1b7a3d;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-weight: 500;
}
.form-success.show { display: block; }

.legal {
  max-width: 860px;
  margin: 0 auto;
}
.legal h2 { font-size: 28px; margin: 28px 0 12px; }
.legal h3 { font-size: 20px; margin: 22px 0 8px; }
.legal p, .legal li { margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 20px; margin-bottom: 16px; }
.legal ul li, .legal ol li { list-style: disc; }
.legal ol li { list-style: decimal; }

.subscribe-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 48px 42px;
}

.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 37, 0.92);
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 20px;
}
.search-modal.open { display: grid; }
.search-box { width: min(640px, 100%); }
.search-box input {
  width: 100%;
  height: 64px;
  padding: 0 20px;
  font-size: 20px;
  border: 0;
  outline: none;
}
.search-results { background: #fff; margin-top: 8px; }
.search-results a {
  display: block;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
}
.search-results a:hover { background: var(--orange-soft); color: var(--orange); }

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}
.back-top.show { opacity: 1; pointer-events: auto; }

.quote-box {
  background: var(--light);
  border-left: 4px solid var(--orange);
  padding: 22px 24px;
  margin: 24px 0;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.icon-box { text-align: center; padding: 10px; }
.icon-box i { font-size: 32px; color: var(--orange); margin-bottom: 12px; }
.icon-box h4 { margin-bottom: 8px; }

@media (max-width: 1100px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 12px 0;
    z-index: 20;
  }
  .header { position: sticky; }
  .header-inner { position: relative; }
  .header-cta { display: flex; }
  .talk-box { display: none; }
  .hero-content h1 { font-size: 42px; }
  .about-grid, .faq-grid, .split-cta, .contact-wrap { grid-template-columns: 1fr; }
  .split-copy { clip-path: none; padding: 60px 32px; }
  .split-photo { min-height: 380px; }
  .types-grid, .services-grid, .services-grid.cols-4, .projects-grid, .reviews-grid, .pricing-grid, .team-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; text-align: left; padding: 30px 0; }
  .price-card.featured { transform: none; }
}

@media (max-width: 700px) {
  .topbar-left span:first-child { display: none; }
  .topbar-right a { display: none; }
  .hero-content p { font-size: 15px; }
  .page-hero h1, .sec-head h2 { font-size: 32px; }
  .hero-content { max-width: 100%; padding: 70px 0 120px; }
  .hero-content h1 { font-size: 24px; line-height: 1.22; padding-right: 4px; }
  .home-hero { min-height: 560px; }
  .about-media { min-height: 360px; }
  .about-media .img-main { width: 100%; height: 260px; }
  .about-media .img-side { width: 48%; height: 150px; top: auto; bottom: 80px; }
  .types-grid, .services-grid, .projects-grid, .reviews-grid, .pricing-grid, .team-grid, .stats-grid, .form-row, .icon-row, .footer-grid {
    grid-template-columns: 1fr;
  }
  .news-form { flex-direction: column; }
  .news-form input { width: 100%; }
  .contact-form { padding: 32px 22px; }
  .hero-dots { display: none; }
  .section { padding: 70px 0; }
}
