:root {
  --black: #000000;
  --red: #ff0000;
  --white: #ffffff;
  --muted: #bdbdbd;
  --card-bg: #0b0b0b;
  --glass: rgba(255, 255, 255, 0.04);
  --accent-gray: #6b6b6b;
  --container: 1100px;
  --radius: 10px;
  --transition: 250ms cubic-bezier(.2, .9, .2, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--white);
  background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

/* utility */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px;
}

.section {
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.muted {
  color: var(--muted);
}

/* loader */
#loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  z-index: 9999;
  transition: opacity .5s
}

.logo-spin circle {
  stroke-dashoffset: 126;
  transform-origin: center;
  animation: spin 1.1s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* nav */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.35));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.85);
  /* Adjust this value (e.g. 0.7 or 0.9) to make it smaller/larger inside the frame */
}

.brand-text .name {
  font-weight: 700;
  letter-spacing: 1px
}

.brand-text .tag {
  font-size: 11px;
  color: var(--muted)
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  transition: var(--transition)
}

.nav-links a:hover {
  background: rgba(255, 0, 0, 0.06);
  color: var(--red)
}

#nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 20px
}

/* hero */
.hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.05) contrast(1.05) saturate(1.05)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.85))
}

.hero-glow {
  position: absolute;
  left: 6%;
  top: 14%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(60px);
  background: radial-gradient(circle, rgba(255, 0, 0, 0.14), transparent 30%);
  mix-blend-mode: screen;
  opacity: .9
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  color: var(--white)
}

.headline {
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.02;
  margin: 0 0 16px;
  letter-spacing: .4px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 1), 0 8px 30px rgba(0, 0, 0, 0.8)
}

.subhead {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 1), 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #ff1a1a, #cc0000);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  border: 1px solid rgba(255, 100, 100, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #ff3333, #e60000);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6), 0 0 15px rgba(255, 0, 0, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15), 0 0 10px rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  opacity: .85;
}

.btn-ghost:hover {
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 18px
}

.hero-stats .stat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 8px 12px;
  border-radius: 8px
}

/* emergency banner */
.emergency-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  background: linear-gradient(90deg, var(--red), #b20000);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(255, 0, 0, 0.12);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 70
}

.emergency-banner a {
  color: var(--white);
  text-decoration: underline
}

#close-emergency {
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 16px
}

/* split about */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center
}

.split-media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6)
}

.lead {
  font-weight: 600;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 14px
}

.bullets {
  list-style: disc;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8
}

.trust {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px
}

.trust img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover
}

/* services grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 22px
}

.service-card {
  background: var(--card-bg);
  padding: 18px;
  border-radius: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.03)
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.06), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px
}

.service-card h3 {
  margin: 0 0 6px
}

.service-card p {
  color: var(--muted);
  font-size: 14px
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 0, 0, 0.14)
}

.service-card:hover .icon {
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.08)
}

/* stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 20px
}

.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  padding: 20px;
  border-radius: 10px;
  text-align: center
}

.stat-card .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--red)
}

/* booking */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  align-items: start
}

.booking-form {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03)
}

.booking-form h2 {
  margin-top: 0
}

.booking-form .row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--white);
  outline: none
}

.booking-form option {
  background: #0b0b0b;
  color: var(--white)
}

.booking-form textarea {
  min-height: 90px;
  resize: none
}

.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px
}

.form-msg {
  margin-top: 12px;
  color: var(--muted)
}

/* carousel */
.carousel {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
  padding: 18px;
  border-radius: 12px
}

.slide {
  display: none
}

.slide.active {
  display: block
}

.carousel-controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px
}

.carousel-controls button {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 8px;
  border-radius: 8px
}

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

.gitem img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .4s, var(--transition)
}

.gitem img:hover {
  transform: scale(1.06);
  filter: brightness(1.02)
}

/* pricing */
.pricing-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}

.price-card {
  background: var(--card-bg);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  flex: 1;
  min-width: 220px
}

.price-card.featured {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.12)
}

.price {
  font-size: 26px;
  font-weight: 800;
  color: var(--red)
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 18px
}

.contact-info p {
  margin: 6px 0
}

.map iframe {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  border: 0
}

/* extras */
.extras {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px
}

.faq details {
  background: var(--card-bg);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03)
}

.newsletter input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--white)
}

.newsletter form {
  display: flex;
  gap: 8px;
  align-items: center
}

/* footer */
.footer {
  background: var(--black);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03)
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px
}

.links a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 12px
}

.copyright {
  text-align: center;
  color: var(--muted);
  padding: 12px 0;
  font-size: 13px
}

/* floating whatsapp & chat */
#whatsapp {
  position: fixed;
  right: 20px;
  bottom: 92px;
  background: linear-gradient(180deg, var(--red), #b20000);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 34px rgba(255, 0, 0, 0.14);
  z-index: 80
}

.live-chat {
  position: fixed;
  right: 20px;
  bottom: 18px;
  z-index: 80
}

#chatToggle {
  background: #111;
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--white)
}

.chat-box {
  width: 300px;
  background: #0b0b0b;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden
}

.chat-head {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03)
}

.chat-body {
  padding: 10px;
  max-height: 200px;
  overflow: auto
}

.chat-form {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.03)
}

.chat-form input {
  min-width: 0;
  flex: 1;
  background: #050505;
  border: 0;
  color: var(--white);
  padding: 10px;
  outline: none
}

.chat-form button {
  background: var(--red);
  border: 0;
  color: var(--white);
  padding: 0 12px;
  font-weight: 700
}

/* responsive */
@media (max-width:980px) {
  .container {
    padding: 18px
  }

  .split {
    grid-template-columns: 1fr
  }

  .booking-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

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

  .nav-links {
    display: none;
    position: absolute;
    right: 12px;
    top: 64px;
    flex-direction: column;
    background: #070707;
    padding: 12px;
    border-radius: 8px
  }

  .nav-links.open {
    display: flex
  }

  #nav-toggle {
    display: block
  }

  .hero {
    height: 64vh;
    min-height: 480px
  }

  .gallery-grid .gitem img {
    height: 120px
  }
}

/* small */
@media (max-width:520px) {
  .hero {
    height: 60vh;
    min-height: 420px
  }

  .gallery-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .service-grid {
    grid-template-columns: 1fr
  }

  .booking-form .row {
    flex-direction: column
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column
  }

  .emergency-banner {
    left: 12px;
    right: 12px;
    transform: none;
    justify-content: space-between
  }

  .hero-stats {
    display: none
  }
}