﻿:root {
  --primary: #e52420;
  --primary-dark: #b71815;
  --secondary: #087fa7;
  --secondary-dark: #062f3f;
  --accent: #ffb31a;
  --green: #94c83d;
  --text: #17252c;
  --muted: #5b6870;
  --surface: #f2fafc;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 44px rgba(6, 70, 92, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.section-space {
  padding: 72px 0;
}

.section-soft {
  background: var(--surface);
}

.section-head {
  margin-bottom: 32px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  color: var(--secondary);
}

.section-head h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin: 13px auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary) 0 34%, var(--accent) 34% 67%, var(--green) 67%);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.top-strip {
  background: linear-gradient(90deg, #075f7f, #079cc9);
  color: #effbff;
  font-size: 0.9rem;
}

.top-strip-wrap {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-contact a {
  color: #effbff;
}

.top-contact a:hover {
  color: #ffffff;
}

.top-cta {
  color: #3f2a00;
  background: var(--accent);
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(67, 42, 0, 0.16);
}

.site-header {
  background: #fff;
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 8px 22px rgba(7, 76, 99, 0.09);
}

.navbar {
  padding: 5px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-weight: 700;
}

.brand-logo {
  height: 94px;
  max-width: min(245px, 42vw);
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link {
  position: relative;
  color: #29424c;
  font-weight: 600;
  margin-left: 12px;
}

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

.navbar-nav > .nav-item > .nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 1px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

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

.navbar .dropdown-menu {
  border: 1px solid #e3e9f7;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(13, 27, 70, 0.12);
  padding: 8px;
}

.navbar .dropdown-item {
  border-radius: 8px;
  font-weight: 500;
  color: #2d3d63;
  padding: 8px 12px;
}

.navbar .dropdown-item:hover {
  background: #f4f7ff;
  color: #0f245f;
}

.hero-section {
  position: relative;
  background: url("../images/head-background.jpg") center/cover no-repeat;
  min-height: 650px;
  display: flex;
  align-items: center;
  isolation: isolate;
  border-bottom: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--accent), var(--green), var(--secondary)) 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 37, 49, 0.96) 0%, rgba(5, 82, 108, 0.84) 52%, rgba(5, 117, 151, 0.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.tagline {
  display: inline-block;
  margin-bottom: 12px;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #352400;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.25);
}

.hero-content p {
  margin: 18px 0 24px;
  max-width: 620px;
  color: #e6f7fc;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary-main,
.btn-light-main,
.btn-outline-main {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary-main {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(229, 36, 32, 0.28);
}

.btn-primary-main:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-light-main {
  background: var(--accent);
  color: #302100;
}

.btn-outline-main {
  border: 2px solid var(--primary);
  color: var(--primary-dark);
}

.btn-light-main:hover,
.btn-outline-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(6, 47, 63, 0.18);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #effcff;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-trust-row i {
  color: var(--accent);
}

.quote-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--primary);
}

.quote-card h2 {
  font-size: 1.3rem;
  margin: 0 0 14px;
  color: var(--secondary-dark);
}

.quote-card form {
  display: grid;
  gap: 10px;
}

.quote-card input,
.quote-card select,
.quote-card button {
  width: 100%;
  min-width: 0;
  border-radius: 10px;
  border: 1px solid #cfe2e8;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
}

.quote-card button {
  background: var(--primary);
  border: none;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.quote-card button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.check-list {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "\F26A";
  font-family: bootstrap-icons;
  position: absolute;
  left: 0;
  top: 0;
  color: #1ca64b;
}

.about-premium {
  background: linear-gradient(180deg, #ffffff 0%, #f2fafc 100%);
  position: relative;
  overflow: hidden;
}

.about-premium::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -180px;
  bottom: -180px;
  border-radius: 50%;
  background: rgba(148, 200, 61, 0.12);
}

.about-story-layout {
  position: relative;
  z-index: 1;
  align-items: center !important;
}

.about-story-layout > [class*="col-"] {
  display: flex;
}

.about-media-card {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  max-width: 470px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 30px;
  background: linear-gradient(145deg, var(--primary), var(--accent) 46%, var(--secondary));
  box-shadow: 0 24px 48px rgba(6, 70, 92, 0.2);
}

.about-outside-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 21px;
}

.about-office-chip {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(6, 47, 63, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.about-office-chip i {
  color: var(--accent);
}

.about-location-badge {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: -28px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
  padding: 14px 17px;
  border-radius: 16px;
  background: #ffffff;
  color: var(--secondary-dark);
  border: 1px solid #d8e9ee;
  box-shadow: 0 16px 34px rgba(6, 70, 92, 0.2);
}

.about-location-badge > i {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(229, 36, 32, 0.1);
  color: var(--primary);
  font-size: 1.2rem;
}

.about-location-badge span {
  display: grid;
  font-size: 0.78rem;
  line-height: 1.45;
}

.about-location-badge strong {
  font-size: 0.94rem;
}

.about-content-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 670px;
  margin-left: -34px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dcecef;
  border-right: 5px solid var(--secondary);
  box-shadow: 0 22px 46px rgba(6, 70, 92, 0.13);
}

.about-content-card .btn-outline-main {
  align-self: flex-start;
  margin-top: 0;
}

.about-kicker {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(229, 36, 32, 0.1);
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-title {
  margin: 12px 0;
  color: var(--secondary);
  line-height: 1.3;
  font-size: clamp(1.5rem, 2.1vw, 1.95rem);
}

.about-copy {
  color: #445376;
  line-height: 1.68;
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.about-content-card .check-list {
  gap: 7px;
  margin: 12px 0 15px;
}

.about-content-card .check-list li {
  padding-left: 24px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.about-shape-wrap {
  position: relative;
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(140deg, rgba(229, 36, 32, 0.26), rgba(255, 179, 26, 0.32) 48%, rgba(8, 127, 167, 0.24));
}

.about-shaped-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px 80px 28px 80px;
  box-shadow: 0 18px 38px rgba(6, 70, 92, 0.2);
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 13px 0 16px;
}

.about-metrics div {
  background: #ffffff;
  border: 1px solid #d7eaef;
  border-bottom: 3px solid var(--accent);
  border-radius: 12px;
  padding: 9px 8px;
  text-align: center;
}

.about-metrics strong {
  display: block;
  color: var(--secondary);
  font-size: 1.05rem;
}

.about-metrics span {
  color: #5d6a8d;
  font-size: 0.78rem;
}

.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 177, 28, 0.12), transparent 25%),
    radial-gradient(circle at 92% 78%, rgba(8, 127, 167, 0.1), transparent 28%),
    #f4fbfd;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(229, 32, 36, 0.1);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 127, 167, 0.15);
  border-radius: 22px;
  box-shadow: 0 13px 32px rgba(6, 70, 92, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  content: "";
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 127, 167, 0.4);
  box-shadow: 0 22px 48px rgba(6, 70, 92, 0.17);
}

.service-media {
  position: relative;
  height: 232px;
  overflow: hidden;
  background: #eaf4f7;
}

.service-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(1, 42, 57, 0.46) 100%);
  content: "";
  pointer-events: none;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover img {
  transform: scale(1.055);
}

.service-icon-badge {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  background: var(--primary);
  box-shadow: 0 9px 20px rgba(41, 14, 14, 0.24);
  color: #fff;
  font-size: 1.28rem;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.service-body h3 {
  margin: 0 0 10px;
  color: var(--secondary);
  font-size: 1.18rem;
  line-height: 1.35;
}

.service-body p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.service-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.service-btn {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
}

.service-btn-more,
.service-body .service-btn-more {
  border-color: rgba(8, 127, 167, 0.3);
  background: #edf9fc;
  color: var(--secondary);
}

.service-btn-more:hover,
.service-body .service-btn-more:hover {
  border-color: var(--secondary);
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(8, 127, 167, 0.2);
}

.service-btn-call,
.service-body .service-btn-call {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 17px rgba(229, 32, 36, 0.2);
}

.service-btn-call:hover,
.service-body .service-btn-call:hover {
  border-color: #bd1014;
  background: #bd1014;
  color: #fff;
  box-shadow: 0 10px 21px rgba(229, 32, 36, 0.28);
}

.testimonial-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 4px 24px;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

.testimonial-marquee::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: grid;
  width: 100%;
  grid-auto-columns: calc((100% - 54px) / 4);
  grid-auto-flow: column;
  align-items: stretch;
  gap: 18px;
}

.testimonial-track.is-auto-scrolling {
  animation: testimonial-auto-scroll var(--testimonial-duration, 260s) linear infinite;
  will-change: transform;
}

@keyframes testimonial-auto-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--testimonial-shift, -50%), 0, 0);
  }
}

.testimonial-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(165deg, #ffffff 0%, #f1fbfd 100%);
  border-radius: 18px;
  border: 1px solid #d9ebf0;
  border-top: 4px solid var(--accent);
  box-shadow: 0 14px 30px rgba(6, 70, 92, 0.11);
  padding: 24px 21px;
  margin: 0;
  min-width: 0;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-box:nth-child(3n + 2) {
  border-top-color: var(--primary);
}

.testimonial-box:nth-child(3n + 3) {
  border-top-color: var(--secondary);
}

.testimonial-box:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 127, 167, 0.36);
  box-shadow: 0 20px 38px rgba(6, 70, 92, 0.17);
}

.testimonial-box p {
  flex: 1;
  margin: 0 0 18px;
  font-size: 0.93rem;
  line-height: 1.72;
  color: #2f3d63;
}

.quote-mark {
  width: 43px;
  height: 43px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 36, 32, 0.11);
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: 16px;
}

.testimonial-rating {
  color: #f2b50c;
  font-size: 0.79rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-client strong {
  display: block;
  color: var(--secondary-dark);
  font-size: 1rem;
  text-align: left;
}

.testimonial-client small {
  display: block;
  color: #6b7898;
  font-size: 0.85rem;
  text-align: left;
}

.premium-control {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(6, 47, 63, 0.78);
  opacity: 1;
}

.premium-control:hover {
  background: var(--primary);
}

.premium-indicators {
  bottom: -56px;
}

.premium-indicators button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #9ea8c0;
  border: 0;
}

.premium-indicators .active {
  background-color: var(--secondary);
}

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

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #ffffff;
  box-shadow: 0 10px 24px rgba(6, 70, 92, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(6, 70, 92, 0.18);
}

.page-hero.gallery-page-hero {
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 56px 0;
  background:
    linear-gradient(100deg, rgba(3, 38, 51, 0.86), rgba(4, 93, 119, 0.7)),
    url("../khare-images/khareimage10.webp") center / cover no-repeat;
  border-bottom-color: var(--primary);
  text-align: center;
}

.page-hero.gallery-page-hero::after {
  display: none;
}

.page-hero.gallery-page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero.gallery-page-hero h1 {
  margin-bottom: 11px;
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.page-hero.gallery-page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #f0fbfe;
  font-size: 1.02rem;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.gallery-page-section {
  background:
    radial-gradient(circle at 7% 10%, rgba(255, 179, 26, 0.1), transparent 24%),
    radial-gradient(circle at 94% 80%, rgba(8, 127, 167, 0.09), transparent 25%),
    #f6fbfc;
}

.gallery-page-section .section-head {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.gallery-showcase {
  columns: 3 280px;
  column-gap: 18px;
}

.gallery-showcase-item {
  position: relative;
  break-inside: avoid;
  overflow: hidden;
  margin: 0 0 18px;
  padding: 5px;
  border: 1px solid #d7e9ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(6, 70, 92, 0.1);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.gallery-showcase-item::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background: rgba(6, 47, 63, 0.82);
  color: #ffffff;
  content: "\F52A";
  font-family: "bootstrap-icons";
  font-size: 0.95rem;
  line-height: 30px;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-showcase-item:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 127, 167, 0.4);
  box-shadow: 0 20px 38px rgba(6, 70, 92, 0.17);
}

.gallery-showcase-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-showcase-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 13px;
  transition: transform 0.4s ease;
}

.gallery-showcase-item:hover img {
  transform: scale(1.025);
}

.gallery-cta {
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(6, 70, 92, 0.17);
}

.gallery-cta .about-kicker {
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

.gallery-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.gallery-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.gallery-cta-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.counter-card {
  background: #fff;
  border: 1px solid #e9eef8;
  border-radius: 12px;
  padding: 24px 12px;
}

.counter-card h3 {
  margin: 0;
  color: var(--secondary);
  font-size: 2rem;
}

.counter-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.counter-section {
  background: radial-gradient(circle at 12% 20%, #0e9bc7 0%, #087896 38%, #062f3f 100%);
  position: relative;
}

.counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(229, 36, 32, 0.18), transparent 38%, rgba(255, 179, 26, 0.12));
  pointer-events: none;
}

.premium-counter-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 22px 12px 20px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.premium-counter-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 179, 26, 0.75);
  box-shadow: 0 18px 28px rgba(4, 10, 30, 0.35);
}

.counter-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 179, 26, 0.18);
  color: #ffd985;
  border: 1px solid rgba(255, 179, 26, 0.6);
  font-size: 1.35rem;
}

.premium-counter-card h3 {
  color: #ffffff;
}

.premium-counter-card p {
  color: #dce4ff;
}

.office-card {
  background: linear-gradient(160deg, #ffffff 0%, #f1fbfd 100%);
  padding: 22px 20px;
  border-radius: 16px;
  height: 100%;
  border: 1px solid #d8e9ee;
  border-top: 4px solid var(--primary);
  box-shadow: 0 10px 24px rgba(6, 70, 92, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.office-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--secondary);
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-card h3 i {
  color: var(--primary);
}

.office-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 127, 167, 0.36);
  box-shadow: 0 18px 30px rgba(6, 70, 92, 0.15);
}

.office-meta {
  color: #425073;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.7;
}

.office-meta i {
  color: var(--primary);
  margin-top: 4px;
}

.office-meta a {
  color: #2f3e61;
  font-weight: 500;
}

.locations-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 12%, rgba(255, 179, 26, 0.12), transparent 25%),
    radial-gradient(circle at 94% 82%, rgba(8, 127, 167, 0.1), transparent 28%),
    #f2fafc;
}

.location-card {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d5e9ee;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 34px rgba(6, 70, 92, 0.11);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.location-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8, 127, 167, 0.4);
  box-shadow: 0 23px 45px rgba(6, 70, 92, 0.17);
}

.location-map {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-bottom: 4px solid var(--accent);
  background: #dcecef;
}

.locations-section .row > div:nth-child(2) .location-map {
  border-bottom-color: var(--primary);
}

.locations-section .row > div:nth-child(3) .location-map {
  border-bottom-color: var(--secondary);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.location-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px 21px 21px;
}

.location-card-body h3 {
  margin: 0 0 17px;
  color: var(--secondary);
  font-size: 1.25rem;
}

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

.location-details li {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 10px;
  color: #435174;
  font-size: 0.91rem;
  line-height: 1.65;
}

.location-details i {
  flex: 0 0 20px;
  margin-top: 3px;
  color: var(--primary);
  font-size: 1rem;
  text-align: center;
}

.location-details a {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #344465;
  font-weight: 500;
}

.location-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.location-btn {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.location-btn:hover {
  transform: translateY(-2px);
}

.location-btn-direction {
  border-color: rgba(8, 127, 167, 0.3);
  background: #edf9fc;
  color: var(--secondary);
}

.location-btn-direction:hover {
  border-color: var(--secondary);
  background: var(--secondary);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(8, 127, 167, 0.2);
}

.location-btn-call {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 17px rgba(229, 32, 36, 0.2);
}

.location-btn-call:hover {
  border-color: #bd1014;
  background: #bd1014;
  color: #ffffff;
  box-shadow: 0 10px 21px rgba(229, 32, 36, 0.28);
}

.map-wrap iframe {
  width: 100%;
  height: 430px;
}

.map-profile-section {
  padding: 66px 0 72px;
  background: linear-gradient(180deg, #ffffff, #eef9fb);
}

.map-profile-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.map-profile-head h2 {
  color: var(--secondary-dark);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  margin: 12px 0 6px;
}

.map-profile-head p {
  color: var(--muted);
  margin: 0;
}

.map-frame-shell {
  padding: 10px;
  border-radius: 22px;
  background: linear-gradient(115deg, var(--primary), var(--accent) 35%, var(--green) 68%, var(--secondary));
  box-shadow: 0 20px 42px rgba(6, 70, 92, 0.18);
}

.map-frame-shell iframe {
  display: block;
  border-radius: 15px;
}

.map-frame-shell.map-frame-full {
  width: 100%;
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 18px 38px rgba(6, 70, 92, 0.16);
}

.map-frame-shell.map-frame-full iframe {
  height: 500px;
  border-radius: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #052c3b 0%, #06445a 58%, #075872 100%);
  color: #dff6fc;
  border-top: 4px solid var(--primary);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.site-footer .container {
  padding-left: 16px;
  padding-right: 16px;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.58fr 0.9fr 1.3fr;
  gap: clamp(24px, 3vw, 42px);
  padding: 48px 0 36px;
}

.site-footer h4 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 11px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.site-footer h4::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-wrap {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  margin-bottom: 18px;
  border-radius: 15px;
  background: transparent;
  box-shadow: none;
  line-height: 0;
  overflow: hidden;
}

.footer-logo {
  width: min(225px, 100%);
  height: auto;
  display: block;
  border-radius: 15px;
  background: #fff;
  padding: 8px;
}

.footer-about {
  margin: 0;
  max-width: 360px;
  color: #d7eef4;
  font-size: 0.87rem;
  line-height: 1.7;
}

.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 17px;
}

.footer-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: #edfafe;
  font-size: 0.7rem;
  font-weight: 600;
}

.footer-trust-row i {
  color: var(--accent);
}

.footer-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  max-width: 310px;
  margin-top: 14px;
}

.site-footer .footer-profile-link {
  display: flex;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-size: 0.69rem;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.footer-profile-link i {
  flex: 0 0 auto;
  font-size: 1rem;
}

.site-footer a.footer-profile-link:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #1d5fad;
  transform: translateY(-2px);
}

.profile-google i {
  color: #fbbc05;
}

.profile-facebook i {
  color: #67a2ff;
}

.profile-instagram i {
  color: #ff69a8;
}

.profile-youtube i {
  color: #ff4b4b;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.site-footer a {
  color: #dff6fc;
  font-size: 0.94rem;
}

.footer-links a,
.footer-services a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a i,
.footer-services a i {
  color: var(--accent);
  font-size: 0.7rem;
}

.footer-links a:hover,
.footer-services a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-services a {
  line-height: 1.45;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d7eef4;
  font-size: 0.91rem;
  line-height: 1.62;
}

.footer-contact-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  margin-top: 1px;
  place-items: center;
  border: 1px solid rgba(255, 179, 26, 0.22);
  border-radius: 10px;
  background: rgba(255, 179, 26, 0.1);
  color: var(--accent);
}

.footer-contact-icon i {
  font-size: 0.95rem;
}

.footer-contact-list a {
  overflow-wrap: anywhere;
  padding-top: 7px;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-social {
  margin-top: 22px;
}

.footer-social h5 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.98rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.social-icons a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.social-icons a i {
  font-size: 0.95rem;
}

.social-icons a:hover {
  transform: translateY(-2px);
}

.social-icons .social-whatsapp:hover {
  border-color: #25d366;
  background: #25d366;
  color: #ffffff;
}

.social-icons .social-call:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.social-icons .social-google:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #1d5fad;
}

.copyright {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(217, 238, 244, 0.14);
  background: rgba(1, 29, 40, 0.22);
}

.copyright-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #c9e4eb;
  font-size: 0.78rem;
}

.site-footer .copyright-agency-link {
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 179, 26, 0.65);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.site-footer .copyright-agency-link:hover,
.site-footer .copyright-agency-link:focus-visible {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #302100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.float-action {
  position: fixed;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  z-index: 98;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  animation: floatPulse 2.2s ease-in-out infinite;
}

.float-action:hover {
  transform: translateY(-2px);
}

@keyframes floatPulse {
  0% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24), 0 0 0 0 rgba(229, 36, 32, 0.3);
  }
  70% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24), 0 0 0 10px rgba(229, 36, 32, 0);
  }
  100% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24), 0 0 0 0 rgba(229, 36, 32, 0);
  }
}

.float-whatsapp {
  bottom: 142px;
  background: #25d366;
}

.float-call {
  bottom: 86px;
  background: var(--primary);
}

@media (max-width: 991px) {
  .top-cta {
    display: none;
  }

  .testimonial-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .section-space {
    padding: 56px 0;
  }

  .hero-section {
    min-height: 560px;
    padding: 40px 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 46px 0 32px;
    gap: 34px;
  }

  .footer-brand-col {
    grid-column: auto;
  }

  .footer-brand-col .footer-about {
    max-width: 430px;
  }
}

@media (max-width: 767px) {
  .brand-logo {
    height: 68px;
  }

  .top-strip-wrap {
    justify-content: center;
    padding: 8px 0;
  }

  .top-contact {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .quote-card {
    padding: 18px;
  }

  .section-head h2 {
    font-size: 1.55rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 210px;
  }

  .about-shaped-image {
    height: 360px;
    border-radius: 26px;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .service-media {
    height: 220px;
  }

  .service-body {
    padding: 20px 18px;
  }

  .service-actions {
    margin-top: 17px;
  }

  .site-footer h4 {
    font-size: 1.16rem;
  }

  .footer-logo {
    width: min(205px, 100%);
  }

  .footer-about,
  .footer-contact-list li,
  .site-footer a {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
    padding: 42px 0 30px;
  }

  .footer-brand-col,
  .footer-contact-col {
    grid-column: 1 / -1;
  }

  .footer-links-col h4,
  .footer-services-col h4 {
    margin-bottom: 16px;
    font-size: 1rem;
  }

  .footer-links-col .footer-links,
  .footer-services-col .footer-services {
    gap: 7px;
  }

  .footer-links-col a,
  .footer-services-col a {
    gap: 5px;
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icons a {
    width: auto;
    height: auto;
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .copyright-wrap {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .float-action {
    right: 14px;
    width: 56px;
    height: 56px;
    animation-duration: 1.9s;
  }

  .float-whatsapp {
    bottom: 156px;
  }

  .float-call {
    bottom: 86px;
  }

  .float-action i {
    font-size: 1.2rem;
  }

  .testimonial-box {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .testimonial-track {
    grid-auto-columns: 100%;
  }

  .testimonial-marquee {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .testimonial-track,
  .testimonial-track.is-auto-scrolling {
    animation: none;
    transform: none;
  }

  .testimonial-box {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    user-select: none;
  }

  .testimonial-marquee.is-touch-interacting {
    scroll-snap-type: x proximity;
  }

  .testimonial-box p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .premium-control {
    width: 38px;
    height: 38px;
  }

  .premium-indicators {
    bottom: -46px;
  }

  .counter-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .site-footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .copyright {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #063a4e, #0781a8 66%, #e52420 150%);
  color: #fff;
  padding: 76px 0;
  border-bottom: 5px solid var(--accent);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 180px;
  right: -60px;
  top: -70px;
  border: 28px solid rgba(255, 179, 26, 0.2);
  transform: rotate(35deg);
}

.page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-hero p {
  margin: 0;
  color: #e6f8fc;
}

.about-page-hero {
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 56px 0;
  background:
    linear-gradient(100deg, rgba(3, 38, 51, 0.86), rgba(4, 93, 119, 0.72)),
    url("../khare-images/khareimage6.webp") center 48% / cover no-repeat;
  text-align: center;
  border-bottom-color: var(--primary);
}

.about-page-hero::after {
  display: none;
}

.about-page-hero .container {
  position: relative;
  z-index: 1;
}

.about-page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.15rem, 5vw, 3.5rem);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.about-page-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: #f0fbfe;
  font-size: 1.02rem;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.contact-page-hero {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 56px 0;
  background:
    linear-gradient(100deg, rgba(3, 38, 51, 0.86), rgba(4, 93, 119, 0.7)),
    url("../khare-images/khareimage8.webp") center 48% / cover no-repeat;
  text-align: center;
  border-bottom-color: var(--primary);
}

.contact-page-hero::after {
  display: none;
}

.contact-page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero.contact-page-hero p {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero.service-page-hero {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 50px 0;
  background-color: #075c76;
  background-image:
    linear-gradient(100deg, rgba(3, 38, 51, 0.72), rgba(4, 93, 119, 0.48)),
    var(--service-hero-image);
  background-position: center, center 52%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  border-bottom-color: var(--primary);
  text-align: center;
}

.page-hero.service-page-hero::after {
  display: none;
}

.page-hero.service-page-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.page-hero.service-page-hero h1 {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.52);
}

.page-hero.service-page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #f0fbfe;
  font-size: 0.96rem;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.inner-title {
  color: var(--secondary);
  margin-bottom: 12px;
}

.about-page-media {
  position: relative;
  overflow: hidden;
  padding: 9px;
  border: 1px solid #d5e8ed;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(6, 70, 92, 0.16);
}

.about-page-office-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 19px;
  background: #f4fafc;
  object-fit: contain;
  object-position: center;
}

.about-page-photo-badge {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(6, 47, 63, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
}

.about-page-photo-badge i {
  color: var(--accent);
}

.about-page-title {
  max-width: 650px;
  margin-top: 14px;
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.about-page-title span {
  display: block;
}

.about-page-intro p {
  color: #445376;
  font-size: 0.95rem;
  line-height: 1.82;
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.about-page-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.info-card,
.mini-card,
.faq-item,
.contact-panel,
.cta-banner {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dbecef;
}

.info-card,
.mini-card,
.faq-item {
  padding: 20px;
  height: 100%;
}

.info-card h3,
.mini-card h4,
.faq-item h4 {
  color: var(--secondary);
  margin-top: 0;
}

.info-card h3 i,
.mini-card i {
  color: var(--primary-dark);
  margin-right: 6px;
}

.about-mvv-section .info-card {
  border: 1.5px solid rgba(8, 127, 167, 0.32);
  border-top: 4px solid var(--primary);
  background: linear-gradient(165deg, #ffffff 0%, #f1fbfd 100%);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-mvv-section .info-card:hover {
  transform: translateY(-7px);
  border-color: var(--secondary);
  box-shadow: 0 16px 30px rgba(6, 70, 92, 0.18);
}

.about-mvv-section .info-card h3 i {
  color: var(--primary);
}

.mini-card i {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 8px;
}

.mini-card p,
.info-card p,
.faq-item p {
  margin: 0;
  color: #49577b;
}

.cta-banner {
  text-align: center;
  padding: 36px 20px;
  background: linear-gradient(120deg, #063a4e, #087fa7);
  color: #fff;
  border: none;
}

.cta-banner h2 {
  margin: 0 0 10px;
}

.cta-banner p {
  margin: 0 0 16px;
  color: #d6def8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.contact-panel {
  padding: 22px;
  border-top: 5px solid var(--secondary);
}

.contact-panel h3 {
  margin-top: 0;
  color: var(--secondary);
}

.contact-panel p {
  color: #465473;
}

.contact-panel ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-panel li {
  color: #354466;
}

.contact-panel i {
  color: var(--primary-dark);
  margin-right: 6px;
}

.contact-panel a {
  color: #354466;
}

.quote-card textarea {
  border-radius: 10px;
  border: 1px solid #d7deec;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.mini-map {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
}

.mini-map iframe {
  width: 100%;
  height: 240px;
}

.google-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 11px;
  background: var(--primary);
  color: #ffffff !important;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.google-profile-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.faq-accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.contact-faq-section .faq-premium-wrap {
  background: linear-gradient(155deg, #ffffff 0%, #eef9fb 100%);
  border: 1px solid rgba(8, 127, 167, 0.3);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 16px 34px rgba(13, 27, 70, 0.12);
}

.contact-faq-section .faq-premium-head {
  max-width: 700px;
  margin: 0 auto 24px;
}

.contact-faq-section .faq-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(229, 36, 32, 0.1);
  border: 1px solid rgba(229, 36, 32, 0.28);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-accordion-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.faq-accordion-item {
  overflow: hidden;
  border: 1px solid #dce8eb;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 9px 20px rgba(6, 70, 92, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-accordion-item:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 127, 167, 0.45);
  box-shadow: 0 13px 25px rgba(6, 70, 92, 0.11);
}

.faq-accordion-item[open] {
  border-color: rgba(8, 127, 167, 0.5);
  box-shadow: 0 15px 28px rgba(6, 70, 92, 0.13);
}

.faq-accordion-item summary {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-accordion-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-section .faq-accordion-item .faq-badge {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(160deg, #ef3b36 0%, #bd1815 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.faq-question {
  min-width: 0;
  color: var(--secondary-dark);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.45;
}

.faq-toggle {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(8, 127, 167, 0.24);
  border-radius: 9px;
  background: #edf9fc;
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 500;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.faq-toggle::before {
  content: "+";
  line-height: 1;
}

.faq-accordion-item[open] .faq-toggle {
  transform: rotate(180deg);
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.faq-accordion-item[open] .faq-toggle::before {
  content: "−";
}

.faq-answer {
  margin: 0 16px 16px 73px;
  padding-top: 13px;
  border-top: 1px solid #e2ecef;
  animation: faq-answer-in 0.25s ease;
}

.faq-answer p {
  margin: 0;
  color: #4b5978;
  font-size: 0.91rem;
  line-height: 1.72;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-intro-section {
  background:
    radial-gradient(circle at 6% 15%, rgba(255, 179, 26, 0.1), transparent 24%),
    radial-gradient(circle at 95% 85%, rgba(8, 127, 167, 0.09), transparent 26%),
    #f5fbfc;
}

.service-layout-wrap.service-intro-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border: 1px solid #d6e8ed;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(6, 70, 92, 0.12);
}

.service-layout-wrap.service-intro-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  content: "";
}

.service-intro-media {
  position: relative;
}

.service-intro-media::after {
  position: absolute;
  right: 25px;
  bottom: 18px;
  padding: 8px 12px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 10px;
  background: rgba(6, 47, 63, 0.88);
  color: #ffffff;
  content: "Khare Group Work";
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.service-main-image {
  display: block;
  width: 100%;
  height: 470px;
  border-radius: 19px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 30px rgba(6, 70, 92, 0.14);
}

.service-intro-content {
  padding: 8px 18px 8px 6px;
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(229, 36, 32, 0.1);
  color: var(--primary-dark);
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.service-intro-content .inner-title {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.service-intro-content p {
  margin-bottom: 11px;
  color: #445376;
  font-size: 0.92rem;
  line-height: 1.78;
}

.service-intro-content .check-list {
  margin: 17px 0 22px;
}

.service-intro-content .check-list li {
  margin-bottom: 9px;
  color: #344465;
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-intro-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-detail-block {
  background: #fff;
  border: 1px solid #e6ebf8;
  border-radius: 14px;
  padding: 20px;
  color: #425075;
  line-height: 1.85;
}

.service-price-section {
  background: #ffffff;
}

.service-price-section .section-head {
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
}

.service-price-section .section-head h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  line-height: 1.3;
}

.service-price-section .section-head p {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-size: 0.93rem;
  line-height: 1.72;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid #d7e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(6, 70, 92, 0.1);
  -webkit-overflow-scrolling: touch;
}

.price-table {
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
}

.price-table thead th {
  padding: 15px 14px;
  border: none;
  background: linear-gradient(120deg, #06384b, #075c76);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.price-table tbody td {
  padding: 14px;
  border-color: #e1eaed;
  color: #3b4968;
  font-size: 0.87rem;
  line-height: 1.5;
  vertical-align: middle;
}

.price-table tbody tr:nth-child(even) td {
  background: #f6fbfc;
}

.price-table tbody tr:hover td {
  background: #eef9fb;
}

.price-table tbody td:last-child {
  color: var(--primary-dark);
  font-weight: 750;
  white-space: nowrap;
}

.service-price-section .price-table-wrap + .mt-3 {
  margin-top: 17px !important;
  padding: 13px 15px;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  background: #fff9ec;
  color: #495777;
}

.service-price-section .price-table-wrap + .mt-3 p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-faq-section .faq-accordion-grid {
    grid-template-columns: 1fr;
  }

  .service-main-image {
    height: 410px;
  }

  .service-intro-content {
    padding: 8px 5px 2px;
  }
}

@media (max-width: 767px) {
  .faq-accordion-grid {
    grid-template-columns: 1fr;
  }

  .faq-accordion-item summary {
    grid-template-columns: 40px minmax(0, 1fr) 30px;
    gap: 10px;
    padding: 14px 13px;
  }

  .contact-faq-section .faq-accordion-item .faq-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 0.84rem;
  }

  .faq-question {
    font-size: 0.91rem;
  }

  .faq-toggle {
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    margin: 0 13px 14px 63px;
  }

  .page-hero.service-page-hero {
    min-height: 230px;
    padding: 40px 0;
  }

  .page-hero.service-page-hero h1 {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
    line-height: 1.28;
  }

  .page-hero.service-page-hero p {
    max-width: 92%;
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .service-intro-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .service-layout-wrap.service-intro-card {
    width: calc(100% - 28px);
    padding: 14px;
    border-radius: 19px;
  }

  .service-main-image {
    height: 290px;
    border-radius: 14px;
  }

  .service-intro-media::after {
    right: 19px;
    bottom: 13px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .service-intro-content {
    padding: 5px 2px 2px;
  }

  .service-intro-content .inner-title {
    font-size: 1.4rem;
  }

  .service-intro-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-intro-actions .btn {
    min-height: 46px;
    padding: 11px 9px;
    font-size: 0.8rem;
  }

  .service-price-section .section-head h2 {
    font-size: 1.42rem;
  }

  .service-price-section .section-head p {
    font-size: 0.86rem;
  }

  .price-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .price-table {
    display: block;
    width: 100%;
    min-width: 0;
    background: transparent;
  }

  .price-table thead {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .price-table tbody {
    display: grid;
    gap: 13px;
  }

  .price-table tbody tr {
    display: block;
    overflow: hidden;
    border: 1px solid #d7e7eb;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(6, 70, 92, 0.09);
  }

  .price-table tbody td {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(105px, 40%) minmax(0, 1fr);
    gap: 10px;
    padding: 11px 13px;
    border: 0;
    border-bottom: 1px solid #e4ecef;
    background: #ffffff !important;
    font-size: 0.82rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .price-table tbody td::before {
    align-self: start;
    color: #06384b;
    content: attr(data-label);
    font-size: 0.75rem;
    font-weight: 750;
    line-height: 1.5;
  }

  .price-table tbody td:last-child {
    border-bottom: 0;
    background: #fff6f6 !important;
    white-space: normal;
  }

  .service-price-section .price-table-wrap + .mt-3 {
    padding: 12px 13px;
  }

  .service-price-section .price-table-wrap + .mt-3 p {
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) {
  .service-main-image {
    height: 245px;
  }

  .service-intro-actions {
    grid-template-columns: 1fr;
  }

  .price-table tbody td {
    grid-template-columns: minmax(92px, 38%) minmax(0, 1fr);
    padding: 10px 11px;
  }
}

/* Khare Group brand finishing */
.navbar-toggler {
  border-color: rgba(8, 127, 167, 0.38);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(8, 127, 167, 0.16);
}

.navbar .dropdown-item:hover {
  background: #eef9fb;
  color: var(--primary);
}

.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(8, 127, 167, 0.12);
}

.mini-card {
  border-top: 4px solid var(--accent);
  box-shadow: 0 10px 24px rgba(6, 70, 92, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(6, 70, 92, 0.14);
}

.mini-card:nth-child(2n) {
  border-top-color: var(--secondary);
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 10px 0 16px;
  }

  .about-content-card {
    margin-left: 0;
  }

  .about-story-layout > [class*="col-"] {
    display: block;
  }

  .about-media-card,
  .about-content-card {
    height: auto;
    min-height: 0;
  }

  .about-media-card {
    margin-bottom: 32px;
  }

  .about-outside-image {
    height: auto;
    min-height: 0;
  }

  .about-location-badge {
    right: 22px;
    bottom: -28px;
  }

  .nav-link {
    margin-left: 0;
    padding-left: 10px;
  }

  .navbar-nav > .nav-item > .nav-link::after {
    left: 10px;
    right: auto;
    width: 34px;
  }

  .map-profile-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .brand-logo {
    width: auto;
    max-width: 190px;
    height: 72px;
  }

  .top-contact {
    gap: 5px 12px;
    font-size: 0.78rem;
  }

  .hero-section {
    min-height: auto;
    padding: 54px 0;
  }

  .hero-content h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.35rem);
  }

  .hero-trust-row {
    margin-bottom: 8px;
  }

  .about-media-card {
    width: calc(100% - 12px);
    flex-direction: column;
    margin-bottom: 0;
    padding: 7px;
    border-radius: 24px;
  }

  .about-outside-image {
    height: auto;
    min-height: 0;
    border-radius: 17px;
  }

  .about-office-chip {
    display: none;
  }

  .about-location-badge {
    display: none;
  }

  .about-content-card {
    padding: 24px 20px;
    border-radius: 20px;
    border-right-width: 1px;
    border-bottom: 4px solid var(--secondary);
  }

  .map-profile-section {
    padding: 50px 0 56px;
  }

  .map-frame-shell {
    width: calc(100% - 24px);
    padding: 6px;
  }

  .map-wrap iframe {
    height: 330px;
  }

  .page-hero {
    padding: 58px 0;
  }
}

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

  .testimonial-track.is-auto-scrolling {
    animation-duration: var(--testimonial-duration, 260s) !important;
    animation-iteration-count: infinite !important;
  }
}

/* Opening quote popup */
body.quote-popup-open {
  overflow: hidden;
}

.quote-popup[hidden] {
  display: none;
}

.quote-popup {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.quote-popup.is-open {
  opacity: 1;
}

.quote-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 30, 42, 0.76);
  backdrop-filter: blur(5px);
}

.quote-popup__dialog {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(2, 30, 42, 0.34);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.quote-popup.is-open .quote-popup__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.quote-popup__close {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #eef7f9;
  color: var(--primary);
  font-size: 1rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.quote-popup__close:hover,
.quote-popup__close:focus-visible {
  background: var(--primary);
  color: #ffffff;
  transform: rotate(8deg);
}

.quote-popup__heading {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-right: 34px;
  margin-bottom: 22px;
}

.quote-popup__icon {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  font-size: 1.35rem;
  box-shadow: 0 10px 22px rgba(8, 127, 167, 0.24);
}

.quote-popup__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-popup__heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 800;
}

.quote-popup__heading p {
  margin: 5px 0 0;
  color: #5b6d75;
  font-size: 0.9rem;
  line-height: 1.55;
}

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

.quote-popup__fields label {
  display: grid;
  gap: 6px;
  color: #163d4b;
  font-size: 0.78rem;
  font-weight: 700;
}

.quote-popup__fields input,
.quote-popup__fields select {
  width: 100%;
  height: 47px;
  padding: 0 13px;
  border: 1px solid #d4e2e7;
  border-radius: 10px;
  background: #f9fcfd;
  color: #193d49;
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.quote-popup__fields input:focus,
.quote-popup__fields select:focus {
  border-color: var(--secondary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(8, 127, 167, 0.12);
}

.quote-popup__service {
  grid-column: 1 / -1;
}

.quote-popup__submit {
  width: 100%;
  min-height: 49px;
  margin-top: 18px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), #ed252d);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(225, 31, 38, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-popup__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(225, 31, 38, 0.3);
}

.quote-popup__submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.quote-popup__privacy {
  margin: 10px 0 0;
  color: #698087;
  font-size: 0.75rem;
  text-align: center;
}

.quote-popup__privacy i {
  margin-right: 3px;
  color: #16895d;
}

@media (max-width: 575px) {
  .quote-popup {
    align-items: center;
    height: 100vh;
    height: 100dvh;
    padding: max(14px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  }

  .quote-popup__dialog {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 28px);
    max-height: calc(100dvh - 28px);
    padding: 20px 16px 18px;
    border-radius: 18px;
  }

  .quote-popup__close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  .quote-popup__heading {
    gap: 11px;
    padding-right: 30px;
    margin-bottom: 15px;
  }

  .quote-popup__icon {
    flex-basis: 43px;
    width: 43px;
    height: 43px;
    border-radius: 13px;
    font-size: 1.1rem;
  }

  .quote-popup__heading p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .quote-popup__fields {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quote-popup__service {
    grid-column: auto;
  }

  .quote-popup__fields input,
  .quote-popup__fields select {
    height: 46px;
    min-width: 0;
    font-size: 16px;
  }

  .quote-popup__submit {
    min-height: 48px;
    margin-top: 14px;
  }

  .quote-card {
    width: 100%;
    min-width: 0;
    padding: 18px 14px;
    border-radius: 16px;
  }

  .quote-card input,
  .quote-card select,
  .quote-card textarea,
  .quote-card button {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  .quote-card input,
  .quote-card select,
  .quote-card button {
    min-height: 46px;
  }
}

@media (max-width: 360px) {
  .quote-popup {
    padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  }

  .quote-popup__dialog {
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    padding-right: 12px;
    padding-left: 12px;
  }

  .quote-popup__heading {
    gap: 9px;
  }

  .quote-popup__icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .quote-popup__heading h2 {
    font-size: 1.32rem;
  }
}

@media (max-width: 575px) and (max-height: 700px) {
  .quote-popup__heading {
    margin-bottom: 11px;
  }

  .quote-popup__heading p {
    display: none;
  }

  .quote-popup__fields {
    gap: 8px;
  }

  .quote-popup__fields label {
    gap: 4px;
  }

  .quote-popup__fields input,
  .quote-popup__fields select {
    height: 43px;
  }

  .quote-popup__submit {
    margin-top: 11px;
  }

  .quote-popup__privacy {
    margin-top: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quote-popup,
  .quote-popup__dialog,
  .quote-popup__close,
  .quote-popup__fields input,
  .quote-popup__fields select,
  .quote-popup__submit {
    transition-duration: 0.01ms !important;
  }
}


