:root {
  --deep-ocean: #062531;
  --high-tide: #00AAFF;
  --atlantic-shore: #0080C0;
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --text-dark: #1a2a3a;
  --text-light: #5a6a7a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo 2', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--deep-ocean);
}

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


h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  font-style: italic;
}

.bubbles-bg {
  display: none;
}

.bubble-stream {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stream-1 { left: 8%; }
.stream-2 { left: 25%; }
.stream-3 { left: 50%; }
.stream-4 { left: 75%; }
.stream-5 { left: 92%; }

.bubble {
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  animation: bubbleRise 8s ease-in-out infinite;
}

.bubble-stream .bubble:nth-child(1) { width: 12px; height: 12px; animation-delay: 0s; animation-duration: 7s; }
.bubble-stream .bubble:nth-child(2) { width: 18px; height: 18px; animation-delay: 1.2s; animation-duration: 8s; }
.bubble-stream .bubble:nth-child(3) { width: 10px; height: 10px; animation-delay: 2.5s; animation-duration: 6s; }
.bubble-stream .bubble:nth-child(4) { width: 15px; height: 15px; animation-delay: 0.8s; animation-duration: 9s; }
.bubble-stream .bubble:nth-child(5) { width: 8px; height: 8px; animation-delay: 3s; animation-duration: 7.5s; }
.bubble-stream .bubble:nth-child(6) { width: 14px; height: 14px; animation-delay: 1.8s; animation-duration: 8.5s; }

.stream-2 .bubble { animation-delay: 0.5s; }
.stream-3 .bubble { animation-delay: 1s; }
.stream-4 .bubble { animation-delay: 0.3s; }
.stream-5 .bubble { animation-delay: 1.5s; }

@keyframes bubbleRise {
  0% {
    transform: translateY(100vh) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  50% {
    transform: translateY(50vh) translateX(5px) scale(1);
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-50px) translateX(-5px) scale(1.1);
    opacity: 0;
  }
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--deep-ocean);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 55px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 5px;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: var(--high-tide);
}

.dropdown {
  position: relative;
}

.dropdown > .nav-link::after {
  content: " ▼";
  font-size: 10px;
  margin-left: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 1000;
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  color: var(--deep-ocean);
  text-decoration: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(0, 170, 255, 0.1);
  color: var(--atlantic-shore);
}

.btn-cta {
  background: var(--high-tide);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-apply {
  background: #FF6B35;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-apply:hover {
  background: #E85A2A;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-apply.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-cta:hover {
  background: var(--atlantic-shore);
  transform: translateY(-2px);
}

.btn-cta.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: 0.3s;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 14px;
}

.btn-primary {
  background: var(--white);
  color: var(--atlantic-shore);
  box-shadow: 0 4px 15px rgba(0, 128, 192, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 128, 192, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--deep-ocean);
}

.btn-secondary:hover {
  background: var(--light-gray);
}

.btn-outline {
  background: transparent;
  color: var(--deep-ocean);
  border: 2px solid var(--high-tide);
}

.btn-outline:hover {
  background: var(--high-tide);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--deep-ocean);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.6), 0 0 40px rgba(0, 170, 255, 0.3);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.8), 0 0 60px rgba(0, 170, 255, 0.5);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-text {
  color: var(--high-tide);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-text:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background: linear-gradient(90deg, rgba(6, 37, 49, 0.85) 0%, rgba(6, 37, 49, 0.5) 50%, rgba(6, 37, 49, 0.3) 100%),
              url('attached_assets/edited-20260130T223812_1769812714284.png');
  background-size: cover;
  background-position: 30% center;
  padding: 160px 60px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.membership-hero {
  background: linear-gradient(90deg, rgba(6, 37, 49, 0.85) 0%, rgba(6, 37, 49, 0.5) 50%, rgba(6, 37, 49, 0.3) 100%),
              url('images/membership-hero-driver.jpg');
  background-size: cover;
  background-position: center center;
}

.fundraising-hero {
  background: linear-gradient(90deg, rgba(6, 37, 49, 0.85) 0%, rgba(6, 37, 49, 0.5) 50%, rgba(6, 37, 49, 0.3) 100%),
              url('images/fundraising-hero-kids.png');
  background-size: cover;
  background-position: center center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  text-align: left;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  margin: 0;
  line-height: 1.05;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
  font-weight: 800;
}

.fun-hero {
  background: linear-gradient(180deg, var(--deep-ocean) 0%, var(--atlantic-shore) 50%, var(--high-tide) 100%);
  justify-content: center;
  text-align: center;
}

.fun-hero .hero-content {
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bubble {
  position: absolute;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
  border-radius: 50%;
  animation: bubble-float 8s ease-in-out infinite;
}

.hero-bubble:nth-child(1) { width: 20px; height: 20px; left: 10%; bottom: -20px; animation-delay: 0s; animation-duration: 7s; }
.hero-bubble:nth-child(2) { width: 35px; height: 35px; left: 25%; bottom: -35px; animation-delay: 1s; animation-duration: 9s; }
.hero-bubble:nth-child(3) { width: 15px; height: 15px; left: 40%; bottom: -15px; animation-delay: 2s; animation-duration: 6s; }
.hero-bubble:nth-child(4) { width: 25px; height: 25px; left: 55%; bottom: -25px; animation-delay: 0.5s; animation-duration: 8s; }
.hero-bubble:nth-child(5) { width: 40px; height: 40px; left: 70%; bottom: -40px; animation-delay: 1.5s; animation-duration: 10s; }
.hero-bubble:nth-child(6) { width: 18px; height: 18px; left: 85%; bottom: -18px; animation-delay: 2.5s; animation-duration: 7s; }
.hero-bubble:nth-child(7) { width: 30px; height: 30px; left: 15%; bottom: -30px; animation-delay: 3s; animation-duration: 9s; }
.hero-bubble:nth-child(8) { width: 22px; height: 22px; left: 60%; bottom: -22px; animation-delay: 3.5s; animation-duration: 8s; }

@keyframes bubble-float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-100vh) scale(0.8);
    opacity: 0;
  }
}

.swimming-sharks {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.swimming-shark {
  position: absolute;
  width: 120px;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 50"><path d="M5,25 Q15,15 30,20 L50,18 Q70,15 85,22 L95,25 L85,28 Q70,35 50,32 L30,30 Q15,35 5,25 Z M75,12 L85,5 L82,18 Z M50,18 L45,8 L55,15 Z" fill="rgba(255,255,255,0.15)"/></svg>') no-repeat center;
  background-size: contain;
  animation: shark-swim 20s linear infinite;
}

.swimming-shark.shark-1 { top: 20%; animation-duration: 18s; animation-delay: 0s; }
.swimming-shark.shark-2 { top: 50%; animation-duration: 25s; animation-delay: -8s; width: 80px; height: 40px; }
.swimming-shark.shark-3 { top: 75%; animation-duration: 22s; animation-delay: -15s; width: 100px; height: 50px; }

@keyframes shark-swim {
  0% {
    transform: translateX(-150px) scaleX(1);
  }
  100% {
    transform: translateX(calc(100vw + 150px)) scaleX(1);
  }
}

.hero-mascot {
  position: absolute;
  height: 280px;
  width: auto;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-mascot-right {
  right: 5%;
  bottom: 10%;
}

.hero-mascot-left {
  left: 5%;
  bottom: 10%;
}

.bounce-float {
  animation: bounce-float 3s ease-in-out infinite;
}

@keyframes bounce-float {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@media (max-width: 768px) {
  .hero-mascot {
    height: 150px;
    bottom: 5%;
  }
  .hero-mascot-right {
    right: 2%;
  }
  .hero-mascot-left {
    left: 2%;
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0;
  line-height: 1.6;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.hero-supporting {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin: 0 auto;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
  fill: var(--light-gray);
}

.steps-section {
  background: var(--white);
  padding: 80px 20px;
}

.steps-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.steps-wrapper h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--deep-ocean);
  margin-bottom: 20px;
  font-style: italic;
}

.steps-wrapper > p {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.steps-divider {
  height: 3px;
  background: var(--deep-ocean);
  margin: 40px 0;
}

.steps-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.step-box {
  text-align: center;
  background: var(--deep-ocean);
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.step-num {
  display: block;
  font-size: 3rem;
  font-weight: 300;
  color: var(--high-tide);
  margin-bottom: 10px;
  font-family: 'Exo 2', sans-serif;
}

.step-box h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.5px;
}

.step-box p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-box .highlight-text {
  color: #00C853;
}

@media (max-width: 768px) {
  .steps-boxes {
    grid-template-columns: 1fr;
  }
}


.problem {
  background: var(--light-gray);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.problem h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 40px;
  color: var(--deep-ocean);
}

.problem-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 25px;
}

.problem-content .highlight {
  font-size: 1.4rem;
  color: var(--deep-ocean);
  font-weight: 600;
}

.solution {
  background: var(--white);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

.solution h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 25px;
  color: var(--deep-ocean);
}

.solution-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.solution-text .stat {
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.1), rgba(0, 128, 192, 0.1));
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--high-tide);
}

.solution-text .stat strong {
  color: var(--high-tide);
  font-size: 1.3rem;
}

.amenities-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
}

.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
}

.check-bullet {
  width: 24px;
  height: 24px;
  background: var(--high-tide);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.solution-image img {
  max-width: 100%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

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

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.hero-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
}

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

.section-divider {
  position: relative;
  margin-top: -1px;
  line-height: 0;
  overflow: hidden;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.shark-swim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shark-shadow {
  position: absolute;
  width: 180px;
  height: 70px;
  opacity: 0;
  filter: blur(3px);
  animation: sharkSwim 20s ease-in-out infinite;
}

@keyframes sharkSwim {
  0% {
    left: -200px;
    top: 25%;
    opacity: 0;
    transform: scaleX(1) rotate(-5deg);
  }
  5% {
    opacity: 0.12;
  }
  45% {
    left: 110%;
    top: 35%;
    opacity: 0.12;
    transform: scaleX(1) rotate(5deg);
  }
  50% {
    left: 110%;
    opacity: 0;
    transform: scaleX(-1) rotate(-5deg);
  }
  55% {
    left: 110%;
    top: 55%;
    opacity: 0.1;
    transform: scaleX(-1) rotate(-5deg);
  }
  95% {
    left: -200px;
    top: 65%;
    opacity: 0.1;
    transform: scaleX(-1) rotate(5deg);
  }
  100% {
    left: -200px;
    opacity: 0;
    transform: scaleX(1) rotate(-5deg);
  }
}

.benefits {
  background: linear-gradient(180deg, #0288D1 0%, #0277BD 50%, #01579B 100%);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.benefits h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 60px;
  color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 170, 255, 0.2);
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--high-tide), var(--atlantic-shore));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.75);
}

.social-proof {
  background: var(--light-gray);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.social-proof h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 60px;
  color: var(--deep-ocean);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stars {
  color: #ffc107;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-card .author {
  color: var(--deep-ocean);
  font-weight: 600;
}

.services {
  background: linear-gradient(180deg, rgba(79, 195, 247, 0.75) 0%, rgba(41, 182, 246, 0.8) 50%, rgba(3, 169, 244, 0.85) 100%),
              url('attached_assets/edited-20260202T065137_1770015146813.png') center center;
  background-size: cover;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.services.services-fade-in {
  background: linear-gradient(180deg, 
    var(--white) 0%, 
    rgba(79, 195, 247, 0.3) 8%,
    rgba(79, 195, 247, 0.6) 15%,
    rgba(79, 195, 247, 0.75) 25%, 
    rgba(41, 182, 246, 0.8) 50%, 
    rgba(3, 169, 244, 0.85) 100%),
    url('attached_assets/edited-20260202T065137_1770015146813.png') center center;
  background-size: cover;
  padding-top: 120px;
}

.services.services-fade-in.location-services {
  background: linear-gradient(180deg, 
    var(--white) 0%, 
    rgba(79, 195, 247, 0.3) 8%,
    rgba(79, 195, 247, 0.6) 15%,
    rgba(79, 195, 247, 0.75) 25%, 
    rgba(41, 182, 246, 0.8) 50%, 
    rgba(3, 169, 244, 0.85) 100%),
    url('attached_assets/edited-20260202T065137_1770015146813.png') center center;
  background-size: cover;
  padding-top: 100px;
}

.services h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 15px;
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
}

.wash-menu {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wash-packages-gallery {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wash-package-item {
  width: 100%;
}

.wash-package-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wash-package-item img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .wash-packages-gallery {
    max-width: 100%;
    padding: 0 10px;
  }
  
  .wash-package-item img {
    border-radius: 8px;
  }
}

.wash-card {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 3px solid #c0d4e8;
}

.wash-card.wash-premium {
  background: linear-gradient(135deg, #e8d4f0 0%, #d8c8e8 100%);
  border-color: #b8a0d0;
}

.wash-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.wash-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.wash-icon.shark-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wash-icon.fin-icon {
  background: linear-gradient(135deg, #4a90c2 0%, #2a6090 100%);
  border-radius: 10px;
  position: relative;
  clip-path: polygon(20% 100%, 50% 20%, 80% 100%);
}

.wash-title {
  flex: 1;
}

.wash-title h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-ocean);
  margin: 0;
  text-transform: uppercase;
  font-style: italic;
}

.wash-tagline {
  font-size: 0.9rem;
  color: var(--deep-ocean);
  font-weight: 600;
}

.wash-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

.wash-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.price-monthly, .price-single {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.price-monthly .amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--deep-ocean);
}

.price-monthly sup {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep-ocean);
}

.price-monthly .period {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.price-single {
  background: var(--high-tide);
  color: white;
  border-radius: 20px;
  padding: 4px 12px;
}

.price-single .amount {
  font-size: 1.1rem;
  font-weight: 700;
}

.price-single .period {
  font-size: 0.65rem;
  text-transform: uppercase;
}

.wash-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-badge {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-badge.graphene {
  background: linear-gradient(135deg, #a8d8f0 0%, #88c8e8 100%);
  color: #1a4a6a;
  border: 2px solid #68a8c8;
}

.feature-badge.ceramic {
  background: linear-gradient(135deg, #4a7090 0%, #3a5a70 100%);
  color: white;
}

.feature-badge.hot-wax {
  background: linear-gradient(135deg, #ff8844 0%, #ff6622 100%);
  color: white;
}

.feature-badge.tire {
  background: linear-gradient(135deg, #00aaff 0%, #0088dd 100%);
  color: white;
}

.feature-badge.dry {
  background: linear-gradient(135deg, #ff66aa 0%, #dd4488 100%);
  color: white;
}

.feature-badge.polish {
  background: linear-gradient(135deg, #aa88ff 0%, #8866dd 100%);
  color: white;
}

.feature-badge.rain {
  background: linear-gradient(135deg, #44cc88 0%, #22aa66 100%);
  color: white;
}

.includes {
  font-weight: 600;
  color: var(--deep-ocean);
  font-size: 0.9rem;
}

.services-grid {
  display: none;
}

.service-card {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card.featured {
  background: linear-gradient(180deg, var(--deep-ocean) 0%, #0a3d4f 100%);
  transform: scale(1.05);
}

.service-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--high-tide);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--deep-ocean);
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--high-tide);
  margin-bottom: 25px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.service-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-light);
}

.service-card.featured li {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
}

.membership {
  background: linear-gradient(135deg, rgba(6, 37, 49, 0.75) 0%, rgba(0, 128, 192, 0.6) 100%),
              url('attached_assets/iStock-843884248_1770066343773.jpg') center center;
  background-size: 120%;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.membership-content {
  max-width: 550px;
  margin: 0;
  text-align: left;
}

.membership h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.membership .lead {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.membership-content > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.membership-benefits {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.membership-benefits h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  text-align: left;
}

.benefits-list li {
  color: var(--white);
  padding-left: 30px;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
}

.membership-ctas {
  display: inline-flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.membership-ctas .btn-text {
  color: var(--white);
}

.urgency {
  background: linear-gradient(180deg, rgba(2, 119, 189, 0.9) 0%, rgba(1, 87, 155, 0.9) 100%),
              url('attached_assets/edited-20260202T065137_1770015146813.png') center bottom;
  background-size: cover;
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.urgency h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 20px;
}

.urgency p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

.urgency .highlight {
  color: var(--high-tide);
  font-weight: 600;
  margin-bottom: 30px;
}

.final-cta {
  background: var(--deep-ocean);
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 15px;
}

.final-cta .choose-text {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
}

.cta-buttons .btn-outline {
  color: var(--deep-ocean);
  border-color: var(--deep-ocean);
}

.cta-buttons .btn-outline:hover {
  background: var(--deep-ocean);
  color: var(--white);
}

.final-cta .reassurance {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.why-choose {
  background: var(--light-gray);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

.section-eyebrow {
  color: var(--high-tide);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.why-choose h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--deep-ocean);
  margin-bottom: 20px;
  text-transform: none;
}

.why-choose-intro {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(0, 170, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--high-tide);
}

.why-feature-text h4 {
  font-size: 1.1rem;
  color: var(--deep-ocean);
  margin-bottom: 8px;
  text-transform: none;
}

.why-feature-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.why-choose-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quality-badge {
  background: var(--white);
  border-radius: 16px;
  padding: 25px 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quality-badge svg {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.quality-percent {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-ocean);
  line-height: 1;
}

.quality-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

.why-choose-car {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-choose-visual {
    order: -1;
  }
}

.locations {
  background: var(--white);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.locations h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 60px;
  color: var(--deep-ocean);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.location-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.location-card:hover {
  border-color: var(--high-tide);
}

.location-card h3 {
  font-size: 1.4rem;
  color: var(--deep-ocean);
  margin-bottom: 15px;
}

.location-card .address {
  color: var(--text-light);
  margin-bottom: 10px;
}

.location-card .phone {
  display: block;
  color: var(--high-tide);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 20px;
}

.location-card .phone:hover {
  text-decoration: underline;
}

.footer {
  background: var(--deep-ocean);
  padding: 50px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 50px;
}

.footer-nav {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--high-tide);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--high-tide);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
  .solution-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .solution-image {
    order: -1;
  }
  
  .solution-image img {
    max-width: 300px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--deep-ocean);
    flex-direction: column;
    padding: 20px;
    gap: 5px;
    border-top: 1px solid rgba(0, 170, 255, 0.2);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu .nav-link {
    padding: 12px 15px;
    display: block;
  }
  
  .dropdown > .nav-link::after {
    content: none;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    padding: 0;
    margin-top: 5px;
    border-radius: 8px;
  }
  
  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 30px;
  }
  
  .dropdown-menu a:hover {
    background: rgba(0, 170, 255, 0.15);
    color: var(--high-tide);
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--deep-ocean);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-top: 1px solid rgba(0, 170, 255, 0.2);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .service-card.featured {
    transform: none;
  }
  
  .service-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .bubble-stream:nth-child(even) {
    display: none;
  }
}

/* ============================================
   MEMBERSHIP PAGE STYLES (Super Duck Style)
   ============================================ */

.membership-hero {
  position: relative;
}

.key-benefits {
  background: var(--white);
  padding: 60px 0;
}

.key-benefits h3 {
  color: var(--deep-ocean);
}

.key-benefits p {
  color: rgba(6, 37, 49, 0.8);
}

.benefits-grid-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.benefit-icon-item {
  padding: 20px;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.benefit-icon-item h3 {
  color: var(--high-tide);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.benefit-icon-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.membership-tiers {
  background: #01579B;
  padding: 80px 0;
}

.membership-tiers h2 {
  color: var(--white);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 15px;
}

.tiers-intro {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 50px;
}

.tiers-comparison {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.tier-card {
  background: var(--white);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tier-card.tier-popular {
  border: 3px solid var(--high-tide);
  transform: scale(1.02);
}

.tier-card.tier-premium {
  border: 3px solid #FFD700;
  background: linear-gradient(135deg, #fff 0%, #fffef5 100%);
}

.popular-badge,
.premium-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popular-badge {
  background: var(--high-tide);
  color: var(--white);
}

.premium-badge {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--deep-ocean);
}

.tier-header {
  margin-bottom: 15px;
}

.tier-header h3 {
  color: var(--deep-ocean);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.tier-tagline {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
}

.tier-icon {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.tier-price {
  margin-bottom: 5px;
}

.tier-price .price-amount {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--deep-ocean);
}

.tier-price sup {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-ocean);
}

.tier-price .price-period {
  font-size: 0.9rem;
  color: var(--text-light);
}

.tier-single-price {
  color: var(--atlantic-shore);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.tier-features {
  list-style: none;
  text-align: left;
  flex: 1;
  margin-bottom: 20px;
  padding: 0 5px;
}

.tier-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-bottom: 1px solid #eee;
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--atlantic-shore);
  font-weight: bold;
}

.tier-features li.included {
  font-weight: 600;
  color: var(--atlantic-shore);
  font-style: italic;
}

.tier-features li.included::before {
  content: "▶";
  font-size: 0.7rem;
}

.tier-card .btn {
  margin-top: auto;
  font-size: 0.85rem;
  padding: 12px 15px;
}

.how-it-works {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.how-it-works h2 {
  color: var(--deep-ocean);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-item {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--deep-ocean);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 15px;
}

.step-item h3 {
  color: var(--deep-ocean);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.free-amenities-section {
  background: var(--deep-ocean);
  padding: 80px 0;
}

.free-amenities-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 30px;
}

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

.amenities-content {
  text-align: left;
}

.amenities-list-stacked {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-list-stacked li {
  color: var(--white);
  font-size: 1.1rem;
  padding: 12px 0;
  font-family: 'Exo 2', sans-serif;
}

.amenities-list-stacked li em {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.amenities-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.amenity-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.amenity-check {
  color: var(--high-tide);
  font-size: 1.5rem;
  font-weight: bold;
}

.amenity-item span:last-child {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

.amenity-item em {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}

.membership-final-cta {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}

.membership-final-cta h2 {
  color: var(--deep-ocean);
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.membership-final-cta > .container > p {
  color: rgba(6, 37, 49, 0.85);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.membership-final-cta .reassurance {
  color: rgba(6, 37, 49, 0.6);
  font-size: 0.95rem;
  margin-top: 20px;
}

.reassurance-points {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.reassurance-item {
  color: rgba(6, 37, 49, 0.85);
  font-size: 1rem;
  font-family: 'Exo 2', sans-serif;
}

@media (max-width: 1200px) {
  .tiers-comparison {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .benefits-grid-icons {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tiers-comparison {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .amenities-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .amenities-content {
    text-align: center;
  }
  
  .amenities-photo {
    order: -1;
  }
  
  .amenities-photo img {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .amenities-list-stacked li {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .benefits-grid-icons {
    grid-template-columns: 1fr;
  }
  
  .tiers-comparison {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .tier-card.tier-popular {
    transform: none;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .membership-tiers h2,
  .how-it-works h2,
  .free-amenities-section h2,
  .membership-final-cta h2 {
    font-size: 2rem;
  }
}

/* Keep old styles for backward compatibility */
.membership-freedom-list {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto 25px;
}

.membership-freedom-list li {
  color: var(--white);
  font-size: 1.2rem;
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-freedom-list li:last-child {
  border-bottom: none;
}

.membership-freedom-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--high-tide);
  font-weight: bold;
  font-size: 1.3rem;
}

.no-extra {
  color: var(--high-tide);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.benefits-included {
  background: #4FC3F7;
  padding: 80px 0;
  text-align: center;
}

.benefits-included h2 {
  color: var(--deep-ocean);
  font-size: 2.8rem;
  margin-bottom: 40px;
}

.benefits-included .benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.benefits-included .benefits-list li {
  background: var(--white);
  padding: 18px 25px;
  border-radius: 10px;
  font-size: 1.1rem;
  color: var(--deep-ocean);
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  position: relative;
  padding-left: 50px;
}

.benefits-included .benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  color: var(--atlantic-shore);
  font-weight: bold;
  font-size: 1.2rem;
}

.benefits-included .benefits-list li em {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
}

.membership-plans {
  background: var(--deep-ocean);
}

.membership-plans h2 {
  color: var(--white);
}

.membership-plans .plans-intro {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
}

.membership-plans .wash-card {
  display: flex;
  flex-direction: column;
}

.membership-plans .wash-card .btn {
  margin-top: auto;
  align-self: center;
}

.urgency-section {
  background: #062531;
  padding: 100px 0;
}

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

.urgency-photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.urgency-content {
  text-align: left;
}

.urgency-section h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.urgency-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  margin-bottom: 35px;
}

.footer {
  background: var(--deep-ocean);
  padding: 60px 0 0;
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.8fr 0.8fr 1fr;
  gap: 15px;
  padding-bottom: 40px;
}

.footer-hours {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-hours strong {
  color: var(--white);
}

.footer-col h4 {
  color: var(--high-tide);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: 'Rajdhani', sans-serif;
}

.footer-logo-col img {
  height: 200px;
  margin-bottom: 10px;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 8px;
  justify-content: center;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--high-tide);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-links li {
  margin-bottom: 12px;
}

.footer-nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Exo 2', sans-serif;
  transition: color 0.3s ease;
}

.footer-nav-links a:hover {
  color: var(--high-tide);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
  font-family: 'Exo 2', sans-serif;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--high-tide);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-nav-links {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .hero-driver-photos {
    flex-wrap: wrap;
  }
  
  .hero-driver-photos img {
    width: 45%;
    min-width: 200px;
  }
}

@media (max-width: 992px) {
  .why-membership-grid,
  .urgency-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .why-membership-content,
  .urgency-content {
    text-align: center;
  }
  
  .why-membership-photo,
  .urgency-photo {
    order: -1;
  }
  
  .why-membership-photo img,
  .urgency-photo img {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-driver-photos img {
    width: 100%;
    max-width: 320px;
  }
  
  .benefits-included .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .why-membership h2,
  .benefits-included h2,
  .urgency-section h2 {
    font-size: 2rem;
  }
  
  .unlimited-means {
    padding: 25px;
  }
}

/* ============================================
   LOCATION PAGE STYLES
   ============================================ */

.location-hero-simple {
  min-height: 420px;
  background: linear-gradient(135deg, #0077B6 0%, #00AAFF 50%, #48CAE4 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 60px 100px;
  overflow: hidden;
}

.location-hero-content {
  position: relative;
  z-index: 2;
}

.location-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.location-hero-content .location-street {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 10px 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-hero-shark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.25;
}

.location-hero-shark img {
  width: 220px;
  height: auto;
  filter: brightness(1.2);
}

.location-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
}

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

@media (max-width: 992px) {
  .location-hero-simple {
    padding: 100px 40px 60px;
    min-height: 220px;
  }
  
  .location-hero-content h1 {
    font-size: 3rem;
  }
  
  .location-hero-content .location-street {
    font-size: 1.25rem;
  }
  
  .location-hero-shark img {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .location-hero-simple {
    padding: 90px 20px 50px;
    min-height: 180px;
    justify-content: center;
    text-align: center;
  }
  
  .location-hero-content h1 {
    font-size: 2.25rem;
  }
  
  .location-hero-content .location-street {
    font-size: 1rem;
  }
  
  .location-hero-shark {
    opacity: 0.15;
    right: 50%;
    transform: translate(50%, -50%);
  }
  
  .location-hero-shark img {
    width: 200px;
  }
}

.location-hero .hero-ctas {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.location-details {
  background: var(--white);
  padding: 80px 0;
}

.location-details h2 {
  color: var(--deep-ocean);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
}

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

.location-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block h3 {
  color: var(--atlantic-shore);
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.info-block p {
  color: var(--deep-ocean);
  font-size: 1.1rem;
  line-height: 1.7;
}

.info-block a {
  color: var(--high-tide);
  text-decoration: none;
  font-weight: 600;
}

.info-block a:hover {
  text-decoration: underline;
}

.location-photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.location-photo {
  min-height: 350px;
}

.location-photo iframe {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.why-location {
  background: #01579B;
  padding: 80px 0;
}

.local-wash-elevated {
  background: #01579B;
  padding: 80px 0;
  text-align: center;
}

.local-wash-elevated h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 30px;
}

.local-wash-elevated p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

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

.why-location-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.why-location-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.why-location-photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.location-amenities {
  background: #4FC3F7;
  padding: 80px 0;
  text-align: center;
}

.location-amenities h2 {
  color: var(--deep-ocean);
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.solution .amenities-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.solution .amenities-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  text-transform: uppercase;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.amenities-list li em {
  font-weight: 400;
  text-transform: none;
  display: block;
  margin-top: 5px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.amenity-note {
  color: var(--deep-ocean);
  margin-top: 25px;
  font-size: 1rem;
}

.location-cta {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}

.location-cta h2 {
  color: var(--deep-ocean);
  font-size: 2.8rem;
  margin-bottom: 25px;
}

.location-cta p {
  color: rgba(6, 37, 49, 0.85);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 15px;
  line-height: 1.7;
}

.location-cta p:last-of-type {
  margin-bottom: 35px;
}

/* ============================================
   FUNDRAISING PAGE STYLES
   ============================================ */

.fundraising-hero {
  position: relative;
}

.fundraising-how-it-works {
  background: var(--deep-ocean);
  padding: 80px 0;
  text-align: center;
}

.fundraising-how-it-works h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.fundraising-how-it-works .section-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

.fundraising-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.fundraising-step {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--high-tide);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.fundraising-step h3 {
  color: var(--high-tide);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.fundraising-step p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
}

.fundraising-step strong {
  color: var(--high-tide);
}

.fundraising-highlight {
  background: linear-gradient(135deg, var(--high-tide), var(--atlantic-shore));
  border-radius: 16px;
  padding: 30px 40px;
  display: inline-block;
}

.fundraising-apply-form {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.fundraising-apply-form h2 {
  color: var(--deep-ocean);
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.highlight-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.highlight-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
}

.highlight-text {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  text-align: left;
  max-width: 250px;
}

.fundraising-why {
  background: #01579B;
  padding: 80px 0;
}

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

.why-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.why-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.why-benefits {
  list-style: none;
  margin-top: 30px;
}

.why-benefits li {
  color: var(--white);
  font-size: 1.1rem;
  padding: 10px 0;
  padding-left: 35px;
  position: relative;
}

.why-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--high-tide);
  font-weight: bold;
  font-size: 1.2rem;
}

.benefit-cards-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.benefit-mini-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 10px;
}

.benefit-mini-card span:last-child {
  color: var(--deep-ocean);
  font-weight: 600;
  font-size: 0.95rem;
}

.fundraising-eligible {
  background: #4FC3F7;
  padding: 80px 0;
  text-align: center;
}

.fundraising-eligible h2 {
  color: var(--deep-ocean);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.eligible-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.eligible-item {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.eligible-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}

.eligible-item h3 {
  color: var(--deep-ocean);
  font-size: 1rem;
  font-weight: 600;
}

.fundraising-cta {
  background: var(--deep-ocean);
  padding: 100px 0;
  text-align: center;
}

.fundraising-cta h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.fundraising-cta > .container > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 550px;
  margin: 0 auto 30px;
}

.fundraising-cta .cta-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .fundraising-steps {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 50px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefit-cards-stack {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .eligible-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .highlight-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .highlight-text {
    text-align: center;
  }
  
  .eligible-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fundraising-how-it-works h2,
  .fundraising-eligible h2,
  .fundraising-cta h2 {
    font-size: 2rem;
  }
  
  .why-content h2 {
    font-size: 2rem;
  }
}

.location-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .location-details-grid,
  .why-location-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .location-photo,
  .why-location-photo {
    order: -1;
  }
  
  .location-photo img,
  .why-location-photo img {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .location-info {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .amenities-list {
    grid-template-columns: 1fr;
  }
  
  .location-details h2,
  .why-location-content h2,
  .location-amenities h2,
  .location-cta h2 {
    font-size: 2rem;
  }
  
  .location-hero .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--deep-ocean) 0%, #01579B 50%, var(--atlantic-shore) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  justify-content: center;
}

.contact-hero .hero-content {
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero .shark-bg {
  position: absolute;
  background-image: url('attached_assets/Mako_Express_Wash_-_Icon_1769805865829.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.contact-hero .shark-bg-1 {
  right: 5%;
  top: 15%;
  width: 280px;
  height: 280px;
  opacity: 0.35;
  animation: sharkBounce1 4s ease-in-out infinite;
}

.contact-hero .shark-bg-2 {
  left: 5%;
  top: 50%;
  width: 220px;
  height: 220px;
  opacity: 0.3;
  animation: sharkBounce2 5s ease-in-out infinite;
  transform: scaleX(-1);
}

.contact-hero .shark-bg-3 {
  right: 12%;
  bottom: 10%;
  width: 180px;
  height: 180px;
  opacity: 0.25;
  animation: sharkBounce3 3.5s ease-in-out infinite;
}

@keyframes sharkBounce1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes sharkBounce2 {
  0%, 100% {
    transform: scaleX(-1) translateY(0) rotate(0deg);
  }
  50% {
    transform: scaleX(-1) translateY(-15px) rotate(-5deg);
  }
}

@keyframes sharkBounce3 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(8deg);
  }
}

.contact-options {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.contact-options h2 {
  color: var(--deep-ocean);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-social a {
  color: var(--high-tide);
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-social a:hover {
  color: var(--deep-ocean);
  transform: scale(1.1);
}

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

.options-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

.option-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.option-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.option-card h3 {
  color: var(--deep-ocean);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.option-card p {
  color: #555;
  font-size: 1rem;
}

.contact-locations {
  background: #01579B;
  padding: 80px 0;
  text-align: center;
}

.contact-locations h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.locations-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.location-contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-contact-card h3 {
  color: var(--deep-ocean);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.location-contact-card .address {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.location-contact-card .phone {
  margin-bottom: 20px;
}

.location-contact-card .phone a {
  color: var(--atlantic-shore);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

.location-contact-card .phone a:hover {
  color: var(--high-tide);
}

.contact-form-section {
  background: var(--deep-ocean);
  padding: 80px 0;
  text-align: center;
}

.contact-form-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.form-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--high-tide);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--deep-ocean);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  display: block;
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .options-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .locations-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .locations-contact-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-options h2,
  .contact-locations h2,
  .contact-form-section h2 {
    font-size: 2rem;
  }
}

/* ============================================
   CAREERS PAGE STYLES
   ============================================ */

.careers-hero {
  min-height: 70vh;
  background: linear-gradient(135deg, var(--deep-ocean) 0%, #0a3d54 50%, var(--atlantic-shore) 100%);
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  display: none;
}

.careers-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
}

.careers-hero-shark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: auto;
  animation: sharkBounce 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes sharkBounce {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-60%) translateX(-10px);
  }
}

.careers-why {
  background: var(--white);
  padding: 80px 0;
}

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

.careers-why-content h2 {
  color: var(--deep-ocean);
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.careers-why-content p {
  color: #333;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.careers-why-visual {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.value-card {
  background: linear-gradient(135deg, var(--deep-ocean), var(--atlantic-shore));
  border-radius: 12px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.value-icon {
  font-size: 2rem;
}

.value-card span:last-child {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
}

.careers-benefits {
  background: #01579B;
  padding: 80px 0;
  text-align: center;
}

.careers-benefits h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.benefit-card-item {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-card-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.benefit-card-item h3 {
  color: var(--deep-ocean);
  font-size: 1rem;
  font-weight: 600;
}

.careers-fit {
  background: #4FC3F7;
  padding: 80px 0;
  text-align: center;
}

.careers-fit h2 {
  color: var(--deep-ocean);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.fit-intro {
  color: var(--deep-ocean);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.fit-traits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.trait-item {
  background: var(--white);
  border-radius: 12px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.trait-check {
  color: var(--atlantic-shore);
  font-size: 1.5rem;
  font-weight: bold;
}

.trait-item span:last-child {
  color: var(--deep-ocean);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.careers-apply-form {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.careers-apply-form h2 {
  color: var(--deep-ocean);
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.careers-cta {
  background: var(--deep-ocean);
  padding: 100px 0;
  text-align: center;
}

.careers-cta h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.careers-cta > .container > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 550px;
  margin: 0 auto 30px;
}

.careers-cta .cta-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .benefits-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .careers-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefits-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fit-traits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-cards {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .fit-traits {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .careers-why-content h2,
  .careers-benefits h2,
  .careers-fit h2,
  .careers-cta h2 {
    font-size: 2rem;
  }
  
  .careers-hero-shark {
    width: 200px;
    right: 2%;
    opacity: 0.3;
  }
}

/* ============================================
   FREE WASH PAGE STYLES
   ============================================ */

.free-wash-section {
  background: var(--white);
  padding: 120px 0 80px;
  min-height: 100vh;
}

.free-wash-section .container {
  max-width: 900px;
}

/* ============================================
   LEGAL PAGE STYLES
   ============================================ */

.legal-page {
  background: var(--white);
  padding: 140px 0 80px;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  color: var(--deep-ocean);
  font-size: 2.5rem;
  margin-bottom: 30px;
  margin-top: 40px;
}

.legal-page h1:first-child {
  margin-top: 0;
}

.legal-page h2 {
  color: var(--deep-ocean);
  font-size: 1.5rem;
  margin-top: 35px;
  margin-bottom: 15px;
}

.legal-page p {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  font-family: 'Exo 2', sans-serif;
}

.legal-page ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.legal-page ul li {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 8px;
  font-family: 'Exo 2', sans-serif;
}

/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */

.thank-you-section {
  background: linear-gradient(135deg, var(--deep-ocean) 0%, #0a3d54 50%, var(--atlantic-shore) 100%);
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-content h1 {
  color: var(--high-tide);
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.thank-you-subtitle {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: 'Exo 2', sans-serif;
}

.thank-you-message {
  color: var(--high-tide);
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
}

.thank-you-instructions {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 40px;
  margin-bottom: 40px;
}

.thank-you-instructions p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: 'Exo 2', sans-serif;
  margin: 0;
}

@media (max-width: 768px) {
  .thank-you-content h1 {
    font-size: 2.5rem;
  }
  
  .thank-you-subtitle {
    font-size: 1.2rem;
  }
  
  .thank-you-instructions {
    padding: 20px 25px;
  }
}

/* ============================================
   ENHANCED RESPONSIVE STYLES - TABLET & PHONE
   ============================================ */

/* Tablet (768px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
  .container {
    padding: 0 30px;
  }
  
  h1 {
    font-size: 2.5rem !important;
  }
  
  h2 {
    font-size: 2rem !important;
  }
  
  .hero-content h1 {
    font-size: clamp(2rem, 5vw, 2.8rem) !important;
  }
  
  .hero-subtitle {
    font-size: 1.1rem !important;
    white-space: normal !important;
  }
  
  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .locations-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phone (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 2rem !important;
  }
  
  h2 {
    font-size: 1.6rem !important;
  }
  
  h3 {
    font-size: 1.2rem !important;
  }
  
  .hero {
    min-height: 70vh;
    padding: 100px 15px 80px;
  }
  
  .hero-content h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    white-space: normal !important;
    padding: 0 10px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
  
  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  section {
    padding: 50px 0;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .options-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .locations-contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .location-contact-card {
    padding: 25px 20px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefits-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .benefit-icon-item {
    padding: 20px 15px;
  }
  
  .benefit-icon-item span {
    font-size: 2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--deep-ocean);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-menu .nav-link {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    font-size: 1rem;
  }
  
  .nav-item.dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .nav-item.dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 10px 0;
  }
  
  .dropdown-menu a {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .header .btn-cta {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .footer-logo-col {
    order: -1;
  }
  
  .footer-nav-links {
    text-align: center;
  }
  
  .footer-hours {
    text-align: center;
  }
  
  .contact-social {
    gap: 20px;
  }
  
  .contact-social a svg {
    width: 24px;
    height: 24px;
  }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
    padding: 90px 10px 60px;
  }
  
  .hero-content h1 {
    font-size: 1.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.9rem !important;
  }
  
  .benefits-icons {
    grid-template-columns: 1fr;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .membership-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .option-card {
    padding: 25px 15px;
  }
  
  .option-icon {
    font-size: 2rem;
  }
}

/* ============================================
   FAQ SECTION STYLES
   ============================================ */

.faq-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  color: var(--deep-ocean);
  margin-bottom: 50px;
  font-style: italic;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category h3 {
  color: var(--high-tide);
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--high-tide);
  font-style: italic;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--deep-ocean);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 170, 255, 0.05);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--high-tide);
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 15px;
  }
  
  .faq-category h3 {
    font-size: 1.1rem;
  }
}