/* THEME */
:root {
  --primary: #0a3d62;
  --secondary: #f1c40f;
  --accent: #4da8ff;
  --light: #f5faff;
  --dark: #1b1b1b;
}

/* GLOBAL */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

/* FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.2s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* WATER SPRAY BACKGROUND */
#waterSpray {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -3;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  background: var(--primary);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--secondary);
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 18px;
  font-weight: bold;
  font-size: 14px;
}
.nav-links a:hover { color: var(--secondary); }

/* HERO */
.hero {
  background: url('https://images.unsplash.com/photo-1581579188871-45ea61f2a0c8?auto=format&fit=crop&w=1400&q=80')
    center/cover no-repeat;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px #000;
}
.hero p {
  font-size: 20px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px #000;
}
.cta-btn {
  padding: 14px 28px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.2s;
}
.cta-btn:hover {
  background: #ffeaa7;
  transform: scale(1.05);
}

/* SECTIONS */
section {
  padding: 50px 20px;
}
.pitch, .about, .services, .booking, .why-us-section, .map-section {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
h2 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 25px;
}
.service-box {
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* WHY CHOOSE US */
.why-us-section {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 20px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.why-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.why-box h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 20px;
}

/* BOOKING FORM */
.booking form {
  max-width: 700px;
  margin: 0 auto;
  background: #f1f2f6;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: left;
}
.booking label {
  font-weight: bold;
  font-size: 14px;
}
.booking input,
.booking textarea,
.booking select {
  width: 100%;
  padding: 10px;
  margin: 8px 0 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}
.addon-group {
  margin: 10px 0 20px;
}
.addon-group label {
  display: block;
  font-weight: normal;
  margin-top: 4px;
}
.booking button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.booking button:hover {
  background: #06406f;
}

/* MAP */
.map-section .map-container {
  margin-top: 20px;
}

/* CONTACT */
.contact {
  background: var(--primary);
  color: #fff;
  text-align: center;
}
.contact a {
  color: var(--secondary);
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #022f4b;
  color: #fff;
  padding: 18px;
  text-align: center;
  font-size: 14px;
}

/* FLOATING CALL BUTTON */
.call-now {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--secondary);
  color: var(--primary);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
  z-index: 999;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .nav-links { display: none; }
}