:root {
  --black: #080808;
  --dark: #111;
  --card: #171717;
  --red: #d71920;
  --red2: #ff2932;
  --white: #fff;
  --muted: #c9c9c9;
  --line: rgba(255,255,255,.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
}
a { color: inherit; }

.logo {
  color: var(--red);
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  text-decoration: none;
}
.logo span { color: var(--white); }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  position: relative;
  z-index: 5;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}
.nav-links a:hover { color: var(--red2); }

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #111;
  color: white;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 24px;
}

.hero {
  min-height: 92vh;
  background:
    radial-gradient(circle at 80% 20%, rgba(215,25,32,.35), transparent 30%),
    linear-gradient(120deg, #050505, #171717 55%, #050505);
  border-bottom: 4px solid var(--red);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
  padding: 70px 7% 100px;
}

.tag, .small-title {
  display: inline-block;
  border: 1px solid var(--red);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--red2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: .95;
  margin: 22px 0;
  text-transform: uppercase;
}
h1 span { color: var(--red2); }

.intro {
  max-width: 680px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.buttons, .form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  border: 0;
  border-radius: 14px;
  padding: 15px 22px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
}
.primary { background: var(--red); color: white; }
.primary:hover { background: var(--red2); }
.secondary { background: transparent; color: white; border: 1px solid #555; }
.secondary:hover { border-color: var(--red2); color: var(--red2); }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 34px;
  max-width: 720px;
}
.trust-row div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.04);
}
.trust-row strong { display: block; font-size: 20px; color: white; }
.trust-row span { color: var(--muted); font-size: 14px; }

.hero-card, .contact-card, .service, .booking-form, .review, .gallery-card {
  background: rgba(23,23,23,.95);
  border: 1px solid rgba(215,25,32,.4);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
}
.hero-card h2 { margin-top: 0; text-transform: uppercase; }
.hero-card li { margin: 14px 0; color: var(--muted); font-weight: 700; }

.section { padding: 75px 7%; }
.section-heading { max-width: 820px; margin-bottom: 30px; }
.section h2 {
  font-size: clamp(34px, 4vw, 54px);
  text-transform: uppercase;
  margin: 14px 0;
}
.section-heading p, .booking-section > div > p {
  color: var(--muted);
  line-height: 1.6;
}

.services-grid, .gallery-grid, .review-grid {
  display: grid;
  gap: 22px;
}
.services-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.review-grid { grid-template-columns: repeat(3, 1fr); }

.service { transition: transform .2s, border-color .2s; }
.service:hover { transform: translateY(-6px); border-color: var(--red2); }
.icon { font-size: 42px; }
.service h3 { text-transform: uppercase; margin-bottom: 8px; }

.service p, .review p, .contact-card p {
  color: var(--muted);
  line-height: 1.6;
}

.banner {
  padding: 55px 7%;
  background: linear-gradient(90deg, #6d070b, var(--red), #6d070b);
  text-align: center;
  text-transform: uppercase;
}
.banner h2 { font-size: clamp(34px, 5vw, 72px); margin: 0; }
.banner p { margin-bottom: 0; font-weight: 900; }

.gallery-card {
  min-height: 190px;
  display: grid;
  place-items: end start;
  color: white;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(215,25,32,.3), rgba(0,0,0,.85)),
    repeating-linear-gradient(45deg, #181818, #181818 10px, #111 10px, #111 20px);
}
.review strong { color: var(--red2); }

.booking-section {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 34px;
  align-items: start;
}
.booking-form { display: grid; gap: 16px; }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #333;
  background: #090909;
  color: white;
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red2);
}

.status { color: #8df28d; font-weight: 800; min-height: 22px; }
.contact-card a { color: white; }

iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 18px;
  margin-top: 15px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: #25d366;
  color: white;
  text-decoration: none;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

footer {
  border-top: 1px solid #333;
  color: var(--muted);
  text-align: center;
  padding: 28px 7%;
}

@media (max-width: 950px) {
  .hero-content, .booking-section, .services-grid, .review-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .nav { align-items: flex-start; gap: 18px; flex-direction: column; }
  .menu-btn {
    display: block;
    position: absolute;
    right: 7%;
    top: 20px;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: #111;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
  }
  .nav-links.open { display: flex; }
  .hero-content { padding-top: 45px; }
  .buttons, .form-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .two-cols, .gallery-grid { grid-template-columns: 1fr; }
  .floating-whatsapp { left: 18px; right: 18px; text-align: center; }
}
