/* Shivam Ambulance — Professional Design System */
:root {
  --brand: #C1121F;
  --brand-dark: #9B0E18;
  --brand-soft: rgba(193, 18, 31, 0.08);
  --ink: #1A1A1A;
  --ink-soft: #2E2E2E;
  --muted: #5C5C5C;
  --paper: #F7F5F3;
  --surface: #FFFFFF;
  --line: rgba(26, 26, 26, 0.08);
  --footer: #141414;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
  --container: 1180px;
  --header-h: 88px;
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.site-wrap {
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-dark:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Header */
.site-topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.55rem 0;
}

.site-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-topbar a:hover {
  color: #fff;
}

.topbar-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.topbar-info a,
.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-social {
  display: flex;
  gap: 0.75rem;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.topbar-social a:hover {
  background: var(--brand);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 245, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.08);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  transition: min-height 0.3s var(--ease);
}

.site-header.is-scrolled .header-inner {
  min-height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-logo img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.site-logo .brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}

.site-logo .brand-text span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 0.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav > li {
  position: relative;
}

.site-nav > li > a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.site-nav > li > a:hover,
.site-nav > li.is-active > a {
  color: var(--brand);
}

.site-nav .has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  opacity: 0.5;
}

.site-nav .dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 240px;
  max-height: 360px;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
  z-index: 50;
}

.site-nav .has-dropdown:hover .dropdown,
.site-nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav .dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-radius: var(--radius);
}

.site-nav .dropdown a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: 0.25s var(--ease);
}

/* Mobile menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}

.mobile-nav.is-open {
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.mobile-nav.is-open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 340px);
  height: 100%;
  background: var(--surface);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-nav-links a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-links a:hover {
  color: var(--brand);
}

.mobile-nav-links details summary {
  list-style: none;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.mobile-nav-links details summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-links details a {
  padding-left: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.mobile-nav-contact {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

.mobile-nav-contact h4 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s var(--ease);
  animation: none;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.55) 48%, rgba(193, 18, 31, 0.35) 100%),
    linear-gradient(to top, rgba(26, 26, 26, 0.75) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
  max-width: 720px;
  margin-left: max(1rem, calc((100% - var(--container)) / 2));
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease) 0.15s forwards;
}

.hero-title {
  font-family: var(--font-ui);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 0.65rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
  margin: 0 0 1.75rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease) 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.hero-dots button.is-active {
  background: #fff;
  width: 28px;
  border-radius: 999px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust strip */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  margin-top: -1px;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.trust-item a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.trust-item a:hover {
  color: var(--brand);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--surface);
}

.section-dark {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(193, 18, 31, 0.35), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(193, 18, 31, 0.15), transparent 40%);
  pointer-events: none;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.sec-head {
  margin-bottom: 2.75rem;
  max-width: 36rem;
}

.sec-head.centred {
  text-align: center;
  margin-inline: auto;
}

.sec-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.section-dark .sec-label {
  color: #ff8a8a;
}

.sec-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  margin: 0;
  letter-spacing: -0.02em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: auto -1rem -1rem auto;
  width: 45%;
  height: 45%;
  background: var(--brand);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.85;
}

.about-body .content-html,
.about-body .content-html p {
  color: var(--muted);
}

.about-body .content-html ul {
  list-style: disc;
  margin: 0.75rem 0 1rem 1.25rem;
}

.about-body .content-html li {
  list-style: disc;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

/* Services */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-item {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.svc-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.svc-item img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.svc-item:hover img {
  transform: scale(1.04);
}

.svc-item h3 {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1.15rem 1.25rem 1.35rem;
  margin: 0;
}

.svc-item:hover h3 {
  color: var(--brand);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-item {
  position: relative;
  padding-top: 0.5rem;
}

.process-item::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--brand-soft);
  color: rgba(193, 18, 31, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.process-item h3 {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-item p {
  font-size: 0.95rem;
  margin: 0;
}

/* Gallery */
.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar {
  height: 6px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 999px;
}

.gallery-item {
  flex: 0 0 min(320px, 80vw);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-page-grid .gallery-item {
  flex: none;
  width: 100%;
  display: block;
}

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.why-item {
  text-align: left;
  padding: 0.5rem 0;
}

.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #ff8a8a;
  margin-bottom: 0.75rem;
  display: block;
}

.why-item h3 {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

/* Testimonials */
.testi-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.testi-slider {
  display: grid;
  gap: 1.25rem;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.testi-card p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-author h4 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.testi-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Page title */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background: var(--ink) center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(26, 26, 26, 0.9) 0%, rgba(193, 18, 31, 0.55) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 2.75rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.5;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 0;
}

/* Contact */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-info-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.contact-info-item a,
.contact-info-item p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 0.35rem;
  display: block;
  line-height: 1.35;
}

.contact-info-item a:hover {
  color: var(--brand);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.blog-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.blog-card .date {
  font-size: 0.8rem;
  color: var(--brand);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card h3 {
  font-size: 1.35rem;
  margin: 0;
}

.blog-card h3 a:hover {
  color: var(--brand);
}

.blog-card .excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-card .read-more {
  margin-top: auto;
  font-weight: 600;
  color: var(--brand);
  font-size: 0.9rem;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 2.5rem;
}

.blog-detail-main img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.blog-detail-main .text-box,
.blog-detail-main .text-box p {
  color: var(--muted);
}

.blog-detail-main .text-box ul {
  list-style: disc;
  margin-left: 1.25rem;
}

.blog-detail-main .text-box li {
  list-style: disc;
  color: var(--muted);
}

.blog-sidebar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.blog-sidebar h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.sidebar-post {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.sidebar-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.sidebar-post img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.sidebar-post h5 {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  line-height: 1.35;
}

.sidebar-post h5 a:hover {
  color: var(--brand);
}

.sidebar-post span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Service detail */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-layout img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 16ch;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-social a:hover {
  background: var(--brand);
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.15rem;
}

.footer-col ul {
  max-height: 220px;
  overflow-y: auto;
}

.footer-col li + li {
  margin-top: 0.55rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #fff;
}

.footer-bottom a:hover {
  color: var(--brand);
}

/* Sticky call bar */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--brand);
  color: #fff;
  padding: 0.85rem 1rem;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 -8px 24px rgba(26, 26, 26, 0.15);
}

.sticky-call:hover {
  background: var(--brand-dark);
  color: #fff;
}

body.has-sticky-call {
  padding-bottom: 64px;
}

/* Scroll top */
.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s var(--ease);
  z-index: 800;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--brand);
}

body.has-sticky-call .scroll-top {
  bottom: 5rem;
}

/* Pay modal */
.modal-content {
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.modal-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.modal-body {
  text-align: center;
  padding: 1.75rem;
}

.modal-body img {
  margin-inline: auto;
  max-width: 280px;
}

/* Content lists from CMS */
.content-html ul,
.text-box ul {
  list-style: disc;
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.content-html li,
.text-box li {
  list-style: disc;
  color: var(--muted);
}

/* Owl overrides for testimonials if used */
.testi-owl .owl-nav {
  margin-top: 1rem;
}

.testi-owl .owl-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: var(--brand) !important;
  color: #fff !important;
  margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-grid,
  .why-grid,
  .process-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .testi-layout,
  .contact-layout,
  .service-layout,
  .blog-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-nav,
  .header-actions .btn-pay-desk {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-logo .brand-text {
    font-size: 1.1rem;
  }

  .site-logo img {
    height: 48px;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .svc-grid,
  .why-grid,
  .process-grid,
  .gallery-page-grid,
  .contact-info-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding: 3rem 0 4rem;
    margin-left: auto;
  }

  .sticky-call {
    display: block;
  }

  body.has-sticky-call {
    padding-bottom: 64px;
  }

  .site-topbar {
    display: none;
  }

  .header-actions .btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .site-logo .brand-text {
    display: none;
  }
}
