:root {
  --charcoal: #16181c;
  --charcoal-light: #23262b;
  --accent: #00b8e6;
  --accent-bright: #22e0ff;
  --bg: #f4f6f7;
  --text: #1c2024;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  margin-top: 0;
}

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / nav */
header {
  background: var(--charcoal);
  color: white;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent-bright);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.15s;
}

nav a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--accent-bright);
  color: var(--charcoal) !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 700 !important;
  opacity: 1 !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1f2329 60%, var(--charcoal) 100%);
  color: white;
  text-align: center;
  padding: 100px 20px 120px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -35deg,
    transparent,
    transparent 60px,
    rgba(34, 224, 255, 0.05) 60px,
    rgba(34, 224, 255, 0.05) 62px
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  max-width: 700px;
  margin: 0 auto 16px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 30px;
  opacity: 0.85;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: var(--accent-bright);
  color: var(--charcoal);
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}

.btn:hover {
  background: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--charcoal);
}

/* Trust bar */
.trust-bar {
  background: var(--accent);
  color: white;
  padding: 18px 0;
  font-weight: 600;
}

.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 14px;
  text-align: center;
}

/* Sections */
section {
  padding: 80px 0 70px;
}

.section-alt {
  background: white;
}

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

.section-header p {
  color: #5a6068;
}

/* Packages */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: white;
  padding: 28px 24px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(22, 24, 28, 0.08);
  text-align: center;
  border-top: 3px solid var(--accent-bright);
}

.card .price {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
  margin: 8px 0;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  text-align: left;
}

.card ul li {
  padding: 6px 0;
  border-top: 1px dashed #dde1e4;
}

.card ul li:first-child {
  border-top: none;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 6px;
  height: 200px;
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: white;
  padding: 24px 22px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(22, 24, 28, 0.08);
}

.stars {
  color: var(--accent-bright);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.testimonial .author {
  margin-top: 12px;
  font-weight: 700;
  color: var(--charcoal);
  font-family: "Rajdhani", sans-serif;
}

/* Service area */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.area-list li {
  background: white;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(22, 24, 28, 0.08);
}

/* Booking form */
.booking-section {
  background: var(--charcoal);
  color: white;
}

.booking-section h2 {
  color: white;
}

.booking-section .section-header p {
  color: #9aa2ab;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 26px;
  border-radius: 6px;
  max-width: 560px;
  margin: 0 auto;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select {
  padding: 12px;
  border: 1px solid #3a3f45;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
  width: 100%;
}

.form-status {
  font-weight: 600;
  min-height: 1.4em;
  color: white;
}

.form-status.success {
  color: var(--accent-bright);
}

.form-status.error {
  color: #ff8a80;
}

/* Footer */
footer {
  background: #0d0e11;
  color: white;
  padding: 36px 0 22px;
  text-align: center;
}

footer .fine-print {
  margin-top: 16px;
  font-size: 0.82rem;
  opacity: 0.6;
}

footer .social a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
  opacity: 0.8;
}

.sticky-call {
  display: none;
}

/* Responsive */
@media (max-width: 760px) {
  .grid-3,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;
  }

  nav ul li {
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-cta {
    margin-top: 6px;
    display: inline-block;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .hero {
    padding: 70px 20px 90px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-call {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-bright);
    color: var(--charcoal);
    text-align: center;
    padding: 14px;
    font-weight: 700;
    text-decoration: none;
    z-index: 30;
  }

  body {
    padding-bottom: 54px;
  }
}
