:root {
  --black: #070303;
  --black-2: #120506;
  --red: #7b1118;
  --red-2: #a31624;
  --maroon: #4b070c;
  --gold: #ffc72c;
  --gold-2: #ff9f1c;
  --cream: #fff6df;
  --white: #ffffff;
  --muted: #d8c8b5;
  --line: rgba(255, 199, 44, 0.28);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --radius: 10px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Arial,
    sans-serif;
  color: var(--white);
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(255, 199, 44, 0.16),
      transparent 24rem
    ),
    radial-gradient(
      circle at 90% 18%,
      rgba(163, 22, 36, 0.22),
      transparent 30rem
    ),
    linear-gradient(135deg, var(--black), #160507 52%, #050202);
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(
    rgba(255, 199, 44, 0.46) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  mask-image: linear-gradient(#000, transparent 80%);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}
.announcement {
  background: linear-gradient(90deg, var(--maroon), var(--red), var(--maroon));
  color: var(--gold);
  font-weight: 900;
  text-align: center;
  padding: 9px 12px;
  font-size: 0.92rem;
}
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7, 3, 3, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, var(--gold), var(--gold-2));
  color: var(--maroon);
  font-weight: 1000;
  box-shadow: 0 0 30px rgba(255, 199, 44, 0.3);
  overflow: hidden;
  flex: 0 0 auto;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-title {
  font-family: Georgia, serif;
  font-weight: 900;
  line-height: 1.1;
}
.logo-title span {
  display: block;
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 3px;
}
.logo-title span:first-child {
  color: var(--white);
  font-size: 0.98rem;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  color: var(--cream);
  font-weight: 900;
  padding: 11px 12px;
  border-radius: var(--radius);
  font-size: 0.92rem;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 199, 44, 0.12);
  color: var(--gold);
}
.header-actions {
  display: flex;
  gap: 8px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--gold);
  background: transparent;
  border-radius: var(--radius);
  font-size: 1.3rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #210708;
  font-weight: 1000;
  box-shadow: 0 16px 38px rgba(255, 199, 44, 0.25);
  text-align: center;
}
.btn.dark {
  background: #080303;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.btn.red {
  background: linear-gradient(135deg, var(--red-2), var(--maroon));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}
.icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  flex: 0 0 auto;
}
.icon::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.icon.phone::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8c1.6 3.1 3.5 5 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.2 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.6c0 .7-.5 1.2-1.2 1.2C10.4 21.6 2.4 13.6 2.4 3.6c0-.7.5-1.2 1.2-1.2h3.6c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .8-.3 1.1l-2.1 2.1Z'/%3E%3C/svg%3E");
}
.icon.whatsapp::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.04 3C8.86 3 3 8.82 3 15.98c0 2.47.7 4.8 1.92 6.78L3.64 29l6.42-1.22A12.92 12.92 0 0 0 16.04 29C23.2 29 29 23.18 29 15.98S23.2 3 16.04 3Zm0 23.42c-2.06 0-3.96-.6-5.58-1.64l-.4-.24-3.8.72.74-3.68-.26-.42a10.35 10.35 0 0 1-1.58-5.48c0-5.78 4.72-10.48 10.52-10.48 5.78 0 10.5 4.7 10.5 10.48s-4.72 10.42-10.14 10.42Zm5.76-7.82c-.32-.16-1.88-.92-2.16-1.02-.3-.12-.5-.16-.72.16-.2.32-.82 1.02-1 1.22-.18.22-.36.24-.68.08-.32-.16-1.34-.5-2.56-1.58-.94-.84-1.58-1.88-1.76-2.2-.18-.32-.02-.5.14-.66.14-.14.32-.36.48-.54.16-.18.22-.32.32-.54.1-.22.06-.4-.02-.56-.08-.16-.72-1.72-.98-2.36-.26-.62-.52-.54-.72-.54h-.62c-.22 0-.56.08-.86.4-.3.32-1.12 1.1-1.12 2.68s1.14 3.1 1.3 3.32c.16.22 2.24 3.42 5.42 4.8.76.32 1.36.52 1.82.66.76.24 1.46.2 2 .12.62-.1 1.88-.76 2.14-1.5.26-.74.26-1.36.18-1.5-.08-.14-.28-.22-.6-.38Z'/%3E%3C/svg%3E");
}
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 3, 3, 0.96),
    rgba(20, 5, 7, 0.82),
    rgba(7, 3, 3, 0.8)
  );
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  width: min(46vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 199, 44, 0.4);
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255, 199, 44, 0.24) 0 5deg,
      transparent 5deg 13deg
    ),
    radial-gradient(
      circle,
      transparent 0 32%,
      rgba(255, 199, 44, 0.18) 33% 34%,
      transparent 35%
    );
  transform: translateY(-50%);
  animation: spin 30s linear infinite;
  z-index: 1;
  opacity: 0.65;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 32px;
  align-items: center;
  min-height: 690px;
  padding: 80px 0;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 1000;
}
h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.1;
  font-family: Georgia, serif;
}
h1 {
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  letter-spacing: 0.01em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}
h3 {
  font-size: 1.35rem;
}
p {
  color: var(--muted);
  margin: 0 0 18px;
}
.hero p {
  color: var(--cream);
  font-size: 1.1rem;
  max-width: 780px;
}
.hero-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 199, 44, 0.12),
    rgba(123, 17, 24, 0.7)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-visual img {
  width: min(420px, 92%);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.5));
}
.mandala {
  width: min(340px, 82%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 5rem;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255, 199, 44, 0.22) 0 6deg,
      transparent 6deg 14deg
    ),
    radial-gradient(circle, rgba(255, 199, 44, 0.2), transparent 62%);
  animation: spin 28s linear infinite;
}
.hero-actions,
.split-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.badge {
  padding: 14px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.badge strong {
  display: block;
  color: var(--gold);
  font-size: 1.4rem;
  font-family: Georgia, serif;
}
.section {
  padding: 78px 0;
}
.section.light {
  background: var(--cream);
  color: #210708;
}
.section.light p {
  color: #4d3030;
}
.section.dark-panel {
  background: linear-gradient(
    135deg,
    rgba(10, 3, 3, 0.98),
    rgba(75, 7, 12, 0.72)
  );
  border-block: 1px solid var(--line);
}
.section-head {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}
.grid {
  display: grid;
  gap: 22px;
}
.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}
.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  border: 1px solid rgba(123, 17, 24, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fffaf0;
  box-shadow: 0 16px 40px rgba(40, 5, 8, 0.14);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(40, 5, 8, 0.22);
  border-color: var(--gold);
}
.card.red {
  background: linear-gradient(180deg, var(--red), var(--maroon));
  color: var(--white);
  border-color: rgba(255, 199, 44, 0.24);
}
.card.red p {
  color: var(--cream);
}
.card-pad {
  padding: 24px;
}
.service-image {
  height: 190px;
  background: linear-gradient(135deg, #240709, #7b1118);
  display: grid;
  place-items: center;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}

.service-image span {
  position: absolute;
  font-size: 0.82rem;
  font-weight: 1000;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.55);
  padding: 6px 9px;
  border-radius: 999px;
}
.service-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(75, 7, 12, 0.72));
}
.feature-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 2rem;
}
.problem-list {
  columns: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}
.problem-list li,
.check-list li {
  margin: 0 0 10px;
  break-inside: avoid;
  padding-left: 26px;
  position: relative;
}
.problem-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 199, 44, 0.17);
}
.cta-band {
  background: linear-gradient(90deg, #050202, var(--maroon), #050202);
  border-block: 1px solid var(--line);
  padding: 38px 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}
.testimonial {
  text-align: center;
  padding: 34px 24px 28px;
  background: rgba(255, 250, 240, 0.96);
  color: #210708;
  border: 1px solid rgba(123, 17, 24, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}
.quote-mark {
  color: var(--red);
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
}
.stars {
  color: var(--gold-2);
  letter-spacing: 3px;
  margin: 14px 0;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: rgba(75, 7, 12, 0.72);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  border: 0;
  color: var(--white);
  background: transparent;
  padding: 18px 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 1000;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 20px 18px;
}
.faq-item.open .faq-answer {
  display: block;
}
.form-card {
  background: linear-gradient(
    135deg,
    rgba(75, 7, 12, 0.96),
    rgba(123, 17, 24, 0.88)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  gap: 14px;
}
.field {
  display: grid;
  gap: 6px;
}
label {
  font-weight: 900;
  color: var(--cream);
}
input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 199, 44, 0.28);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #210708;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  color: var(--gold);
  font-weight: 800;
  margin: 8px 0 0;
}
.contact-card {
  background: rgba(255, 250, 240, 0.96);
  color: #210708;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(123, 17, 24, 0.16);
}
.contact-card p {
  color: #4d3030;
}
.map {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
  filter: contrast(1.02) saturate(0.9);
}
.footer {
  background: #050202;
  border-top: 1px solid var(--line);
  padding: 54px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.3fr;
  gap: 28px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}
.footer a,
.footer li,
.footer p {
  color: var(--muted);
}
.footer h3 {
  color: var(--gold);
}
.copyright {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
}
.float-actions {
  position: fixed;
  z-index: 120;
  inset: auto 16px 16px 16px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.float-actions a {
  pointer-events: auto;
  min-width: 164px;
  animation: pulse 2.3s ease-in-out infinite;
}
.popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}
.popup.open {
  display: flex;
}
.popup-dialog {
  width: min(620px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  background: var(--cream);
  color: #210708;
  border-radius: var(--radius);
  position: relative;
  padding: 22px;
  box-shadow: var(--shadow);
}
.popup-dialog h2 {
  color: var(--red);
  text-align: center;
}
.popup-dialog p {
  color: #4d3030;
  text-align: center;
}
.popup .form-card {
  margin-top: 16px;
}
.close-popup {
  position: sticky;
  z-index: 2;
  top: 0;
  margin-left: auto;
  margin-bottom: 4px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #050202;
  color: var(--white);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.close-popup:hover {
  background: var(--red);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.page-hero {
  padding: 88px 0;
  background: linear-gradient(
    135deg,
    rgba(7, 3, 3, 0.92),
    rgba(75, 7, 12, 0.86)
  );
  border-bottom: 1px solid var(--line);
}
.page-hero p {
  max-width: 820px;
}
.missing {
  color: var(--gold);
  font-weight: 1000;
}
@keyframes spin {
  to {
    rotate: 360deg;
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 199, 44, 0.32);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 199, 44, 0);
  }
}
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    inset: 78px 14px auto 14px;
    background: var(--black-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .header-actions {
    display: none;
  }
  .hero-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .problem-list {
    columns: 1;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 2.35rem;
  }
  .section {
    padding: 56px 0;
  }
  .hero-grid {
    min-height: auto;
    padding: 58px 0;
  }
  .hero::after {
    opacity: 0.24;
    right: -180px;
    width: 560px;
  }
  .badges {
    grid-template-columns: 1fr;
  }
  .float-actions {
    gap: 8px;
  }
  .float-actions a {
    min-width: 0;
    flex: 1;
    padding-inline: 10px;
    font-size: 0.86rem;
  }
  .logo-title {
    max-width: 210px;
  }
  .popup {
    align-items: flex-end;
    padding: 10px;
  }
  .popup-dialog {
    width: 100%;
    max-height: 82vh;
    padding: 16px;
  }
  .popup-dialog h2 {
    font-size: 1.45rem;
  }
}

/* Reference-inspired black/gold conversion layout */
body {
  background:
    radial-gradient(
      circle at 72% 8%,
      rgba(255, 199, 44, 0.16),
      transparent 22rem
    ),
    linear-gradient(135deg, #020101, #080202 58%, #120405);
}
.announcement {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 199, 44, 0.25);
}
.header {
  background: rgba(1, 1, 1, 0.96);
}
.navbar {
  min-height: 74px;
}
.logo-mark {
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold);
  background: #050202;
}
.logo-title span:first-child {
  color: var(--gold);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-links a {
  font-size: 0.84rem;
}
.btn.green {
  background: linear-gradient(135deg, #1ea34a, #087a2f);
  color: white;
  border-color: #37d46d;
}
.hero {
  min-height: 600px;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.78) 45%,
      rgba(0, 0, 0, 0.46) 100%
    ),
    radial-gradient(
      circle at 75% 45%,
      rgba(255, 199, 44, 0.2),
      transparent 22rem
    );
}
.hero-grid {
  min-height: 600px;
  padding: 54px 0;
  grid-template-columns: 0.95fr 1.05fr;
}
.hero h1 {
  font-size: clamp(2.7rem, 6.3vw, 5.8rem);
  color: var(--gold);
  text-shadow: 0 0 22px rgba(255, 199, 44, 0.25);
}
.hero-visual {
  min-height: 540px;
  background: radial-gradient(
    circle at 50% 38%,
    rgba(255, 199, 44, 0.18),
    transparent 58%
  );
  border: 0;
  box-shadow: none;
}
.hero-visual img {
  width: min(430px, 100%);
  max-height: 560px;
  aspect-ratio: auto;
  object-fit: contain;
  border: 1px solid rgba(255, 199, 44, 0.42);
  border-radius: 10px;
  box-shadow:
    0 0 45px rgba(255, 199, 44, 0.18),
    0 24px 60px rgba(0, 0, 0, 0.62);
  filter: drop-shadow(0 0 35px rgba(255, 199, 44, 0.28));
}
.badges {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.badge {
  background: rgba(10, 5, 2, 0.78);
  border-color: rgba(255, 199, 44, 0.42);
}
.badge strong {
  font-size: 1.05rem;
}
.badge span {
  color: var(--cream);
  font-size: 0.78rem;
}
.section {
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 199, 44, 0.18);
}
.section.light,
.services-band,
.compact,
.contact-band,
.gallery-band,
.process-band {
  background: #050202;
  color: var(--white);
}
.section.light p,
.compact p,
.contact-band p {
  color: var(--muted);
}
.section-head {
  margin-bottom: 24px;
}
.section-head h2 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  letter-spacing: 0.05em;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  background: #090505;
  border: 1px solid rgba(255, 199, 44, 0.36);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  color: var(--cream);
  font-size: 1.05rem;
}
.service-card p {
  color: #cdbda8;
  font-size: 0.84rem;
  line-height: 1.45;
}
.service-card .card-pad {
  padding: 14px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.service-card .split-actions {
  margin-top: auto;
  gap: 8px;
}
.service-image {
  height: 245px;
  border-bottom: 1px solid rgba(255, 199, 44, 0.38);
}
.service-image img {
  opacity: 0.96;
  object-fit: cover;
  object-position: center top;
}
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 0.76rem;
}
.gold-btn {
  background: var(--gold);
  color: #220707;
}
.red-btn {
  background: var(--red-2);
  color: #fff;
}
.about-band {
  background: #050202;
}
.about-image {
  border: 1px solid rgba(255, 199, 44, 0.38);
  border-radius: 8px;
  overflow: hidden;
  background: #070303;
}
.about-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.why-grid {
  max-width: 760px;
  margin: 0 auto;
}
.why-card {
  text-align: center;
  border: 1px solid rgba(255, 199, 44, 0.32);
  border-radius: 8px;
  background: #090505;
  padding: 22px 16px;
}
.why-card h3 {
  font-size: 1rem;
  color: var(--cream);
}
.why-card p {
  font-size: 0.84rem;
}
.feature-icon {
  width: 76px;
  height: 76px;
  color: var(--gold);
  border-color: rgba(255, 199, 44, 0.5);
  background: radial-gradient(
    circle,
    rgba(255, 199, 44, 0.16),
    transparent 70%
  );
}
.process-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.process-step {
  text-align: center;
}
.process-step > div {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 199, 44, 0.45);
  color: var(--gold);
  font-weight: 1000;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.16), #080202 70%);
}
.process-step h3 {
  font-size: 0.95rem;
  color: var(--cream);
}
.process-step p {
  font-size: 0.82rem;
}
.testimonial {
  background: linear-gradient(180deg, #8b1117, #4b070c);
  color: white;
  border-color: rgba(255, 199, 44, 0.45);
}
.testimonial p {
  color: #ffe8c0;
}
.contact-card {
  background: #090505;
  color: white;
  border-color: rgba(255, 199, 44, 0.36);
}
.contact-card p {
  color: var(--cream);
}
.contact-card a {
  color: var(--gold);
  font-weight: 900;
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.gallery-thumb {
  border: 1px solid rgba(255, 199, 44, 0.45);
  border-radius: 7px;
  overflow: hidden;
  background: #080202;
}
.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.footer {
  background: #030101;
}
.footer h3 {
  text-transform: uppercase;
  font-size: 1rem;
}
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 700px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .service-grid,
  .process-row {
    grid-template-columns: 1fr;
  }
  .badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 2026 light horoscope editorial redesign */
:root {
  --black: #10131c;
  --black-2: #171b28;
  --red: #f07a13;
  --red-2: #ff8a00;
  --maroon: #27233c;
  --gold: #ff8a00;
  --gold-2: #ffb21a;
  --cream: #f8f8fa;
  --white: #ffffff;
  --muted: #777b86;
  --cyan: #28b6df;
  --line: rgba(22, 29, 45, 0.1);
  --shadow: 0 18px 45px rgba(25, 31, 45, 0.11);
  --radius: 3px;
}
body {
  color: #292d38;
  background: #fff;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Arial,
    sans-serif;
}
body::before {
  display: none;
}
p {
  color: var(--muted);
}
.container {
  width: min(1120px, calc(100% - 32px));
}
.announcement {
  padding: 7px 16px;
  color: #fff;
  background: #f58a00;
  border: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.header {
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 0;
  box-shadow: 0 3px 18px rgba(16, 19, 28, 0.08);
}
.navbar {
  min-height: 76px;
}
.logo-mark {
  width: 48px;
  height: 48px;
  border: 0;
  background: #fff;
  box-shadow: none;
}
.logo-title span:first-child {
  color: #252936;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
}
.logo-title span {
  color: #9296a0;
  font-size: 0.62rem;
}
.nav-links a {
  color: #50545f;
  padding: 28px 10px;
  border-radius: 0;
  font-size: 0.72rem;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: #f58a00;
  background: transparent;
  border-color: #f58a00;
}
.header-actions .btn {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 0.7rem;
}
.header-actions .btn.dark {
  color: #3f4450;
  background: #f4f5f7;
  border-color: #eceef2;
}
.header-actions .btn.red {
  color: #fff;
  background: var(--cyan);
  border-color: var(--cyan);
}
.btn {
  min-height: 40px;
  padding: 10px 22px;
  border: 0;
  border-radius: 22px;
  color: #fff;
  background: var(--cyan);
  box-shadow: 0 10px 24px rgba(40, 182, 223, 0.24);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.red {
  background: #f58a00;
  border: 0;
}
.btn.green {
  background: var(--cyan);
  border: 0;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}
.menu-toggle {
  color: #f58a00;
  border-color: #e7e9ee;
  background: #fff;
}
.hero {
  min-height: 610px;
  overflow: visible;
  border: 0;
  background:
    linear-gradient(
      90deg,
      rgba(14, 17, 28, 0.96),
      rgba(25, 25, 46, 0.86) 54%,
      rgba(20, 17, 39, 0.68)
    ),
    url("../images/astro-srinivas-logo.png") center/cover no-repeat;
}
.hero::before {
  z-index: 0;
  opacity: 0.35;
  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(65, 56, 115, 0.78),
      transparent 30%
    ),
    repeating-radial-gradient(
      circle at 90% 30%,
      transparent 0 34px,
      rgba(255, 255, 255, 0.035) 35px 36px
    );
}
.hero::after {
  right: 8%;
  width: 360px;
  opacity: 0.18;
  border-color: #fff;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.3) 0 2deg,
    transparent 2deg 30deg
  );
}
.hero-grid {
  grid-template-columns: 1.05fr 0.75fr 0.58fr;
  min-height: 540px;
  padding: 72px 0 118px;
  gap: 28px;
}
.hero h1 {
  max-width: 660px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  text-shadow: none;
}
.hero h1::first-line {
  font-weight: 300;
}
.hero .eyebrow {
  color: #fff;
  text-transform: none;
  font-family: Georgia, serif;
  font-style: italic;
}
.hero p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  font-size: 0.95rem;
}
.hero-visual {
  min-height: 420px;
  background: transparent;
}
.hero-visual img {
  width: min(310px, 100%);
  height: 420px;
  object-fit: cover;
  object-position: center 26%;
  border: 0;
  border-radius: 160px 160px 8px 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  filter: saturate(0.92) contrast(1.04);
}
.hero-service-list {
  display: grid;
  align-content: center;
  gap: 12px;
}
.hero-service-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 8px 16px 8px 7px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  font-size: 0.74rem;
  transition: 0.25s ease;
}
.hero-service-list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-6px);
}
.hero-service-list span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: #f58a00;
  border-radius: 50%;
  font-weight: 900;
}
.hero-service-list a:nth-child(3n + 2) span {
  background: var(--cyan);
}
.hero-feature-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -92px;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-feature {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 190px;
  background: #fff;
  border-right: 1px solid #eceef2;
}
.hero-feature:last-child {
  border-right: 0;
}
.hero-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-feature div {
  padding: 20px 17px;
}
.hero-feature h3 {
  color: #282c37;
  font-family: Inter, sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
}
.hero-feature p {
  color: #858995;
  font-size: 0.7rem;
  line-height: 1.55;
}
.hero-feature a,
.insight-card a {
  color: #f58a00;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.badges {
  display: none;
}
.section {
  padding: 82px 0;
  border: 0;
}
.section-head {
  margin-bottom: 42px;
}
.section-head .eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #f58a00;
}
.section-head h2,
.section-head h2 {
  color: #333742;
  font-family: Inter, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section-head h2 strong {
  font-weight: 800;
}
.section-head p {
  max-width: 580px;
  margin-inline: auto;
  font-size: 0.82rem;
}
.about-band {
  padding-top: 130px;
  color: #343844;
  background: #fff;
}
.about-band .grid.two {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
}
.about-image {
  border: 0;
  box-shadow: var(--shadow);
}
.about-image img {
  height: 340px;
  object-fit: cover;
}
.about-band h2 {
  color: #343844;
  font-family: Inter, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.about-band p,
.about-band li {
  color: #747985;
}
.about-band .eyebrow {
  color: #f58a00;
}
.check-list {
  padding-left: 0;
  list-style: none;
}
.check-list li::before {
  background: #f58a00;
  box-shadow: none;
}
.zodiac-band {
  background: #f7f8fa;
}
.zodiac-layout {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  align-items: center;
  gap: 36px;
}
.zodiac-list {
  display: grid;
  gap: 14px;
}
.zodiac-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.zodiac-list.right .zodiac-item {
  flex-direction: row-reverse;
  text-align: right;
}
.zodiac-item > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #f58a00;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}
.zodiac-item:nth-child(3n + 1) > span {
  background: var(--cyan);
}
.zodiac-item strong {
  display: block;
  color: #333743;
  font-size: 0.78rem;
}
.zodiac-item small {
  display: block;
  color: #9b9eaa;
  font-size: 0.62rem;
}
.zodiac-wheel {
  display: grid;
  place-items: center;
}
.wheel-ring {
  position: relative;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 38px solid #262b3c;
  background: conic-gradient(
    #f58a00,
    #f4c542,
    #6cbd8d,
    #28b6df,
    #655bb1,
    #d85f9c,
    #f58a00
  );
  box-shadow:
    inset 0 0 0 2px #fff,
    0 15px 45px rgba(30, 37, 54, 0.16);
}
.wheel-ring::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: #fff;
}
.wheel-ring > span {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: rotate(calc(var(--i) * 30deg)) translateY(-141px)
    rotate(calc(var(--i) * -30deg));
  transform-origin: 0 0;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
}
.wheel-core {
  position: absolute;
  z-index: 3;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f58a00;
  background: #fff;
  border: 1px solid #e4e6eb;
  font-family: Georgia, serif;
  font-size: 2rem;
}
.services-band,
.compact,
.contact-band,
.gallery-band,
.process-band,
.section.light {
  color: #30343f;
  background: #fff;
}
.service-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 300px;
  color: #333743;
  background: #fff;
  border: 1px solid #ebedf1;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(25, 31, 45, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.service-image {
  height: 122px;
  border: 0;
  background: #fafafa;
}
.service-image::before,
.service-image::after {
  display: none;
}
.service-image img {
  width: 92px;
  height: 92px;
  inset: 15px auto auto 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  opacity: 1;
  object-fit: cover;
}
.service-card .card-pad {
  align-items: center;
  text-align: center;
  padding: 18px;
}
.service-card h3 {
  color: #30343f;
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.service-card p {
  color: #858995;
  font-size: 0.72rem;
}
.service-card .split-actions {
  justify-content: center;
}
.mini-btn {
  min-height: 30px;
  padding: 7px 10px;
  font-size: 0.64rem;
  border-radius: 16px;
}
.gold-btn {
  color: #fff;
  background: #f58a00;
}
.red-btn {
  color: #fff;
  background: var(--cyan);
}
.cta-band {
  position: relative;
  padding: 84px 0;
  background:
    linear-gradient(rgba(13, 16, 26, 0.79), rgba(13, 16, 26, 0.84)),
    url("../images/services/img-09.jpeg") center/cover fixed;
  border: 0;
}
.cta-inner {
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.cta-inner h2 {
  max-width: 760px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  text-transform: uppercase;
}
.insights-band {
  background: #fff;
}
.insight-card {
  border: 1px solid #e9ebef;
  background: #fff;
  box-shadow: 0 8px 25px rgba(25, 31, 45, 0.06);
}
.insight-image {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insight-image > span {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--cyan);
  font-weight: 900;
}
.insight-image small {
  display: block;
  font-size: 0.55rem;
}
.insight-card h3 {
  color: #333743;
  font-family: Inter, sans-serif;
  font-size: 0.86rem;
  text-transform: uppercase;
}
.insight-card p {
  font-size: 0.74rem;
}
.stats-band {
  padding: 38px 0;
  border-block: 1px solid #eceef2;
  background: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat {
  text-align: center;
  padding: 15px;
  border-right: 1px solid #eceef2;
}
.stat:last-child {
  border: 0;
}
.stat strong {
  display: block;
  color: #f58a00;
  font-size: 1.5rem;
  font-weight: 400;
}
.stat span {
  color: #4f5460;
  font-size: 0.68rem;
}
.testimonials-band {
  background: #f7f8fa;
}
.testimonial {
  padding: 30px;
  color: #555a66;
  background: #fff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 10px 32px rgba(25, 31, 45, 0.06);
}
.testimonial p {
  color: #7e828d;
}
.testimonial h3 {
  color: #333743;
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
}
.quote-mark {
  color: #f58a00;
  font-size: 2.6rem;
}
.stars {
  color: #f58a00;
}
.contact-band {
  background: #f7f8fa;
}
.contact-card,
.form-card {
  color: #333743;
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 2px;
  box-shadow: 0 12px 35px rgba(25, 31, 45, 0.07);
}
.contact-card h2,
.form-card h2,
.form-card h3 {
  color: #333743;
}
.contact-card p,
.form-card p {
  color: #757a85;
}
.contact-card a {
  color: #f58a00;
}
label {
  color: #555a65;
  font-size: 0.74rem;
}
input,
select,
textarea {
  border: 1px solid #e2e5ea;
  border-radius: 2px;
  background: #f9fafb;
}
.dark-panel {
  color: #333743;
  background: #f7f8fa !important;
  border: 0 !important;
}
.faq-item {
  background: #fff;
  border-color: #e2e5ea;
}
.faq-question {
  color: #3a3e49;
}
.faq-answer p {
  color: #737884;
}
.page-hero {
  padding: 88px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 20, 31, 0.94), rgba(31, 27, 55, 0.78)),
    url("../images/astro-srinivas-logo.png") center/cover;
  border: 0;
}
.page-hero h1 {
  font-family: Inter, sans-serif;
  font-weight: 300;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.72);
}
.footer {
  padding: 64px 0 26px;
  color: #c5c8cf;
  background: #17181d;
  border: 0;
}
.footer h3 {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.83rem;
}
.footer a,
.footer li,
.footer p {
  color: #969aa4;
  font-size: 0.74rem;
}
.copyright {
  border-color: rgba(255, 255, 255, 0.08);
}
.float-actions a {
  border-radius: 24px;
}
.popup-dialog {
  border-radius: 4px;
}
.popup .form-card {
  background: #fff;
}
.close-popup {
  color: #fff;
  background: #f58a00;
  border: 0;
}
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 0.7fr;
  }
  .hero-service-list {
    display: none;
  }
  .zodiac-layout {
    grid-template-columns: 1fr 320px 1fr;
  }
  .wheel-ring {
    width: 280px;
    height: 280px;
    border-width: 32px;
  }
  .wheel-ring > span {
    transform: rotate(calc(var(--i) * 30deg)) translateY(-120px)
      rotate(calc(var(--i) * -30deg));
  }
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 980px) {
  .nav-links {
    top: 76px;
    background: #fff;
    border-color: #e7e9ee;
    box-shadow: var(--shadow);
  }
  .nav-links a {
    padding: 13px;
  }
  .hero-feature-grid {
    grid-template-columns: 1fr;
    margin-top: -60px;
  }
  .hero-feature {
    min-height: 150px;
  }
  .zodiac-layout {
    grid-template-columns: 1fr;
  }
  .zodiac-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .zodiac-list.right .zodiac-item {
    flex-direction: row;
    text-align: left;
  }
  .zodiac-wheel {
    grid-row: 1;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 58px 0 105px;
  }
  .hero-visual {
    min-height: 330px;
  }
  .hero-visual img {
    height: 330px;
    width: 250px;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .hero-feature-grid {
    width: calc(100% - 32px);
  }
  .hero-feature {
    grid-template-columns: 38% 1fr;
  }
  .about-band {
    padding-top: 90px;
  }
  .about-band .grid.two {
    grid-template-columns: 1fr;
  }
  .zodiac-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    border-bottom: 1px solid #eceef2;
  }
}
@media (max-width: 480px) {
  .service-grid,
  .zodiac-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-feature {
    grid-template-columns: 1fr;
  }
  .hero-feature img {
    height: 180px;
  }
  .wheel-ring {
    width: 250px;
    height: 250px;
  }
  .wheel-ring > span {
    transform: rotate(calc(var(--i) * 30deg)) translateY(-106px)
      rotate(calc(var(--i) * -30deg));
  }
}


/* Homepage mobile overflow */
@media (max-width: 980px) {
  body > main:first-child {
    overflow-x: hidden;
  }
  
  .hero {
    overflow-x: hidden;
  }
  
  .hero .hero-service-list {
    display: none !important;
  }
  
  .hero-grid {
    width: 100%;
    overflow-x: hidden;
  }
  
  .hero-copy,
  .hero-visual {
    overflow-x: hidden;
  }
}

@media (max-width: 700px) {
  .hero-feature-grid {
    width: calc(100% - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-x: hidden;
  }
  
  .hero-feature {
    overflow-x: hidden;
  }
  
  .hero-visual {
    overflow: hidden;
  }
  
  .hero-visual img {
    max-width: 100%;
    height: auto;
  }
  
  .hero::after {
    display: none !important;
  }
  
  .hero .container {
    overflow-x: hidden;
    width: calc(100% - 24px);
  }
}

@media (max-width: 480px) {
  .hero-feature-grid {
    margin-top: -30px !important;
  }
  
  .hero-feature {
    display: block !important;
  }
  
  .hero-feature img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  
  .hero .container {
    width: calc(100% - 20px);
  }
  
  .hero-grid {
    padding-left: 0;
    padding-right: 0;
  }
  
  .hero-copy {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .hero-visual {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* Make floating action buttons circular (icon only) */
.float-actions a {
  width: 56px !important;
  height: 56px !important;
  min-width: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  justify-content: center !important;
  font-size: 0 !important;          /* hide text */
  background: var(--cyan) !important; /* WhatsApp green or theme color */
  border: none !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Different colors for call and WhatsApp */
.float-actions a:first-child {
  background: #34b7f1 !important;  /* phone blue */
}
.float-actions a:last-child {
  background: #25d366 !important;  /* WhatsApp green */
}

/* Ensure the icon is visible and centered */
.float-actions a .icon {
  width: 28px;
  height: 28px;
  margin: 0;
}
.float-actions a .icon::before {
  background: white !important;
}

/* Hide any text inside */
.float-actions a span:not(.icon) {
  display: none;
}

/* Optional: Adjust position on mobile */
@media (max-width: 560px) {
  .float-actions {
    gap: 12px;
    justify-content: flex-end;  /* both buttons on right side */
  }
  .float-actions a {
    width: 48px !important;
    height: 48px !important;
  }
}
.header-actions {
  display: none !important;
}
/* ==================== FLOATING BUTTONS (bottom right) ==================== */
.float-actions a {
  width: 56px !important;
  height: 56px !important;
  min-width: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  justify-content: center !important;
  font-size: 0 !important;          /* hide text */
  background: #25d366 !important;   /* default green for WhatsApp */
  border: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}
.float-actions a:first-child {
  background: #34b7f1 !important;   /* call button blue */
}
.float-actions a .icon {
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
}
.float-actions a .icon::before {
  background: white !important;
}
.float-actions a span:not(.icon) {
  display: none;
}
.float-actions a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* ==================== HEADER BUTTONS (top right) ==================== */
.header-actions {
  display: flex;
  gap: 8px;
}
.header-actions .btn {
  width: 42px !important;
  height: 42px !important;
  min-width: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  justify-content: center !important;
  font-size: 0 !important;
  background: transparent !important;
  border: 1.5px solid var(--gold) !important;
  box-shadow: none !important;
}
.header-actions .btn .icon {
  width: 22px;
  height: 22px;
  margin: 0;
}
.header-actions .btn .icon::before {
  background: var(--gold) !important;
  transition: 0.2s;
}
.header-actions .btn:hover {
  background: rgba(255, 199, 44, 0.15) !important;
  transform: translateY(-2px);
}
/* Different border colors for call/WhatsApp in header */
.header-actions .btn.red {
  border-color: #25d366 !important;
}
.header-actions .btn.red .icon::before {
  background: #25d366 !important;
}
.header-actions .btn.dark {
  border-color: #34b7f1 !important;
}
.header-actions .btn.dark .icon::before {
  background: #34b7f1 !important;
}
/* Hide text inside header buttons */
.header-actions .btn span:not(.icon) {
  display: none;
}

/* ==================== HERO SECTION BUTTONS (if any) ==================== */
/* Keep hero buttons as normal text buttons, but ensure icons look good */
.hero-actions .btn,
.split-actions .btn {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 40px;  /* slightly rounded */
}
/* Adjust icon inside hero buttons */
.hero-actions .btn .icon,
.split-actions .btn .icon {
  width: 18px;
  height: 18px;
}
.hero-actions .text-link .icon {
  width: 18px;
  height: 18px;
}

/* ==================== SERVICE CARD BUTTONS ==================== */
/* "Call Now" and "Know More" stay as small pill buttons */
.mini-btn {
  border-radius: 40px !important;
  padding: 6px 14px !important;
  font-size: 0.7rem !important;
}
.mini-btn.gold-btn,
.mini-btn.red-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* Optional: add icons to mini buttons if needed */
.mini-btn.gold-btn::before {
  content: "📞";
  font-size: 0.7rem;
  margin-right: 4px;
}
.mini-btn.red-btn::before {
  content: "💬";
  font-size: 0.7rem;
  margin-right: 4px;
}

/* ==================== MOBILE ADJUSTMENTS ==================== */
@media (max-width: 560px) {
  .float-actions {
    gap: 12px;
    justify-content: flex-end;
  }
  .float-actions a {
    width: 48px !important;
    height: 48px !important;
  }
  .float-actions a .icon {
    width: 24px !important;
    height: 24px !important;
  }
  .header-actions .btn {
    width: 38px !important;
    height: 38px !important;
  }
  .header-actions .btn .icon {
    width: 18px;
    height: 18px;
  }
}
/* ==================== HERO CALL BUTTON (text link, not circular) ==================== */
.hero-actions .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  padding: 8px 0 !important;
  border-radius: 0 !important;
  border: none !important;
}
.hero-actions .text-link .icon {
  width: 20px;
  height: 20px;
}
.hero-actions .text-link span:not(.icon) {
  display: inline-block !important;  /* show phone number */
  font-size: 1rem;
}

/* ==================== SERVICE CARD BUTTONS (remove emojis) ==================== */
.mini-btn.gold-btn::before,
.mini-btn.red-btn::before {
  content: none !important;   /* remove phone/chat emoji */
}

/* Ensure buttons have only text, no extra icons */
.mini-btn {
  gap: 0 !important;
}

/* Keep original styling for mini buttons */
.mini-btn.gold-btn,
.mini-btn.red-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px !important;
  font-size: 0.7rem !important;
  border-radius: 40px !important;
  font-weight: 800;
}

/* Optional: add subtle spacing if needed */
.mini-btn + .mini-btn {
  margin-left: 8px;
}

/* ==================== OVERRIDE ANY CIRCULAR STYLES ON HERO BUTTONS ==================== */
/* Prevent header/float styles from affecting hero buttons */
.hero-actions .btn,
.hero-actions .text-link {
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  border-radius: var(--radius) !important;
  font-size: 0.85rem !important;
  background: var(--gold) !important;
  color: #210708 !important;
}
.hero-actions .text-link {
  background: transparent !important;
  color: var(--gold) !important;
}
/* Hero actions container */
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Read More button - proper styling */
.hero-actions .btn {
  background: linear-gradient(135deg, var(--cyan), #1a9bc2) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(40, 182, 223, 0.3);
  padding: 12px 28px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.hero-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(40, 182, 223, 0.4);
}

/* Phone number text link */
.hero-actions .text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--gold) !important;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,199,44,0.3);
  transition: 0.2s;
}
.hero-actions .text-link:hover {
  background: rgba(255,199,44,0.15);
  border-color: var(--gold);
  transform: translateX(4px);
}
.hero-actions .text-link .icon {
  width: 22px;
  height: 22px;
}
.hero-actions .text-link .icon::before {
  background: var(--gold) !important;
}
.hero-actions .text-link {
  text-shadow: 0 0 6px rgba(255,199,44,0.5);
  font-size: 1.2rem;
}
/* Phone icon-only link styles */
a[aria-label="Call us"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--gold, #c7962a);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
a[aria-label="Call us"]:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(199,150,42,0.3);
}
a[aria-label="Call us"] .icon.phone::before {
  background: #fff;
}
a[aria-label="Call us"] .icon {
  width: 1.2rem;
  height: 1.2rem;
}

/* Final floating-action sizing and placement override. */
.float-actions {
  position: fixed;
  z-index: 120;
  inset: auto 16px calc(16px + env(safe-area-inset-bottom)) auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: auto;
  pointer-events: none;
}

.float-actions a,
.float-actions a[aria-label="Call us"] {
  box-sizing: border-box;
  flex: 0 0 60px;
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
  min-height: 60px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  display: flex;
  align-items: center;
  justify-content: center !important;
  font-size: 0 !important;
  line-height: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
}

.float-actions a:first-child {
  background: #34b7f1 !important;
}

.float-actions a:last-child {
  background: #25d366 !important;
}

.float-actions a .icon {
  flex: 0 0 28px;
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
}

.footer {
  padding-bottom: calc(150px + env(safe-area-inset-bottom));
}

@media (max-width: 560px) {
  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }

  .float-actions {
    flex-direction: row;
    gap: 10px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .float-actions a,
  .float-actions a[aria-label="Call us"] {
    flex-basis: 50px;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
  }

  .float-actions a .icon {
    flex-basis: 24px;
    width: 24px !important;
    height: 24px !important;
  }

  .footer {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }
}
