/* ===== M&M Pedal Boat Rental - Styles ===== */
/* Color Palette:
   Ocean Deep: #023e8a
   Ocean Blue: #0077b6
   Sky Blue: #90e0ef
   Aqua Light: #caf0f8
   Sand Warm: #f4a261
   Sand Light: #fef3e2
   Coral Accent: #e76f51
   White: #ffffff
   Dark Navy: #0a1628
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  line-height: 1.7;
  background: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header / Navbar ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff;
  transition: color 0.3s;
}

.header.scrolled .logo {
  color: #023e8a;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-img-header {
  height: 100px;
  width: 100px;
}

.footer-logo .logo-img {
  height: 32px;
  width: 32px;
}

.hero-break {
  display: none;
}

@media (min-width: 640px) {
  .hero-break {
    display: block;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
  position: relative;
}

.header.scrolled .nav-links a {
  color: #1a1a2e;
}

.nav-links a:hover {
  color: #f4a261;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f4a261;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, #f4a261, #e76f51);
  color: #ffffff !important;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 162, 97, 0.6);
  color: #ffffff !important;
}

.lang-switcher {
  display: flex;
  align-items: center;
}

.lang-switcher-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.flag-icon {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.lang-switcher-link:hover {
  background: linear-gradient(135deg, #f4a261, #e76f51);
  border-color: transparent;
  transform: translateY(-2px);
}

.header.scrolled .lang-switcher-link {
  background: rgba(2, 62, 138, 0.08);
  border-color: rgba(2, 62, 138, 0.15);
  color: #023e8a;
}

.header.scrolled .lang-switcher-link:hover {
  background: linear-gradient(135deg, #f4a261, #e76f51);
  border-color: transparent;
  color: #ffffff;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icon-btn svg {
  width: 17px;
  height: 17px;
}

.social-icon-btn:hover {
  background: linear-gradient(135deg, #f4a261, #e76f51);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 162, 97, 0.5);
}

.header.scrolled .social-icon-btn {
  background: rgba(2, 62, 138, 0.08);
  border-color: rgba(2, 62, 138, 0.15);
  color: #023e8a;
}

.header.scrolled .social-icon-btn:hover {
  background: linear-gradient(135deg, #f4a261, #e76f51);
  border-color: transparent;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .header-socials {
    display: none;
  }
}

@media (max-width: 480px) {
  .lang-switcher-link {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s;
}

.header.scrolled .mobile-toggle span {
  background: #023e8a;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 62, 138, 0.75) 0%,
    rgba(0, 119, 182, 0.55) 50%,
    rgba(10, 22, 40, 0.7) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  padding: 120px 24px 80px;
  max-width: 1100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
  background: linear-gradient(135deg, #f4a261, #ffd166);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  opacity: 0.92;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-info-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 22px;
  border-radius: 16px;
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-info-item .icon {
  font-size: 1.3rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f4a261, #e76f51);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(244, 162, 97, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(244, 162, 97, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Section Base ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(144, 224, 239, 0.15));
  color: #0077b6;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #0a1628;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #5a6578;
  font-size: 1.05rem;
}

/* ===== Location Section ===== */
.section-location {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-content h3 {
  font-size: 1.4rem;
  color: #023e8a;
  margin-bottom: 16px;
}

.location-content p {
  color: #4a5568;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.location-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.location-feature .feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(144, 224, 239, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.location-feature .feat-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 2px;
}

.location-feature .feat-text p {
  font-size: 0.9rem;
  color: #5a6578;
  margin-bottom: 0;
}

.location-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 119, 182, 0.15);
}

.location-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-image:hover img {
  transform: scale(1.03);
}

.location-image .image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #023e8a;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== Fleet Section ===== */
.section-fleet {
  background: #ffffff;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fleet-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 119, 182, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 119, 182, 0.15);
}

.fleet-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-card-image img {
  transform: scale(1.08);
}

.fleet-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #0077b6, #023e8a);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.fleet-card-body {
  padding: 28px;
}

.fleet-card-body h3 {
  font-size: 1.25rem;
  color: #0a1628;
  margin-bottom: 8px;
}

.fleet-card-body .capacity {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 119, 182, 0.08);
  color: #0077b6;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.fleet-card-body p {
  color: #5a6578;
  font-size: 0.92rem;
  line-height: 1.6;
}

.fleet-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.fleet-card-features span {
  background: #f0f9ff;
  color: #0077b6;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== Why Us Section ===== */
.section-why {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 119, 182, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 119, 182, 0.12);
  border-color: rgba(0, 119, 182, 0.15);
}

.why-card .card-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: transform 0.3s;
}

.why-card:hover .card-icon {
  transform: scale(1.1);
}

.why-card .card-icon.blue {
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.12), rgba(144, 224, 239, 0.2));
}

.why-card .card-icon.sand {
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.12), rgba(255, 209, 102, 0.2));
}

.why-card .card-icon.green {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(46, 213, 115, 0.2));
}

.why-card .card-icon.coral {
  background: linear-gradient(135deg, rgba(231, 111, 81, 0.12), rgba(255, 154, 139, 0.2));
}

.why-card .card-icon.purple {
  background: linear-gradient(135deg, rgba(123, 44, 191, 0.12), rgba(167, 119, 227, 0.2));
}

.why-card .card-icon.teal {
  background: linear-gradient(135deg, rgba(0, 148, 133, 0.12), rgba(38, 198, 218, 0.2));
}

.why-card h3 {
  font-size: 1.05rem;
  color: #0a1628;
  margin-bottom: 8px;
}

.why-card p {
  color: #5a6578;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== Reviews Section ===== */
.section-reviews {
  background: #f0f9ff;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 22px;
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.rating-score {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #0a1628;
}

.rating-stars {
  color: #f4a261;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.rating-count {
  font-size: 0.88rem;
  color: #5a6578;
  font-weight: 500;
}

.reviews-carousel {
  position: relative;
  margin-bottom: 40px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews-page {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 119, 182, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: #0077b6;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.25s ease;
}

.reviews-nav:hover {
  background: linear-gradient(135deg, #0077b6, #023e8a);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.reviews-nav-prev {
  left: -14px;
}

.reviews-nav-next {
  right: -14px;
}

.review-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 119, 182, 0.06);
  display: flex;
  flex-direction: column;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 119, 182, 0.12);
}

.review-stars {
  color: #f4a261;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  color: #4a5568;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 119, 182, 0.08);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0077b6, #023e8a);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-author-info h3 {
  font-size: 0.95rem;
  color: #0a1628;
  margin-bottom: 2px;
}

.review-meta {
  font-size: 0.78rem;
  color: #8a95a5;
}

.reviews-cta {
  text-align: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #ffffff;
  color: #0077b6;
  border: 2px solid #0077b6;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #0077b6;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== Safety Section ===== */
.section-safety {
  background: linear-gradient(135deg, #023e8a 0%, #0077b6 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-safety::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(144, 224, 239, 0.08);
}

.section-safety::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(244, 162, 97, 0.06);
}

.section-safety .section-header .label {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.section-safety .section-header h2 {
  color: #ffffff;
}

.section-safety .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.safety-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}

.safety-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.safety-item .safety-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.safety-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.safety-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ===== Pricing Section ===== */
.section-pricing {
  background: linear-gradient(180deg, #ffffff 0%, #fef3e2 50%, #ffffff 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(0, 119, 182, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0077b6, #90e0ef);
}

.pricing-card.featured {
  border-color: #0077b6;
  transform: scale(1.03);
}

.pricing-card.featured::before {
  height: 5px;
  background: linear-gradient(90deg, #f4a261, #e76f51);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 119, 182, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-popular {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, #f4a261, #e76f51);
  color: #ffffff;
  padding: 6px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.pricing-card .duration {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0077b6;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 4px;
}

.pricing-card .price span {
  font-size: 1.5rem;
  color: #5a6578;
  font-weight: 400;
}

.pricing-card .price-note {
  color: #5a6578;
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.pricing-includes {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #4a5568;
}

.pricing-includes li .check {
  color: #25d366;
  font-weight: 700;
  font-size: 1.1rem;
}

.payment-methods {
  text-align: center;
  margin-top: 16px;
}

.payment-methods p {
  font-size: 1rem;
  color: #5a6578;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.payment-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f0f9ff;
  padding: 8px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #0077b6;
  font-weight: 500;
}

/* ===== FAQ Section ===== */
.section-faq {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 119, 182, 0.1);
  border-radius: 16px;
  padding: 6px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item[open] {
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.1);
  border-color: rgba(0, 119, 182, 0.2);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: #0a1628;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  top: 14px;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 119, 182, 0.08);
  color: #0077b6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  transition: all 0.3s;
}

.faq-item[open] summary::after {
  content: '−';
  background: linear-gradient(135deg, #f4a261, #e76f51);
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-item p {
  color: #5a6578;
  font-size: 0.96rem;
  line-height: 1.7;
  padding-bottom: 22px;
}

/* ===== Map Section ===== */
.section-map {
  padding: 0;
  background: #f0f9ff;
}

.map-container {
  position: relative;
}

.map-info {
  position: absolute;
  top: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  z-index: 10;
  max-width: 360px;
}

.map-info h3 {
  font-size: 1.2rem;
  color: #023e8a;
  margin-bottom: 16px;
}

.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #4a5568;
}

.map-info-item .mi-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.map-iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* ===== Contact / CTA Section ===== */
.section-contact {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(2, 62, 138, 0.88) 50%, rgba(0, 119, 182, 0.85) 100%),
    url('images/pedal-boat-sunset.png') center/cover no-repeat;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(244, 162, 97, 0.08);
}

.section-contact .section-header .label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.section-contact .section-header h2 {
  color: #ffffff;
}

.section-contact .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.3s;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(5px);
}

.contact-item .ci-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item .ci-text h3 {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item .ci-text p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.contact-actions .big-cta {
  width: 100%;
  justify-content: center;
  padding: 20px 40px;
  font-size: 1.15rem;
}

/* ===== Footer ===== */
.footer {
  background: #070d1a;
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer p {
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f4a261;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== Wave Dividers ===== */
.wave-divider {
  line-height: 0;
  position: relative;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

.wave-divider.flip {
  transform: rotate(180deg);
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animation for grids */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.active > *:nth-child(7) { transition-delay: 0.65s; }

.reveal-stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Keyframes ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ===== Floating CTA for Mobile ===== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  gap: 10px;
  justify-content: center;
}

.floating-cta .btn {
  padding: 14px 24px;
  font-size: 0.95rem;
  flex: 1;
  justify-content: center;
}

/* ===== Floating WhatsApp Button (Desktop) ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 998;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 96px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 62, 138, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1000;
  }

  .nav-links.open a {
    color: #ffffff;
    font-size: 1.2rem;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .reviews-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-info {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .hero-content {
    padding: 100px 20px 70px;
  }

  .hero-info-bar {
    gap: 10px;
  }

  .hero-info-item {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .reviews-page {
    grid-template-columns: 1fr;
  }

  .reviews-nav-prev {
    left: 4px;
  }

  .reviews-nav-next {
    right: 4px;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .map-iframe {
    height: 350px;
  }

  .floating-cta {
    display: flex;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-actions .big-cta {
    padding: 16px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .pricing-card .price {
    font-size: 2.8rem;
  }

  body {
    padding-bottom: 80px;
  }
}
