/* ===== Sutra Spa Thane — Premium Static Rebuild ===== */

:root {
  --forest: #173229;
  --forest-dark: #0f2119;
  --forest-light: #22493a;
  --gold: #c8a96e;
  --gold-light: #e3cd9e;
  --ivory: #faf6ef;
  --cream: #f2ead9;
  --white: #ffffff;
  --ink: #22291f;
  --muted: #6b7268;
  --shadow: 0 20px 45px -20px rgba(15, 33, 25, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(15, 33, 25, 0.25);
  --radius: 18px;
  --radius-sm: 10px;
  --font-serif: "Philosopher", "Segoe UI", sans-serif;
  --font-sans: "DM Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden !important;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--forest-dark);
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.15;
}
p {
  margin: 0 0 1em;
  color: var(--muted);
}
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 2em;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--forest-dark);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}
.btn-block {
  width: 100%;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 50, 41, 0.08);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 30px -18px rgba(15, 33, 25, 0.35);
  background: rgba(250, 246, 239, 0.97);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo img {
  height: 64px;
  width: auto;
}
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--forest-dark);
  position: relative;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.main-nav .nav-link:hover::after {
  width: 100%;
}
.caret {
  font-size: 1em;
}
.has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  z-index: 20;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--ink);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}
.dropdown li a:hover {
  background: var(--cream);
  color: var(--forest-dark);
  padding-left: 18px;
}
.header-cta {
  white-space: nowrap;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--forest-dark);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
  padding: 0;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 33, 25, 0.55) 0%,
    rgba(15, 33, 25, 0.65) 55%,
    rgba(15, 33, 25, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding: 0 66px;
}
.hero-content .eyebrow {
  color: var(--gold-light);
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 0.5em;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-dots {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.hero-dots button.is-active {
  background: var(--gold);
  transform: scale(1.2);
  border-color: var(--gold);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  color: var(--white);
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}
.hero-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-dark);
  transform: translateY(-50%) scale(1.06);
}
.hero-prev {
  left: 24px;
}
.hero-next {
  right: 24px;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-content .reveal {
  opacity: 1;
  transform: none;
}
.hero-content.animate .reveal {
  animation: heroIn 0.8s ease both;
}
.hero-content .eyebrow.reveal {
  animation-delay: 0.05s;
}
.hero-content h1.reveal {
  animation-delay: 0.2s;
}
.hero-content .hero-btns.reveal {
  animation-delay: 0.4s;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Section shared ===== */
section {
  padding: 100px 0;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-sub {
  margin-top: 14px;
}

/* ===== About ===== */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

/* ===== Why us ===== */
.why-us {
  background: var(--forest);
  position: relative;
}
.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(200, 169, 110, 0.12),
    transparent 55%
  );
}
.why-us .eyebrow {
  color: var(--gold-light);
}
.why-us h2 {
  color: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(200, 169, 110, 0.4);
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px -8px rgba(0, 0, 0, 0.45);
}
.why-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card:nth-child(1) .why-icon {
  background: linear-gradient(135deg, #eec583, #b98a3d);
}
.why-card:nth-child(2) .why-icon {
  background: linear-gradient(135deg, #ee9075, #c94f37);
}
.why-card:nth-child(3) .why-icon {
  background: linear-gradient(135deg, #6cb6e0, #2c74a6);
}
.why-card:nth-child(4) .why-icon {
  background: linear-gradient(135deg, #7cc79b, #3f7d58);
}
.why-card:nth-child(5) .why-icon {
  background: linear-gradient(135deg, #b088d6, #6d3f96);
}
.why-card:nth-child(6) .why-icon {
  background: linear-gradient(135deg, #eda86a, #b96f2c);
}
.why-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.4em;
}
.why-card p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ===== Services ===== */
.services {
  background: var(--ivory);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-media img {
  transform: scale(1.08);
}
.service-body {
  padding: 26px 26px 28px;
}
.service-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4em;
}
.service-body p {
  font-size: 0.95rem;
  margin-bottom: 1.3em;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--forest-dark);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 0.7em 1.3em;
  border-radius: 100px;
  box-shadow: 0 8px 18px -8px rgba(184, 143, 66, 0.6);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    gap 0.25s ease;
}
.service-cta svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-cta:hover {
  transform: translateY(-2px);
  gap: 0.85em;
  box-shadow: 0 12px 24px -8px rgba(184, 143, 66, 0.7);
}
.services-cta {
  margin-top: 60px;
  text-align: center;
  color: var(--white);
  padding: 70px 30px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(
      160deg,
      rgba(15, 33, 25, 0.88),
      rgba(23, 50, 41, 0.82)
    ),
    url("../img/hero-side.webp");
  background-size: cover;
  background-position: center;
}
.services-cta p {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.8em;
}
.services-cta .btn {
  position: relative;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 17, 0.94);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox-prev {
  left: 24px;
}
.lightbox-next {
  right: 24px;
}

/* ===== Contact ===== */
.contact {
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-card {
  display: flex;
  gap: 18px;
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.4);
}
.info-card:nth-child(1) .info-icon {
  background: linear-gradient(135deg, #6cb6e0, #2c74a6);
}
.info-card:nth-child(2) .info-icon {
  background: linear-gradient(135deg, #7cc79b, #3f7d58);
}
.info-card:nth-child(3) .info-icon {
  background: linear-gradient(135deg, #eec583, #b98a3d);
}
.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3em;
}
.info-card p {
  margin: 0;
}
.info-card a {
  color: var(--muted);
  transition: color 0.2s ease;
}
.info-card a:hover {
  color: var(--forest);
}

.contact-cta {
  background: linear-gradient(160deg, var(--forest), var(--forest-dark));
  padding: 44px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 85% 15%,
    rgba(200, 169, 110, 0.18),
    transparent 55%
  );
}
.contact-cta > * {
  position: relative;
}
.contact-cta .eyebrow {
  color: var(--gold-light);
}
.contact-cta h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.4em;
}
.contact-cta-sub {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.6em;
}
.contact-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-cta-btns .btn {
  font-size: 1.02rem;
  padding: 1em 1.6em;
}
.btn-whatsapp {
  background: linear-gradient(135deg, #34e07f, #1fae5c);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.6);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -10px rgba(37, 211, 102, 0.7);
}
.form-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 18px 0 0;
  text-align: center;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  padding: 6px;
}
.map-wrap h3 {
  padding: 20px 24px 0;
  font-size: 1.3rem;
}
.map-wrap iframe {
  display: block;
  border-radius: var(--radius-sm);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 18px;
  border-radius: 8px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}
.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.65);
}
.footer-col a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  text-align: center;
  padding: 26px 0;
  font-size: 0.85rem;
}
.footer-bottom a {
  color: var(--gold-light);
  font-weight: 600;
}

/* ===== Floating buttons ===== */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.4);
  font-size: 1.6rem;
  color: var(--white);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.float-btn:hover {
  transform: scale(1.08);
}
.float-call {
  left: 26px;
  bottom: 100px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--forest-dark);
}
.float-whatsapp {
  left: 26px;
  background: #25d366;
  padding: 12px;
}
.float-whatsapp svg {
  width: 100%;
  height: 100%;
}

/* ===== Scroll reveal utility ===== */
[data-animate] {
  opacity: 0;
}

/* ===== Mobile nav backdrop ===== */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 17, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* ===== Responsive ===== */
@media (max-width: 1180px) {
  .main-nav > ul {
    gap: 22px;
  }
  .header-cta {
    padding: 0.85em 1.6em;
    font-size: 0.88rem;
  }
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-cta {
    padding: 38px 34px;
  }
  section {
    padding: 84px 0;
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    height: 100dvh;
    width: 84vw;
    max-width: 320px;
    background: var(--ivory);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
    padding: 104px 28px 40px;
    visibility: hidden;
    pointer-events: none;
    transition:
      right 0.35s ease,
      visibility 0s linear 0.35s;
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.is-open {
    right: 0;
    visibility: visible;
    pointer-events: auto;
    transition:
      right 0.35s ease,
      visibility 0s linear 0s;
  }
  .main-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .main-nav .nav-link {
    width: 100%;
    padding: 14px 4px;
    font-size: 1.02rem;
    justify-content: space-between;
  }
  .main-nav .nav-link::after {
    display: none;
  }
  .has-dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(23, 50, 41, 0.08);
  }
  .main-nav > ul > li:not(.has-dropdown) {
    border-bottom: 1px solid rgba(23, 50, 41, 0.08);
  }
  .dropdown,
  .has-dropdown:hover .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    width: 100%;
    padding: 0 0 10px 12px;
    margin-top: -6px;
    border-left: 2px solid var(--gold);
  }
  .has-dropdown.is-open .dropdown,
  .has-dropdown.is-open:hover .dropdown {
    display: block;
  }
  .has-dropdown.is-open .caret {
    transform: rotate(180deg);
  }
  .caret {
    transition: transform 0.25s ease;
    display: inline-block;
  }
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    order: -1;
  }
  .header-inner {
    padding: 16px 0;
  }
  .logo img {
    height: 34px;
  }
}

@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    height: 70vh;
    min-height: 520px;
  }
  .hero-content {
    padding: 0 52px;
  }
  .hero-content h1 {
    font-size: 2.0rem;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .hero-arrow svg {
    width: 16px;
    height: 16px;
  }
  .hero-prev {
    left: 10px;
  }
  .hero-next {
    right: 10px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    bottom: 16px;
  }
  .float-call {
    left: 16px;
    bottom: 84px;
  }
  .float-whatsapp {
    left: 16px;
  }
  .contact-cta {
    padding: 32px 24px;
  }
  .contact-cta h3 {
    font-size: 1.5rem;
  }
  .info-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 94%;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hero-content {
    padding: 0 44px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }
  .hero-btns {
    gap: 12px;
  }
  .btn {
    padding: 0.8em 1.6em;
    font-size: 0.88rem;
  }
  .service-body {
    padding: 20px 20px 22px;
  }
  .why-card {
    padding: 28px 22px;
  }
  .contact-cta-btns .btn {
    font-size: 0.92rem;
    padding: 0.9em 1.2em;
  }
  .footer-grid {
    gap: 32px;
  }
}

@media (max-width: 360px) {
  .logo img {
    height: 42px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
}
