:root {
  --primary-color: #FF5A00;
  --primary-strong: #E63900;
  --secondary-color: #8A0B3C;
  --secondary-deep: #4A0019;
  --accent-color: #FFB300;
  --text-dark: #1F1116;
  --text-light: #68565d;
  --bg-color: #fffdf9;
  --bg-soft: #fff5eb;
  --white: #ffffff;
  --border-color: rgba(111, 16, 45, 0.12);
  --glass-border: rgba(255, 255, 255, 0.35);
  --shadow-sm: 0 12px 30px rgba(52, 18, 28, 0.08);
  --shadow-md: 0 24px 60px rgba(52, 18, 28, 0.12);
  --shadow-lg: 0 32px 90px rgba(52, 18, 28, 0.18);
  --transition: 0.3s ease;
  --heading-font: "Prata", serif;
  --body-font: "Plus Jakarta Sans", sans-serif;
  --section-padding: clamp(3.5rem, 6vw, 5.5rem);
  --container-width: 1240px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: var(--body-font);
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(255, 154, 31, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(111, 16, 45, 0.08), transparent 22%),
    linear-gradient(180deg, #fff8f1 0%, #ffffff 24%, #fffdf9 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 25px 25px, rgba(138, 11, 60, 0.35) 2px, transparent 0),
    radial-gradient(circle at 75px 75px, rgba(255, 90, 0, 0.25) 2px, transparent 0);
  background-size: 100px 100px;
}

/* === VIBRANT GRADIENT TEXT & SHAPES === */
.text-gradient {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: floatShape 10s ease-in-out infinite alternate;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 90, 0, 0.15);
  top: -100px;
  left: -100px;
}

.hero-shape-2 {
  width: 600px;
  height: 600px;
  background: rgba(138, 11, 60, 0.12);
  bottom: -200px;
  right: -150px;
  animation-duration: 14s;
}

.hero-shape-3 {
  width: 400px;
  height: 400px;
  background: rgba(255, 179, 0, 0.15);
  top: 20%;
  left: 40%;
  animation-duration: 12s;
  animation-direction: alternate-reverse;
}

@keyframes floatShape {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(50px) scale(1.1);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--secondary-color);
  line-height: 1.15;
}

p {
  color: var(--text-light);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), transform var(--transition), border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 245, 235, 0.8), rgba(255, 255, 255, 0.96));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.12), rgba(138, 11, 60, 0.08));
  border: 1px solid rgba(255, 90, 0, 0.2);
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 0 16px rgba(255, 154, 31, 0.6);
}

.section-header {
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 18px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  padding: 0 12px;
  margin-bottom: 8px;
}

.header-container {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(56, 15, 28, 0.12);
  overflow: visible;
}

.header-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  color: var(--secondary-color);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.logo span {
  display: none;
}

.logo-img {
  height: 48px;
  width: auto;
}

@media (max-width: 768px) {
  .logo span {
    display: inline;
  }

  .logo-img {
    height: 38px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.mobile-only-link {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text-dark);
  font-size: 0.94rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
  background: rgba(111, 16, 45, 0.06);
}

.dropdown-icon {
  font-size: 0.7rem;
  margin-left: 6px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  min-width: 220px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(56, 15, 28, 0.12);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  border: 1px solid rgba(111, 16, 45, 0.05);
  margin-top: 10px;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: rgba(111, 16, 45, 0.05);
  color: var(--secondary-color);
  padding-left: 20px;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(111, 16, 45, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--secondary-color);
  font-size: 1.35rem;
  cursor: pointer;
}

.header-cta-mobile {
  display: none;
}

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-strong));
  box-shadow: 0 18px 34px rgba(255, 90, 0, 0.28);
  animation: pulseGlow 2.8s infinite;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: btnShine 4s infinite;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(255, 90, 0, 0.4);
}

@keyframes btnShine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.btn-outline {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 16, 45, 0.16);
}

.btn-outline:hover {
  background: rgba(111, 16, 45, 0.08);
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0 3.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  margin: 18px 0;
  max-width: 12ch;
}

.hero-desc {
  max-width: 62ch;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-points span,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(111, 16, 45, 0.1);
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

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

.metric-card,
.glass-card,
.feature-box,
.service-card,
.content-card,
.sidebar-card,
.location-card,
.faq-item,
.footer-card {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.metric-card {
  padding: 20px;
  border-radius: var(--radius-md);
}

.metric-card strong {
  display: block;
  color: var(--secondary-color);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-card span {
  color: var(--text-light);
  font-size: 0.92rem;
}

.glass-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 103, 0.42), transparent 68%);
}

.hero-visual {
  padding: 22px;
}

.hero-visual img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 24px;
}

.visual-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.floating-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(70, 8, 24, 0.8);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  animation: floatY 5.6s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.features-grid,
.services-grid,
.locations-grid,
.highlight-grid {
  display: grid;
  gap: 22px;
}

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-box {
  padding: 28px;
  border-radius: var(--radius-md);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 154, 31, 0.18), rgba(111, 16, 45, 0.14));
  font-size: 1.6rem;
  transform: scale(1);
}

.feature-box:hover .feature-icon,
.service-card:hover .service-icon {
  transform: scale(1.08);
}

.feature-title {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  transform: translateY(0);
}

.service-card:hover,
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(70, 8, 24, 0.55));
}

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

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

.service-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.service-tag {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(111, 16, 45, 0.08);
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-title {
  font-size: 1.42rem;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(111, 16, 45, 0.1);
}

.service-link {
  color: var(--primary-strong);
  font-weight: 700;
}

.service-note {
  color: var(--text-light);
  font-size: 0.9rem;
}

.banner-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-deep));
  box-shadow: var(--shadow-lg);
}

.banner-card h2,
.banner-card p,
.banner-card a,
.locations-panel h2,
.locations-panel p {
  color: #fff;
}

.banner-card p {
  opacity: 0.86;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.banner-aside {
  display: grid;
  gap: 14px;
}

.banner-stat {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.banner-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.locations-panel {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #721332, #4f0c1f);
  box-shadow: var(--shadow-lg);
}

.locations-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.location-card {
  display: block;
  padding: 18px 16px;
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.content-card,
.sidebar-card {
  padding: 28px;
  border-radius: var(--radius-md);
}

.content-stack {
  display: grid;
  gap: 24px;
}

.content-card h2,
.content-card h3 {
  margin-bottom: 14px;
}

.info-list,
.check-list,
.coverage-list,
.footer-links {
  list-style: none;
}

.check-list,
.coverage-list {
  display: grid;
  gap: 12px;
}

.check-list li,
.coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dark);
}

.check-list li::before,
.coverage-list li::before {
  content: "✦";
  color: var(--primary-strong);
  font-weight: 700;
}

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

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

.detail-item {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 245, 235, 0.8), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(111, 16, 45, 0.1);
}

.detail-item strong {
  display: block;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.page-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0 3rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(70, 8, 24, 0.86), rgba(111, 16, 45, 0.76)),
    url("../assets/puja-service.jpg") center/cover;
}

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

.page-hero-card {
  max-width: 820px;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero h1,
.page-hero p {
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  margin-bottom: 14px;
}

.inline-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.inline-pills span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.9rem;
}

.form-stack {
  display: grid;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--secondary-color);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid rgba(111, 16, 45, 0.14);
  border-radius: 14px;
  background: #fff;
  color: var(--text-dark);
  outline: none;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

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

.faq-item {
  padding: 22px;
  border-radius: 18px;
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.footer {
  padding: 32px 0 24px;
}

.footer-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
}

.footer-title {
  margin-bottom: 16px;
  font-size: 1.12rem;
}

.footer-links li+li {
  margin-top: 10px;
}

.footer-links a {
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(111, 16, 45, 0.1);
  text-align: center;
  color: var(--text-light);
  font-size: 0.92rem;
}

.reveal {
  animation: revealUp 0.8s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 18px 34px rgba(255, 123, 0, 0.28);
  }

  50% {
    box-shadow: 0 18px 40px rgba(255, 123, 0, 0.42);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 1080px) {

  .hero-layout,
  .split-layout,
  .banner-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .locations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visual-caption {
    position: static;
    margin-top: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem;
  }

  .header {
    top: 8px;
    padding: 0 8px;
  }

  .header-container {
    padding: 10px 12px;
    gap: 8px;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 3;
    background: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    font-size: 1.4rem;
    color: var(--secondary-color);
  }

  .logo {
    order: 1;
  }

  .logo span {
    display: inline;
  }

  .header-cta-mobile {
    order: 2;
    margin-left: auto;
    margin-right: 8px;
    background: #fdf6ec;
    padding: 8px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.88rem;
    border: 1px solid rgba(138, 11, 60, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  }

  .header-cta-mobile span {
    display: inline;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    z-index: 999;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(138, 11, 60, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .mobile-only-link {
    display: block !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 10px;
    padding-top: 10px;
  }

  .nav-link {
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 16px;
    font-size: 1rem;
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }


  /* Floating Call Button */
  .floating-call-btn {
    position: fixed;
    right: 20px;
    bottom: 25px;
    width: 54px;
    height: 54px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(255, 90, 0, 0.4);
    z-index: 9999;
    text-decoration: none;
    animation: pulseFloating 2s infinite;
  }

  @keyframes pulseFloating {
    0% {
      transform: scale(1);
      box-shadow: 0 10px 30px rgba(255, 90, 0, 0.4);
    }

    50% {
      transform: scale(1.08);
      box-shadow: 0 10px 40px rgba(255, 90, 0, 0.6);
    }

    100% {
      transform: scale(1);
      box-shadow: 0 10px 30px rgba(255, 90, 0, 0.4);
    }
  }

  .floating-call-btn {
    display: flex;
  }

  .hero,
  .page-hero {
    padding-top: 2.4rem;
  }

  .hero-actions,
  .banner-actions {
    flex-direction: column;
  }

  .metrics,
  .features-grid,
  .services-grid,
  .locations-grid,
  .faq-grid,
  .detail-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    min-height: 320px;
  }

  .page-hero-card,
  .content-card,
  .sidebar-card,
  .feature-box,
  .service-content,
  .footer-card,
  .locations-panel {
    padding: 22px;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 16px;
  }

  main {
    padding-bottom: 1.5rem;
  }

  main .btn {
    width: 100%;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero-title,
  .page-hero h1 {
    max-width: none;
  }

  .hero-points,
  .inline-pills {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .section {
    padding: 2.25rem 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .footer {
    padding: 20px 0 92px;
  }
}
