:root {
  --primary-color: #8b2cff;
  --primary-dark: #5f13c7;
  --primary-soft: rgba(139, 44, 255, 0.14);
  --bg-dark: #111116;
  --bg-deep: #09090d;
  --bg-card: #1a1a22;
  --bg-card-2: #22222d;
  --text-light: #f6f2ff;
  --text-muted: #aaa6b5;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --font-main: "Inter", sans-serif;
  --radius: 18px;
  --radius-lg: 28px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 18px 0;
}

.inner-header {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(139, 44, 255, 0.18), transparent 32%),
    var(--bg-deep);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 80;
}

.logo img {
  height: 92px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45));
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:not(.btn) {
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  z-index: 80;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: var(--transition);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  text-align: center;
  box-shadow: 0 14px 34px rgba(139, 44, 255, 0.24);
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-full {
  width: 100%;
}

.nav-btn {
  min-height: 44px;
  padding: 11px 20px;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 170px 0 100px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(9, 9, 13, 0.92), rgba(9, 9, 13, 0.66), rgba(9, 9, 13, 0.84)),
    url("assets/hero.webp");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 28%, rgba(139, 44, 255, 0.32), transparent 34%),
    linear-gradient(to top, var(--bg-dark), transparent 35%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9c8ff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 999px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.55rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  max-width: 980px;
}

.hero-text,
.page-hero p {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-top: 24px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-points span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
}

/* Page Hero */

.page-hero {
  padding: 95px 0 75px;
  background:
    radial-gradient(circle at top right, rgba(139, 44, 255, 0.24), transparent 36%),
    linear-gradient(180deg, #111116, #171720);
  border-bottom: 1px solid var(--border);
}

/* Sections */

section {
  padding: 95px 0;
}

.alt-section {
  background:
    radial-gradient(circle at top left, rgba(139, 44, 255, 0.12), transparent 30%),
    var(--bg-deep);
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 54px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Trust */

.trust-strip {
  padding: 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid div {
  padding: 24px;
  border-right: 1px solid var(--border);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 1rem;
}

.trust-grid span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Cards */

.feature-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-card,
.service-card,
.about-card,
.contact-card,
.booking-card,
.notice-box,
.form-container,
.cta-box,
.callout-card,
.addon-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 34px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary-soft);
  color: #d9c8ff;
  font-weight: 800;
  margin-bottom: 24px;
}

.feature-card h3,
.service-info h3,
.about-card h2,
.contact-card h2,
.booking-card h2,
.notice-box h2,
.cta-box h2,
.callout-card h3,
.addon-card h3 {
  line-height: 1.1;
  letter-spacing: -0.03em;
}

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

.feature-card p,
.service-info p,
.about-card p,
.contact-card p,
.booking-card p,
.notice-box p,
.cta-box p,
.callout-card p {
  color: var(--text-muted);
}

.service-card {
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 44, 255, 0.45);
}

.premium-card {
  border-color: rgba(139, 44, 255, 0.45);
}

.service-img {
  min-height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 22, 0.45), transparent);
}

.service-info {
  padding: 28px;
}

.service-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-price {
  color: #d9c8ff !important;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.card-topline span {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: #d9c8ff;
  font-size: 0.75rem;
  font-weight: 800;
}

.check-list {
  margin: 22px 0;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d9c8ff;
  font-weight: 800;
}

/* Expanded Package Styling */

.package-grid {
  align-items: stretch;
}

.package-card .service-info {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card .btn {
  margin-top: auto;
}

.package-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: #d9c8ff !important;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.best-for {
  padding: 16px;
  margin: 8px 0 22px;
  border-radius: 18px;
  border: 1px solid rgba(139, 44, 255, 0.34);
  background: rgba(139, 44, 255, 0.08);
}

.best-for strong,
.best-for span {
  display: block;
}

.best-for strong {
  color: var(--white);
  margin-bottom: 4px;
}

.best-for span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.mini-heading {
  margin-top: 22px;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-list {
  margin-top: 12px;
  margin-bottom: 12px;
}

/* Add-Ons */

.addon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.addon-card {
  padding: 24px;
  text-align: center;
}

.addon-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.addon-card p {
  color: #d9c8ff;
  font-weight: 800;
  font-size: 1.1rem;
}

/* About */

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.about-card {
  padding: 38px;
}

.about-card.highlighted {
  border-color: rgba(139, 44, 255, 0.42);
}

.about-card blockquote {
  margin: 24px 0;
  padding: 22px 0 22px 22px;
  border-left: 4px solid var(--primary-color);
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.7;
  font-style: italic;
}

.about-card p + p {
  margin-top: 18px;
}

.about-card .btn {
  margin-top: 28px;
}

/* Forms */

.form-container {
  padding: 34px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(9, 9, 13, 0.78);
  color: var(--text-light);
  outline: none;
  transition: var(--transition);
}

.form-group select option,
.form-group select optgroup {
  color: #111116;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(139, 44, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(139, 44, 255, 0.12);
}

.split-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.deposit-note {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(139, 44, 255, 0.42);
  background: var(--primary-soft);
  color: var(--text-muted);
  margin-bottom: 20px;
}

.deposit-note strong {
  color: var(--white);
}

/* Contact / Booking */

.contact-layout,
.booking-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.booking-card {
  padding: 34px;
  position: sticky;
  top: 24px;
}

.contact-card h2,
.booking-card h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}

.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item span {
  display: block;
  color: #d9c8ff;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-item a {
  color: var(--white);
  font-weight: 700;
}

.contact-card .btn,
.booking-card .btn {
  margin-top: 18px;
}

.timeline-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 28px;
}

.timeline-list li {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
}

.timeline-list strong,
.timeline-list span {
  display: block;
}

.timeline-list span {
  color: var(--text-muted);
  margin-top: 4px;
}

.booking-highlight {
  padding: 20px;
  border-radius: 20px;
  background: rgba(139, 44, 255, 0.08);
  border: 1px solid rgba(139, 44, 255, 0.32);
  margin-bottom: 18px;
}

.booking-highlight h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.booking-highlight p {
  color: var(--text-muted);
}

/* Notice / CTA */

.notice-box {
  margin-top: 34px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.notice-box p {
  max-width: 680px;
  margin-top: 8px;
}

.cta-section {
  padding: 75px 0;
}

.cta-box {
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at top right, rgba(139, 44, 255, 0.28), transparent 32%),
    var(--bg-card);
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.cta-box p {
  max-width: 650px;
  margin-top: 10px;
}

/* Split Callout */

.split-callout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.split-callout h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.split-callout p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 720px;
}

.split-callout p + p {
  margin-top: 16px;
}

.split-callout .btn {
  margin-top: 28px;
}

.callout-card {
  padding: 34px;
}

.callout-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.price-list {
  display: grid;
  gap: 0;
  margin-bottom: 24px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.price-list span {
  color: var(--text-muted);
}

.price-list strong {
  color: #d9c8ff;
}

/* Service Areas */

.service-area-section {
  background:
    radial-gradient(circle at bottom right, rgba(139, 44, 255, 0.12), transparent 32%),
    var(--bg-dark);
}

.area-pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-pill-grid span {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.92rem;
}

/* Form Status Messages */

.form-message {
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: 16px;
  font-weight: 700;
  display: none;
}

.form-message.is-visible {
  display: block;
}

.form-message.success {
  color: #e8fff1;
  background: rgba(35, 170, 92, 0.16);
  border: 1px solid rgba(35, 170, 92, 0.38);
}

.form-message.error {
  color: #fff1f1;
  background: rgba(255, 82, 82, 0.14);
  border: 1px solid rgba(255, 82, 82, 0.36);
}

.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

/* Animation */

.reveal {
  animation: riseIn 0.7s ease both;
}

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

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

/* Responsive */

@media (max-width: 1100px) {
  .addon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .feature-grid,
  .services-grid,
  .trust-grid,
  .about-layout,
  .contact-layout,
  .booking-layout,
  .footer-grid,
  .split-callout {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .contact-card,
  .booking-card {
    position: relative;
    top: auto;
  }

  .notice-box,
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 0;
  }

  .nav {
    min-height: 74px;
  }

  .logo img {
    height: 78px;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    padding: 118px 24px 30px;
    background:
      radial-gradient(circle at top right, rgba(139, 44, 255, 0.28), transparent 35%),
      rgba(9, 9, 13, 0.98);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 70;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: flex;
    width: 100%;
    padding: 18px 0;
    font-size: 1.1rem;
  }

  .nav-links a:not(.btn)::after {
    display: none;
  }

  .nav-links .btn {
    margin-top: 20px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 160px 0 84px;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -0.055em;
  }

  .hero-text,
  .page-hero p {
    font-size: 1rem;
  }

  section {
    padding: 72px 0;
  }

  .page-hero {
    padding: 72px 0 58px;
  }

  .hero-btns,
  .hero-btns .btn {
    width: 100%;
  }

  .split-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-container,
  .feature-card,
  .about-card,
  .contact-card,
  .booking-card,
  .notice-box,
  .cta-box,
  .callout-card,
  .addon-card {
    padding: 26px;
    border-radius: 22px;
  }

  .service-img {
    min-height: 205px;
  }

  .card-topline {
    flex-direction: column;
  }

  .addon-grid {
    grid-template-columns: 1fr;
  }

  .price-list li {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .logo img {
    height: 72px;
  }

  .hero {
    padding-top: 150px;
  }

  .btn {
    width: 100%;
  }

  .footer-logo {
    height: 68px;
  }

  .hero-points span,
  .area-pill-grid span {
    width: 100%;
    text-align: center;
  }
}