/* ========================================
   MW Pressure Washing - Main Stylesheet
   Water-Themed / Mobile-first responsive
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2440;
  --accent: #00a8e8;
  --accent-light: #33c1f5;
  --water-light: #e0f4fd;
  --water-mid: #b3e5fc;
  --cta: #ff6b35;
  --cta-hover: #e55a25;
  --white: #ffffff;
  --light-gray: #f0f8ff;
  --mid-gray: #e0e0e0;
  --dark-gray: #6b7280;
  --charcoal: #2d2d2d;
  --shadow: 0 2px 12px rgba(0, 40, 80, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 40, 80, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--cta);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }

/* --- Water Animations --- */
@keyframes drip {
  0% { transform: scaleY(0); opacity: 0; }
  10% { transform: scaleY(1); opacity: 1; }
  80% { transform: scaleY(1) translateY(0); opacity: 1; }
  100% { transform: scaleY(1.5) translateY(20px); opacity: 0; }
}

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

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

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes bubble {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { opacity: 0.3; }
  100% { transform: translateY(-120px) scale(0.3); opacity: 0; }
}

@keyframes dropfall {
  0% { transform: translateY(-30px); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 100%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
  position: relative;
}

.section-alt {
  background: var(--light-gray);
}

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

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--dark-gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s;
}

.btn:active::after {
  width: 200px;
  height: 200px;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cta), #ff8a5c);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
}

.btn-secondary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 232, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

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

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

/* --- Wave Divider SVGs --- */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

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

.wave-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  transform: rotate(180deg);
}

.wave-divider-top svg {
  display: block;
  width: 100%;
  height: 50px;
}

/* --- Water Drops Decoration --- */
.water-drops {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.water-drop {
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, transparent, rgba(0, 168, 232, 0.4), rgba(0, 168, 232, 0.1));
  border-radius: 0 0 50% 50%;
  animation: dropfall linear infinite;
}

.water-drop:nth-child(1) { left: 10%; height: 30px; animation-duration: 4s; animation-delay: 0s; }
.water-drop:nth-child(2) { left: 25%; height: 20px; animation-duration: 3.5s; animation-delay: 1s; }
.water-drop:nth-child(3) { left: 40%; height: 25px; animation-duration: 5s; animation-delay: 0.5s; }
.water-drop:nth-child(4) { left: 55%; height: 18px; animation-duration: 4.5s; animation-delay: 2s; }
.water-drop:nth-child(5) { left: 70%; height: 22px; animation-duration: 3.8s; animation-delay: 1.5s; }
.water-drop:nth-child(6) { left: 85%; height: 28px; animation-duration: 4.2s; animation-delay: 0.8s; }
.water-drop:nth-child(7) { left: 15%; height: 15px; animation-duration: 3.2s; animation-delay: 2.5s; }
.water-drop:nth-child(8) { left: 60%; height: 35px; animation-duration: 5.5s; animation-delay: 0.3s; }

/* --- Bubble Decorations --- */
.bubbles {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: bubble ease-in infinite;
}

.bubble:nth-child(1) { left: 10%; width: 20px; height: 20px; animation-duration: 6s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 30%; width: 12px; height: 12px; animation-duration: 5s; animation-delay: 1s; }
.bubble:nth-child(3) { left: 50%; width: 16px; height: 16px; animation-duration: 7s; animation-delay: 2s; }
.bubble:nth-child(4) { left: 70%; width: 10px; height: 10px; animation-duration: 4s; animation-delay: 0.5s; }
.bubble:nth-child(5) { left: 85%; width: 14px; height: 14px; animation-duration: 5.5s; animation-delay: 3s; }
.bubble:nth-child(6) { left: 20%; width: 8px; height: 8px; animation-duration: 4.5s; animation-delay: 1.5s; }

/* --- Drip Effect on Cards --- */
.drip-top {
  position: relative;
}

.drip-top::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20%;
  width: 6px;
  height: 16px;
  background: var(--accent);
  border-radius: 0 0 50% 50%;
  opacity: 0.5;
  animation: drip 3s ease-in-out infinite;
}

.drip-top::after {
  content: '';
  position: absolute;
  top: -8px;
  right: 30%;
  width: 4px;
  height: 12px;
  background: var(--accent);
  border-radius: 0 0 50% 50%;
  opacity: 0.4;
  animation: drip 3s ease-in-out 1.5s infinite;
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 40, 80, 0.08);
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)), linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  z-index: 1001;
  flex-shrink: 0;
  transform: translateY(40px);
}

.logo span {
  display: none;
}

.logo:hover {
  color: var(--primary);
}

.logo-icon {
  display: none;
}

.logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 40, 80, 0.2));
  margin: 6px 0;
}

.nav-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px;
  flex-direction: column;
  gap: 0;
}

.nav-menu.active {
  display: flex;
}

.nav-left > a,
.nav-right > a:not(.btn),
.nav-left > .nav-dropdown > .nav-dropdown-toggle {
  display: block;
  padding: 12px 16px;
  color: var(--charcoal);
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.nav-left > a:hover,
.nav-left > a.active,
.nav-right > a:not(.btn):hover,
.nav-right > a:not(.btn).active,
.nav-left > .nav-dropdown > .nav-dropdown-toggle:hover,
.nav-left > .nav-dropdown.active > .nav-dropdown-toggle {
  color: var(--accent);
  background: var(--water-light);
}

/* Nav groups - stacked on mobile, side-by-side on desktop */
.nav-left,
.nav-right {
  display: contents;
}

/* --- Dropdown Navigation --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
  margin-top: -3px;
}

.nav-dropdown.open > .nav-dropdown-toggle::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

/* Mobile dropdown panel */
.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  padding: 4px 0 4px 16px;
  gap: 0;
}

.nav-dropdown.open > .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: var(--charcoal);
  font-weight: 400;
  font-size: 0.92rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--accent);
  background: var(--water-light);
}

.nav-right > .btn {
  width: 100%;
  padding: 12px 24px;
  font-size: 0.9rem;
  margin-top: 8px;
}

.nav-right > .btn-phone {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 58, 92, 0.3);
}

.nav-right > .btn-phone:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 58, 92, 0.5);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: linear-gradient(165deg, #0f2440, #1a3a5c, #1e4d6e, #1a3a5c, #0f2440);
  background-size: 300% 300%;
  animation: heroGradient 20s ease infinite;
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 130px 0 100px;
  background: linear-gradient(165deg, #0f2440, #1a3a5c, #1e4d6e, #1a3a5c, #0f2440);
  background-size: 300% 300%;
  animation: heroGradient 20s ease infinite;
  color: var(--white);
  overflow: hidden;
}


.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--accent-light);
  text-shadow: 0 0 20px rgba(0, 168, 232, 0.4);
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  text-shadow: 0 0 15px rgba(0, 168, 232, 0.3);
}

.hero-stat .label {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 130px 0 80px;
  background: linear-gradient(165deg, #0f2440, #1a3a5c, #1e4d6e, #1a3a5c, #0f2440);
  background-size: 300% 300%;
  animation: heroGradient 20s ease infinite;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 3;
}

.page-hero p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.breadcrumb {
  margin-bottom: 16px;
  font-size: 0.9rem;
  opacity: 0.7;
  position: relative;
  z-index: 3;
}

.breadcrumb a {
  color: var(--white);
}

.breadcrumb a:hover {
  color: var(--accent-light);
}

/* --- Services Preview Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 168, 232, 0.15);
}

.service-card-img {
  width: 100%;
  height: 160px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--water-light), var(--water-mid));
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-icon::after {
  opacity: 1;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-card .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* --- Services Detail (services page) --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.service-detail-img {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.service-detail-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 30px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    rgba(255,255,255,0.1) 25%,
    transparent 50%
  );
  animation: wave 4s linear infinite;
}

.service-detail-content h2 {
  margin-bottom: 12px;
}

.service-detail-content p {
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.service-detail-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-detail-content ul li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  color: var(--dark-gray);
}

.service-detail-content ul li::before {
  content: '💧';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.service-item:nth-child(even) .service-detail {
  direction: ltr;
}

.service-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--water-light);
}

.service-item:last-child {
  border-bottom: none;
}

/* --- Why Choose Us --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--water-light), var(--water-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  position: relative;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  border-bottom: 3px solid var(--water-mid);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 168, 232, 0.3);
}

.testimonial-name {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--dark-gray);
}

.stars {
  color: #f4b740;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/* --- Service Areas --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.area-tag {
  background: var(--white);
  padding: 12px 16px;
  border-radius: 50px;
  text-align: center;
  font-weight: 500;
  color: var(--primary);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
}

.area-tag:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
}

.area-tag.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(26, 58, 92, 0.3);
}

/* Service Areas Detail Cards */
.area-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.area-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: all var(--transition);
}

.area-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.area-detail-card.featured {
  border-left-color: var(--cta);
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.04), rgba(26, 58, 92, 0.02));
}

.area-detail-card h3 {
  margin-bottom: 8px;
}

.area-detail-card h3 a {
  color: var(--primary);
  transition: color var(--transition);
}

.area-detail-card h3 a:hover {
  color: var(--accent);
}

.area-detail-card p {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.map-placeholder {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), #0d5e8a, var(--accent));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  text-align: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.map-placeholder .map-icon {
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(165deg, #0f2440, #1a3a5c, #1e4d6e, #1a3a5c, #0f2440);
  background-size: 300% 300%;
  animation: heroGradient 20s ease infinite;
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .container {
  position: relative;
  z-index: 3;
}

.cta-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 168, 232, 0.3);
}

.cta-phone:hover {
  color: var(--white);
}

/* --- Gallery --- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--water-mid);
  background: var(--white);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  color: var(--dark-gray);
  transition: all var(--transition);
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 168, 232, 0.3);
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 168, 232, 0.15);
}

.gallery-img {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-img .before-label,
.gallery-img .after-label {
  position: absolute;
  top: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-img .before-label {
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
}

.gallery-img .after-label {
  right: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
}

.gallery-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
}

.gallery-img-placeholder .before-half,
.gallery-img-placeholder .after-half {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
}

.gallery-info {
  padding: 16px;
  background: var(--white);
}

.gallery-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.gallery-info p {
  color: var(--dark-gray);
  font-size: 0.85rem;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 15, 30, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 800px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-img {
  width: 100%;
  height: 300px;
  display: flex;
}

.lightbox-img .before-half,
.lightbox-img .after-half {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  flex-direction: column;
  gap: 8px;
}

.lightbox-info {
  padding: 24px;
}

.lightbox-info h3 {
  margin-bottom: 8px;
}

.lightbox-info p {
  color: var(--dark-gray);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}

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

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

.form-group label .required {
  color: var(--cta);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--water-mid);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.15);
}

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

.form-group .error-message {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc3545;
}

.form-group.error .error-message {
  display: block;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.active {
  display: block;
}

.form-success .checkmark {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #28a745, #34d058);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--water-light);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--water-light), var(--water-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-text h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

/* --- Footer --- */
.site-footer {
  background: linear-gradient(180deg, var(--primary-dark), #080f1a);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 168, 232, 0.15);
}

.footer-col h4 {
  color: var(--accent-light);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-areas a {
  font-size: 0.9rem;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 168, 232, 0.1);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Tablet (768px+) --- */
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }

  .hero {
    padding: 150px 0 120px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .service-detail {
    grid-template-columns: 1fr 1fr;
  }

  .service-item:nth-child(even) .service-detail-img {
    order: 2;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .lightbox-img {
    height: 400px;
  }

  .wave-divider svg {
    height: 70px;
  }

  .wave-divider-top svg {
    height: 70px;
  }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
  .logo img {
    width: 120px;
    height: 120px;
  }

  .nav-left,
  .nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nav-menu {
    display: flex;
    position: static;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    width: 100%;
    background: transparent;
    justify-content: space-between;
  }

  .nav-right > .btn {
    width: auto;
    margin-top: 0;
    flex-shrink: 0;
  }

  .hamburger {
    display: none;
  }

  /* Desktop dropdown hover behavior */
  .nav-dropdown-toggle::after {
    width: 5px;
    height: 5px;
    border-width: 1.5px;
  }

  .nav-dropdown:hover > .nav-dropdown-toggle::after {
    transform: rotate(-135deg);
    margin-top: 2px;
  }

  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 40, 80, 0.15);
    min-width: 220px;
    z-index: 1001;
    border-top: 3px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .nav-dropdown:hover > .nav-dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown-menu a {
    padding: 9px 20px;
    font-size: 0.9rem;
    border-radius: 0;
  }

  .nav-dropdown-menu a:hover {
    background: var(--water-light);
    color: var(--accent);
  }

  /* Invisible bridge so menu doesn't close between toggle and dropdown */
  .nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    display: none;
  }

  .nav-dropdown:hover::after {
    display: block;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .area-detail-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .lightbox-img {
    height: 500px;
  }
}

/* --- Large Desktop (1200px+) --- */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .section {
    padding: 80px 0;
  }
}
