* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #083b7b;
  --blue-dark: #002240;
  --gold: #ffcc00;
  --text: #333;
  --bg: #f2f5f8;
  --card: #fff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  background: var(--blue);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.85rem;
}

nav a {
  color: #fff;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: background 0.25s ease, color 0.25s ease;
}

nav a:hover,
nav a.active {
  background: var(--gold);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  text-align: center;
  padding: 6rem 1.5rem;
  color: #fff;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  display: grid;
  gap: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1.5rem, 3.2rem);
  margin-bottom: 1rem;
  animation: fadeInDown 0.9s ease;
}

.hero p {
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.3rem);
  margin-bottom: 1.6rem;
  animation: fadeInUp 0.9s ease;
}

.hero-controls {
  display: none;
}

.hero-arrow {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: translateY(-1px);
}

.hero-dots {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--blue);
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.25s ease;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 4rem 1.5rem;
}

.page-header {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #e8f5fd;
}

.page-header h1 {
  font-size: clamp(2rem, 1vw + 1.6rem, 2.5rem);
  color: var(--blue);
}

.services,
.content,
.contact-section,
.booking-form,
.services-list {
  max-width: 1100px;
  margin: 0 auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 3fr));
  gap: 1.5rem;
  text-align: center;
}

.services h2 {
  grid-column: 1 / -1;
  color: var(--blue);
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.services .service-box {
  background: var(--card);
  padding: 1.8rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.services .service-box h3 {
  margin-bottom: 0.8rem;
  color: var(--blue);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.service-box {
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.service-box h3 {
  margin-bottom: 0.9rem;
  color: var(--blue);
}

.service-box p {
  font-size: 0.98rem;
}

.icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  color: var(--gold);
}

.content {
  background: var(--card);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 1.1rem;
  font-size: 1.05rem;
}

.contact-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  align-items: start;
}

.contact-details,
.contact-form {
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-details h2 {
  color: var(--blue);
  margin-bottom: 0.8rem;
}

.contact-details p {
  margin: 0.35rem 0;
  font-size: 1rem;
}

.contact-details i {
  margin-right: 0.35rem;
  color: var(--gold);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 1.4rem;
  color: var(--blue);
}

.contact-form form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 59, 123, 0.15);
}

.contact-form button,
.booking-form button {
  background: var(--blue);
  color: #fff;
  padding: 0.95rem;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form button:hover,
.booking-form button:hover {
  background: #003366;
  transform: translateY(-2px);
}

.booking-form {
  background: var(--card);
  padding: 2.4rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.booking-form h2 {
  text-align: center;
  margin-bottom: 1.6rem;
  color: var(--blue);
}

footer {
  background: var(--blue-dark);
  color: #cbd5e1;
  text-align: center;
  padding: 1.6rem;
  margin-top: auto;
}

footer p {
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem 1.4rem;
}

.social-icons a {
  color: #cbd5e1;
  margin: 0 0.35rem;
  font-size: 1.2rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.fade-in {
  animation: fadeInUp 0.9s ease;
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
  }

  nav {
    width: 100%;
    position: relative;
  }

  nav ul {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    background: var(--blue);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  body.nav-open nav ul {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  header {
    padding: 0.9rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hero {
    padding: 5rem 1.2rem;
    min-height: 70vh;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .services,
  .services-list,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-details,
  .contact-form,
  .booking-form,
  .content {
    padding: 1.6rem;
  }

  nav ul {
    right: 0.5rem;
  }
}