@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #1f2735;
  --midnight: #f4eee4;
  --accent: #c58a1d;
  --accent-soft: rgba(197, 138, 29, 0.14);
  --muted: #6c7282;
  --card: #ffffff;
  --border: #e4e7ec;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 16% 22%, rgba(197, 138, 29, 0.12), transparent 28%),
              radial-gradient(circle at 80% 0%, rgba(255, 186, 94, 0.2), transparent 32%),
              linear-gradient(135deg, #fdfaf6, #f5efe4 45%, #f1e6d7);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fffdf8;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.nav-brand {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fffdf8;
  font-weight: 600;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(197, 138, 29, 0.5);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

header {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}

header::after {
  content: '';
  position: absolute;
  inset: 10% -20% -30% 40%;
  background: radial-gradient(circle, rgba(197, 138, 29, 0.22), transparent 50%);
  filter: blur(90px);
  opacity: 0.8;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

.hero-logo {
  max-width: 220px;
  width: 100%;
  display: block;
  margin: 6px auto 10px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(18px, 3vw, 22px);
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 700;
}

h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(26px, 3.4vw, 36px);
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 600;
}

.lede {
  font-size: 18px;
  color: #3b4150;
  max-width: 640px;
  margin: 0 0 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, #e3b355, #d7a23a);
  color: #2b1b08;
  box-shadow: 0 10px 26px rgba(197, 138, 29, 0.3);
}

.btn.ghost {
  background: #fffdf8;
  color: var(--ink);
  border-color: var(--border);
}

.btn.full {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  border-color: rgba(215, 162, 58, 0.5);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.stats li {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fffdf8;
  border: 1px solid var(--border);
  font-size: 14px;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-header h2 {
  margin: 8px 0 12px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--ink);
}

.section-lede {
  color: #4b5363;
  margin: 0;
}

.services .section-header .eyebrow {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
}

.services .section-header h2 {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 400;
  line-height: 1.4;
}

.desi .section-header .eyebrow {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
}

.desi .section-header h2 {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 400;
  line-height: 1.4;
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 138, 29, 0.45);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(197, 138, 29, 0.4);
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  color: var(--ink);
}

.card p {
  margin: 0;
  color: #4b5363;
}

.service-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #4b5363;
}

.service-list li {
  line-height: 1.6;
}

.booking .grid.cards {
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 16px;
}

.about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.about-copy {
  margin: 0;
  color: #3b4150;
  font-size: 17px;
}

.about-benefits {
  margin-top: 24px;
}

.about-list {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #3b4150;
  display: grid;
  gap: 10px;
  line-height: 1.6;
}

.quote {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0 0 10px;
  font-style: italic;
}

.quote span {
  color: #7d8493;
  font-size: 14px;
}

.quote.slider {
  display: grid;
  gap: 10px;
}

.quote-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.quote-btn {
  border: 1px solid var(--border);
  background: #fffdf8;
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quote-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(197, 138, 29, 0.5);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.price {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--ink);
  font-weight: 700;
}

.note {
  margin: 0;
  color: #4b5363;
}

.pricing-card.highlight {
  border-color: rgba(197, 138, 29, 0.5);
  background: linear-gradient(180deg, rgba(255, 240, 210, 0.8), rgba(255, 234, 199, 0.9));
}

.desi {
  background: radial-gradient(circle at 18% 10%, rgba(197, 138, 29, 0.12), transparent 32%),
              radial-gradient(circle at 88% 20%, rgba(151, 104, 250, 0.12), transparent 30%),
              linear-gradient(180deg, #fffaf3, #f6efe4);
  position: relative;
}

.ornament {
  position: absolute;
  inset: 8% 10% auto auto;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 30% 70% 60% 40%;
  background: conic-gradient(from 45deg, rgba(197, 138, 29, 0.35), rgba(151, 104, 250, 0.22), rgba(197, 138, 29, 0.35));
  filter: blur(10px);
  opacity: 0.7;
}

.desi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.contact {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.65));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
  color: #3b4150;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.contact-list span {
  display: inline-flex;
  width: 22px;
  justify-content: center;
  flex-shrink: 0;
}

form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

label {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

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

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fdfaf5;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
}

input[type="file"] {
  cursor: pointer;
  background: #fffdf8;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(197, 138, 29, 0.35);
  border-color: rgba(197, 138, 29, 0.6);
}

.help-text {
  margin: -6px 0 6px;
  color: #6c7282;
  font-size: 13px;
}

button {
  border: none;
  font: inherit;
}

footer {
  text-align: center;
  padding: 26px 0 36px;
  color: #4b5363;
  background: #f5efe4;
  border-top: 1px solid #e0e3e8;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f5132, #1f7a4c);
  color: #fffdf8;
  box-shadow: 0 14px 28px rgba(31, 122, 76, 0.3), 0 8px 18px rgba(0, 0, 0, 0.18);
  border: 2px solid rgba(227, 179, 85, 0.9);
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-decoration: none;
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
  display: block;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 36px rgba(31, 122, 76, 0.34), 0 10px 22px rgba(0, 0, 0, 0.2);
  filter: brightness(1.05);
}

@media (max-width: 640px) {
  .whatsapp-fab {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 16px;
  }

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

  .booking .grid.cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 640px) {
  header {
    padding: 72px 0 60px;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stats {
    gap: 8px;
  }
}
