:root {
  --bg: #040714;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --primary: #fbbf24;
  --primary-dark: #d97706;
  --accent: #8b5cf6;
  --shadow: 0 28px 90px rgba(4, 8, 18, 0.35);
  --border: rgba(255, 255, 255, 0.12);
  font-family: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.08), transparent 22%), radial-gradient(circle at 160% 100%, rgba(139, 92, 246, 0.12), transparent 26%), var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(135deg, rgba(4, 7, 20, 0.96), rgba(139, 92, 246, 0.1));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-icon {
  font-size: 1.5rem;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a,
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 6px 0;
  background: #fff;
  border-radius: 999px;
}

.hero {
  min-height: 100vh;
  padding: 6rem 0 4rem;
  position: relative;
  background-image: url("images/hero-background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 20, 0.55), rgba(4, 7, 20, 0.22)), radial-gradient(circle at top right, rgba(251, 191, 36, 0.14), transparent 30%), radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.14), transparent 32%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin: 0;
  max-width: 720px;
  color: #fff;
  line-height: 1.01;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 1.5rem 0 2rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 1rem 1.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  color: #0f172a;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-image {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  display: block;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: min(420px, 100%);
  background: rgba(5, 9, 29, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 0 0 0.75rem;
  color: #fff;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: -3rem auto 3rem;
  padding: 3.5rem 1.25rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.overview-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-card strong {
  display: block;
  color: #fff;
}

.overview-item h3 {
  margin: 0 0 0.75rem;
  color: #fff;
}

.overview-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.section {
  padding: 3.5rem 0;
  position: relative;
  z-index: 2;
}


.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-header span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: #fff;
}

.service-grid,
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card,
.specialty-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(4, 8, 18, 0.22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 110px rgba(4, 8, 18, 0.28);
  border-color: rgba(255, 255, 255, 0.18);
}

.service-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-card-copy {
  padding: 1.75rem;
  display: grid;
  gap: 0.9rem;
}

.service-card-copy h3 {
  margin: 0;
  font-size: 1.2rem;
}

.service-card-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.service-price {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--primary);
  font-weight: 700;
}

.specialty-card {
  padding: 1.75rem;
  min-height: 180px;
  color: #fff;
}

.specialty-card:hover {
  transform: translateY(-3px);
  transition: transform 0.25s ease;
}

.specialty-card h3 {
  margin-top: 0;
}

.about-grid,
.booking-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.about-list {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
}

.about-list li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.about-highlight {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 0.5rem;
  color: #fff;
  font-weight: 500;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

#review-form {
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

#review-form label {
  display: grid;
  gap: 0.5rem;
  color: #fff;
  font-weight: 500;
}

#review-form input,
#review-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

#review-form input::placeholder,
#review-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

#review-form button {
  margin-top: 1rem;
}

.booking-details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.booking-details strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
}

.booking-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-info {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-info strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
}

.contact-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-info a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #fbbf24;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-map {
  min-height: 300px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.18), transparent 40%), radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.16), transparent 30%), rgba(255, 255, 255, 0.04);
  border-radius: 28px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.site-footer {
  padding: 3rem 0 1rem;
  background: linear-gradient(135deg, rgba(5, 9, 29, 0.95), rgba(251, 191, 36, 0.05));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-brand .brand {
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.footer-links h4,
.footer-social h4 {
  color: #fff;
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.footer-links a,
.footer-social a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fbbf24;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #fbbf24;
}

.detail-hero {
  padding: 5rem 0 3rem;
  background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.11), transparent 25%), radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.1), transparent 20%), rgba(255, 255, 255, 0.02);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.detail-hero span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.detail-hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  color: #fff;
}

.detail-hero p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 1.5rem 0 2rem;
}

.detail-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.detail-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.detail-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.detail-expect,
.detail-ideal {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.detail-expect li,
.detail-ideal li {
  color: rgba(255, 255, 255, 0.78);
}

.detail-expect li::before,
.detail-ideal li::before {
  content: '•';
  color: var(--primary);
  display: inline-block;
  width: 1.2rem;
}

.detail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.detail-card h2 {
  margin-top: 0;
  color: #fff;
}

.detail-card p {
  color: rgba(255, 255, 255, 0.76);
}

.detail-benefits,
.detail-pricing {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.detail-benefits li,
.detail-pricing li {
  color: rgba(255, 255, 255, 0.78);
}

.detail-benefits li::before {
  content: '•';
  color: var(--primary);
  display: inline-block;
  width: 1.2rem;
}

.detail-pricing li strong {
  display: inline-block;
  width: 140px;
  color: #fff;
}

.booking-cta {
  grid-column: span 2;
  text-align: center;
}

.booking-cta p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 1.5rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .booking-grid,
  .contact-grid,
  .overview,
  .detail-hero-grid,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-nav {
    position: absolute;
    top: 80px;
    right: 0;
    width: min(280px, 100%);
    background: rgba(4, 7, 20, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -10px 20px 40px rgba(4, 8, 18, 0.25);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .service-grid,
  .specialty-grid,
  .detail-content {
    grid-template-columns: 1fr;
  }
}
