/*
Theme Name: Unique Motor Driving School
Theme URI: https://example.com/
Author: Unique Motor Driving School
Description: WordPress theme converted from the Unique Motor Driving School static website.
Version: 1.0.0
*/

:root {
  --navy: #07172f;
  --navy2: #0c2344;
  --red: #e51b23;
  --red2: #ff3038;
  --white: #fff;
  --soft: #f5f7fb;
  --ink: #101827;
  --muted: #657084;
  --line: #e6eaf0;
  --shadow: 0 20px 55px rgba(7, 23, 47, 0.12);
  --radius: 24px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1160px, 92%);
  margin: auto;
}
.topbar {
  background: var(--navy);
  color: #dce6f5;
  font-size: 13px;
}
.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar strong {
  color: #fff;
}
.topbar a {
  color: #fff;
}
.topbar-hours {
  color: #dce6f5;
  white-space: nowrap;
}
.contact-hours {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7, 23, 47, 0.08);
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 48px;
  height: 48px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  color: var(--red);
  position: relative;
}
.logo-mark:before,
.logo-mark:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 5px;
  background: var(--red);
  top: 18px;
}
.logo-mark:before {
  left: -17px;
}
.logo-mark:after {
  right: -17px;
}
.brand-text b {
  display: block;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--navy);
  line-height: 1;
}
.brand-text span {
  font-size: 10px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 1.4px;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: #27344b;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li {
  position: relative;
}
.nav-menu a {
  display: block;
}
.nav-menu > li.menu-item-has-children > a::after {
  content: " +";
  display: inline-block;
  margin-left: 4px;
  color: var(--red);
  font-weight: 900;
}
.nav-menu > li.menu-item-has-children.submenu-open > a::after {
  content: " -";
}
.nav-menu .sub-menu {
  position: absolute;
  top: 30px;
  left: -18px;
  z-index: 60;
  display: none !important;
  width: 245px;
  padding: 10px;
  gap: 2px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.nav-menu > li.menu-item-has-children.submenu-open > .sub-menu {
  display: grid !important;
}
.nav-menu .sub-menu a {
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
}
.nav-menu .sub-menu a:hover {
  background: #fff0f1;
}
.navlinks a:hover {
  color: var(--red);
}
.nav-services {
  position: relative;
}
.nav-services summary {
  cursor: pointer;
  list-style: none;
}
.nav-services summary::-webkit-details-marker {
  display: none;
}
.nav-services summary:after {
  content: " +";
  color: var(--red);
}
.nav-services[open] summary:after {
  content: " -";
}
.nav-services-menu {
  position: absolute;
  top: 30px;
  left: -18px;
  z-index: 60;
  display: grid;
  width: 245px;
  padding: 10px;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.nav-services-menu a {
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
}
.nav-services-menu a:hover {
  background: #fff0f1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  transition: 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 25px rgba(229, 27, 35, 0.22);
}
.btn-red:hover {
  transform: translateY(-2px);
  background: #c9141b;
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover {
  transform: translateY(-2px);
}
.btn-outline {
  border-color: #d8dee8;
  color: var(--navy);
  background: #fff;
}
.btn-whatsapp {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.42);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #1da851 !important;
  border-color: #1da851 !important;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(7, 23, 47, 0.97) 0%,
      rgba(7, 23, 47, 0.86) 42%,
      rgba(7, 23, 47, 0.48) 100%
    ),
    url("bgcharminar.png") center center/cover no-repeat;
  color: #fff;
}
.hero:before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 90px solid rgba(229, 27, 35, 0.13);
  border-radius: 50%;
  right: -180px;
  top: -220px;
  display: none;
}
.hero:after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -230px;
  width: 600px;
  height: 400px;
  background: linear-gradient(
    120deg,
    transparent 0 40%,
    rgba(229, 27, 35, 0.22) 41% 46%,
    transparent 47%
  );
  transform: rotate(-8deg);
  display: none;
}
.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(229, 27, 35, 0.16);
}
h1 {
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin: 20px 0;
}
h1 span {
  color: #ff3a40;
}
.hero-copy > p {
  font-size: 18px;
  color: #d4deec;
  max-width: 610px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.hero-actions .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.quick-points {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.quick-points div {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #e4ebf5;
  font-size: 13px;
  font-weight: 700;
}
.tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(229, 27, 35, 0.2);
  display: grid;
  place-items: center;
  color: #ff4c52;
  font-weight: 900;
}
.hero-card {
  position: relative;
}
.car-stage {
  min-height: 440px;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
}
.car-stage:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.14),
    transparent 65%
  );
}
.car {
  width: min(100%, 570px);
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.34));
  position: relative;
  z-index: 2;
}
.badge {
  position: absolute;
  z-index: 3;
  top: 55px;
  right: 5px;
  background: #fff;
  color: var(--navy);
  border-radius: 18px;
  padding: 15px 18px;
  box-shadow: var(--shadow);
  font-weight: 900;
}
.badge small {
  display: block;
  color: var(--red);
  font-size: 10px;
  letter-spacing: 1px;
}
.hero-location {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: #aebbd0;
  font-size: 12px;
  z-index: 4;
}

.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 0;
  gap: 10px;
}
.trust-item {
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child {
  border: 0;
}
.trust-item b {
  display: block;
  color: var(--navy);
  font-size: 17px;
}
.trust-item span {
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 95px 0;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.kicker {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.8px;
}
.section h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.7px;
  color: var(--navy);
  margin: 9px 0 14px;
}
.section-head p {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.visual {
  background: var(--navy);
  border-radius: 30px;
  min-height: 480px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.visual:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 55px solid rgba(229, 27, 35, 0.16);
  border-radius: 50%;
  right: -150px;
  top: -100px;
}
.road {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: -10px;
  height: 220px;
  background: #172d4d;
  clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
  border-top: 5px solid #fff;
}
.road:after {
  content: "";
  position: absolute;
  left: 49%;
  top: 5%;
  width: 5px;
  height: 210px;
  background: repeating-linear-gradient(
    to bottom,
    #fff 0 24px,
    transparent 24px 48px
  );
  transform: skewX(-8deg);
}
.visual-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 300px;
}
.visual-copy strong {
  font-size: 54px;
  line-height: 1;
  display: block;
}
.visual-copy span {
  color: #ff3b42;
  font-weight: 900;
}
.info-list {
  display: grid;
  gap: 15px;
  margin-top: 28px;
}
.info-row {
  display: flex;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.info-icon {
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff0f1;
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.info-row h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 3px;
}
.info-row p {
  font-size: 13px;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: 0.25s;
  box-shadow: 0 7px 24px rgba(7, 23, 47, 0.04);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #d9dee8;
}
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 21px;
  margin-bottom: 22px;
}
.card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.card p {
  color: var(--muted);
  font-size: 14px;
}
.red-line {
  width: 42px;
  height: 4px;
  background: var(--red);
  border-radius: 9px;
  margin: 17px 0;
}

.city-label {
  margin-top: 14px;
  color: #c9d5e6;
  font-size: 13px;
  font-weight: 700;
}
.services-section {
  background: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  padding: 27px 24px 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fafbfd);
  transition: 0.28s;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(7, 23, 47, 0.045);
}
.service-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #ff4a50);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.28s;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: #d7dce5;
}
.service-card:hover:before {
  transform: scaleX(1);
}
.service-no {
  position: absolute;
  right: 18px;
  top: 17px;
  color: #d9dfe8;
  font-weight: 900;
  font-size: 11px;
}
.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #fff0f1;
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 19px;
}
.service-card h3 {
  font-size: 18px;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: var(--muted);
  min-height: 62px;
}
.service-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}
.service-note {
  margin-top: 25px;
  background: var(--navy);
  color: #dce6f4;
  padding: 17px 20px;
  border-radius: 15px;
  text-align: center;
  font-size: 13px;
}
.service-note strong {
  color: #fff;
}
.service-note a {
  color: #ff4a50;
  font-weight: 900;
}
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .topbar-hours {
    display: block;
    margin-top: 2px;
    white-space: normal;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card p {
    min-height: auto;
  }
}

.process {
  background: var(--soft);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  padding: 26px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.num {
  font-size: 12px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 1px;
}
.step h3 {
  color: var(--navy);
  margin: 8px 0;
}
.step p {
  font-size: 13px;
  color: var(--muted);
}

.areas {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.areas:before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 90px solid rgba(229, 27, 35, 0.12);
  right: -300px;
  top: -260px;
}
.areas .section-head h2 {
  color: #fff;
}
.areas .section-head p {
  color: #bfcadd;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  position: relative;
}
.area {
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #e8eef7;
}
.area:hover {
  border-color: var(--red);
  background: rgba(229, 27, 35, 0.14);
}
.area-copy {
  position: relative;
  max-width: 820px;
  margin: 28px auto 0;
  color: #cbd7e7;
  text-align: center;
  font-size: 14px;
}

.seo-box {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.seo-box h3 {
  color: var(--navy);
  margin-bottom: 10px;
}
.seo-box p {
  color: var(--muted);
  font-size: 14px;
}

.cta {
  padding: 35px 0 95px;
}
.cta-box {
  background: linear-gradient(115deg, var(--red), #c80f17);
  border-radius: 28px;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 45px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  right: -100px;
  top: -100px;
}
.cta-box h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.cta-box p {
  color: #ffe3e4;
}
.cta-box .btn {
  background: #fff;
  color: var(--navy);
  position: relative;
  z-index: 2;
}

.contact {
  padding-top: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.contact-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-card p {
  color: var(--muted);
  font-size: 14px;
}
.phone {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  margin-top: 12px;
}
footer {
  background: #050f21;
  color: #aab7ca;
  padding: 28px 0;
  font-size: 12px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
footer strong {
  color: #fff;
}

/* Shared service-page presentation */
.service-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      88deg,
      rgb(7 23 47 / 81%) 0%,
      rgb(74 117 182 / 29%) 42%,
      rgba(7, 23, 47, 0.48) 100%
    ),
    var(--service-hero-image) center center / cover no-repeat;
  color: #fff;
  padding: 88px 0 96px;
}
.service-new-learning {
  --service-hero-image: url("images/Gemini_Generated_Image_yza44cyza44cyza4.png");
}
.service-new-driving {
  --service-hero-image: url("images/new-driving-licence.png");
}
.service-renewal {
  --service-hero-image: url("images/driving-licence-renewal.png");
}
.service-transfer {
  --service-hero-image: url("images/transfer-of-ownership.png");
}
.service-noc-hp {
  --service-hero-image: url("images/NOC-HP-removal.png");
}
.service-international {
  --service-hero-image: url("images/international-driving-licence.png");
}
.service-slot {
  --service-hero-image: url("images/rto-slot-booking.png");
}
.service-fitness {
  --service-hero-image: url("images/fitness-renewal.png");
}
.service-hero:after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 85px solid rgba(229, 27, 35, 0.13);
  border-radius: 50%;
  right: -250px;
  top: -250px;
  display: none;
}
.service-hero .container,
.service-hero-content {
  position: relative;
  z-index: 1;
}
.service-hero .container {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}
.service-hero h1 {
  max-width: 700px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: -2.8px;
  margin: 18px 0;
}
.service-hero h1 span {
  color: var(--red2);
}
.service-hero .kicker {
  color: #ff4b51;
}
.service-kicker {
  color: #ff4b51;
}
.service-hero .subtitle {
  color: #cbd8e9;
  font-size: 18px;
  max-width: 620px;
}
.service-hero-art {
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.03)
  );
  padding: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.24);
}
.service-hero-art img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.86;
}
.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.service-badge {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  color: #e4edf8;
  font-size: 12px;
  font-weight: 800;
}
.service-overview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.service-image {
  min-height: 390px;
  padding: 18px;
  border-radius: 28px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.service-image img {
  width: 100%;
  height: 354px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.82;
}
.hero-illustration {
  position: relative;
  min-height: 390px;
  padding: 18px;
  border-radius: 28px;
  background: var(--navy);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.hero-illustration svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.18));
}
.hero-illustration .floating-badge {
  position: absolute;
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
}
.hero-illustration .floating-badge small {
  display: block;
  color: var(--red);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-illustration .floating-badge.tl {
  top: 18px;
  left: 0;
}
.hero-illustration .floating-badge.br {
  right: 0;
  bottom: 22px;
}
.legacy-service-art svg,
.legacy-service-art .floating-badge {
  display: none;
}
.legacy-service-art img {
  width: 100%;
  max-width: 400px;
  max-height: 354px;
  object-fit: cover;
  border-radius: 18px;
}
.service-copy h2 {
  margin: 8px 0 14px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}
.service-copy p {
  color: var(--muted);
}
.service-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.service-feature {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--soft);
}
.service-feature strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}
.service-feature span {
  color: var(--muted);
  font-size: 12px;
}
.service-process {
  background: var(--soft);
}
.service-process-grid,
.service-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-process-card,
.service-benefit {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.service-process-card b {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 1px;
}
.service-process-card h3,
.service-benefit h3 {
  color: var(--navy);
  margin: 9px 0 6px;
}
.service-process-card p,
.service-benefit p {
  color: var(--muted);
  font-size: 13px;
}
.service-benefit {
  text-align: center;
}
.service-benefit .service-icon {
  margin: 0 auto 15px;
}
.service-faq {
  max-width: 820px;
  margin: 0 auto;
}
.service-faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.service-faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}
.service-faq p {
  color: var(--muted);
  font-size: 14px;
  padding-top: 10px;
}
.service-contact {
  padding-top: 15px;
}
@media (max-width: 900px) {
  .service-hero .container,
  .service-overview {
    grid-template-columns: 1fr;
  }
  .service-hero {
    padding: 68px 0 78px;
  }
  .service-hero-content {
    text-align: center;
  }
  .service-hero .subtitle {
    margin: auto;
  }
  .service-badges {
    justify-content: center;
  }
  .service-process-grid,
  .service-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .service-hero h1 {
    font-size: 44px;
  }
  .service-hero-art {
    min-height: 240px;
  }
  .service-hero-art img {
    height: 200px;
  }
  .service-feature-grid,
  .service-process-grid,
  .service-benefit-grid {
    grid-template-columns: 1fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .navlinks {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .navlinks.open {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    left: 4%;
    right: 4%;
    top: 78px;
    padding: 20px;
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow);
    gap: 18px;
  }
  .navlinks.open .nav-menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .navlinks.open .nav-menu .sub-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }
  .navlinks.open
    .nav-menu
    > li.menu-item-has-children.submenu-open
    > .sub-menu {
    display: grid !important;
  }
  .nav-services {
    width: 100%;
  }
  .nav-services-menu {
    position: static;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
    background: var(--soft);
  }
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 65px 0;
  }
  .hero-card {
    order: -1;
  }
  .car-stage {
    min-height: 300px;
  }
  .car {
    max-width: 470px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) {
    border: 0;
  }
  .trust-item {
    padding: 8px;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    gap: 35px;
  }
  .visual {
    min-height: 380px;
  }
}
@media (max-width: 600px) {
  .topbar .container {
    justify-content: center;
  }
  .topbar .hide-mobile {
    display: none;
  }
  .nav {
    height: 68px;
  }
  .brand-text b {
    font-size: 17px;
  }
  .brand-text span {
    font-size: 8px;
  }
  .logo-mark {
    width: 42px;
    height: 42px;
  }
  .navlinks.open {
    top: 68px;
  }
  h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-grid {
    padding: 48px 0 70px;
  }
  .car-stage {
    min-height: 245px;
  }
  .badge {
    top: 10px;
    right: 0;
    font-size: 12px;
    padding: 10px;
  }
  .badge small {
    font-size: 8px;
  }
  .section {
    padding: 70px 0;
  }
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 34px 25px;
    display: block;
  }
  .cta-box .btn {
    margin-top: 20px;
  }
  .visual {
    min-height: 330px;
    padding: 25px;
  }
  .visual-copy strong {
    font-size: 43px;
  }
  .road {
    left: 20px;
    right: 20px;
  }
  .phone {
    font-size: 23px;
  }
}
