:root{
  --bg:#0b0b0b;
  --bg2:#121212;
  --panel:#1a1a1a;
  --text:#f5f5f5;
  --muted:#c6c6c6;
  --red:#d61f26;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.top-bar {
  width: 100%;
  background: #035896; /* your brand blue */
  color: white;
  text-align: center;
  font-size: 14px;
  padding: 8px 10px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.top-bar a {
  color: #7fd8ff;
  font-weight: 600;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

.navbar {
  position: sticky;
  top: 30px;
  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 40px;

  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo img {
  height: 110px;
  width: auto;
  display: block;
  background: transparent;
  margin-bottom: -10px; /* adjust until it looks balanced */
}

.book-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}

.map-link:hover {
  transform: scale(1.1);
  background: rgba(213, 208, 208, 0.08);
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}

.book-btn,
.main-btn,
.secondary-btn {
  text-decoration: none;
  border-radius: 28px;
  padding: 12px 22px;
  font-weight: 700;
  display: inline-block;
}

.book-btn,
.main-btn {
  background: var(--red);
  color: #fff;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 82vh;
  object-fit: cover;
  display: block;
  filter: brightness(42%);
}

.hero-text {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #d4d4d4;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.hero-text p {
  max-width: 760px;
  font-size: clamp(16px, 2vw, 22px);
  margin: 0 0 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.section {
  padding: 72px 24px;
}

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

.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0;
}


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

  padding: 24px;
  background: var(--bg2);
}

.trust-item {
  background: #111;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.trust-item h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
}


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

  max-width: 1180px;
  margin: 0 auto;
}

.service-card,
.review {
  background: var(--panel);
  padding: 26px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card:nth-child(4) {
  grid-column: auto;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.story-content strong {
  color: #fff;
}

.story .tagline {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}

.dark-panel {
  background: var(--bg2);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;

  max-width: 1180px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;

  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}


.review span {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 20px;
}


.contact {
  text-align: center;
}

.center {
  justify-content: center;
}


footer {
  padding: 28px;
  text-align: center;
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer img {
  height: 70px;
  width: auto;
  display: block;
  margin: 0 auto 10px;
}

@media (max-width: 900px) {
  .navbar {
    padding: 10px 18px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust,
  .service-grid,
  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 260px;
  }

  .logo img {
    height: 70px;
  }
}