:root {
  --navy: #1E3A8A;
  --navy-dark: #0F172A;
  --green: #16A34A;
  --green-hover: #15803D;
  --green-light: #DCFCE7;
}

/* Header Adjustments */
.logo-pipe {
  color: #cbd5e1;
  margin: 0 4px;
  font-weight: 300;
}

@media (max-width: 480px) {
  .logo-pipe {
    margin: 0 2px; /* Tighter pipes on mobile */
  }
  .header-book-btn {
    margin-left: 6px !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
  }
}



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111827;
  overflow-x: hidden;
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] {
  transition-delay: 0.1s;
}

[data-animate-delay="2"] {
  transition-delay: 0.2s;
}

[data-animate-delay="3"] {
  transition-delay: 0.3s;
}

[data-animate-delay="4"] {
  transition-delay: 0.4s;
}

/* Hero fade-in */
.hero-content {
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card hover */
.card-hover {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card-hover:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Buttons */
.btn-green {
  background: var(--green);
  color: #fff;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-green:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  transition: all 0.2s ease;
}

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

/* FAQ accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

.faq-arrow.open {
  transform: rotate(180deg);
}

/* Mobile nav */
#nav-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

#nav-menu.open {
  max-height: 400px;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 12px 15px -3px rgba(0, 0, 0, 0.05);
}

/* Input focus */
.input-field {
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.input-field:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.input-field.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-msg {
  color: #EF4444;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.error-msg.show {
  display: block;
}

/* Star rating */
.star-filled {
  color: #FBBF24;
}

/* Google G circle */
.google-g {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 35%, #FBBC05 65%, #EA4335 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

/* Pricing card popular badge */
.popular-badge {
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* City tags */
.city-tag {
  background: var(--green-light);
  color: #166534;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #86EFAC;
}

/* Placeholder block */
.photo-placeholder {
  background: #F3F4F6;
  border: 2px dashed #D1D5DB;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  gap: 10px;
}

/* Section headings */
.section-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

.section-sub {
  font-size: 18px;
  color: #6B7280;
  margin-top: 12px;
  line-height: 1.6;
}

/* Trust bar items */
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Scroll indicator */
.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D1D5DB;
  display: inline-block;
}

/* File upload */
#file-display {
  font-size: 13px;
  color: #6B7280;
  margin-top: 6px;
  min-height: 20px;
}

/* Success state */
#form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

/* Nav links */
.nav-link {
  color: #374151;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  text-decoration: none;
  cursor: pointer;
}

.nav-link:hover {
  color: #16A34A;
  background: #F0FDF4;
  border-color: #BBF7D0;
}

/* Divider */
.trust-divider {
  color: #D1D5DB;
  font-size: 18px;
  padding: 0 4px;
}


/* Header at mid-breakpoint 768px–1024px — compress spacing */

/* ═══ Book Now Modal ═══ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  color: #6B7280;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1;
}

.modal-close:hover {
  background: #EF4444;
  color: #fff;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #DCFCE7, #F0FDF4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.12);
}

.modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 14px;
  color: #6B7280;
  margin-top: 6px;
  line-height: 1.5;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}


.modal-field {
  margin-bottom: 14px;
}

/* Modal success state */
.modal-success-state {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.modal-success-state.active {
  display: block;
}

.modal-success-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-success-icon i {
  font-size: 28px;
  color: var(--green);
  animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.modal-success-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--green);
  animation: ringGrow 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes ringGrow {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes successPop {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════
   NAVIGATION & HEADER (STRICT OVERRIDE)
═══════════════════════════════════════════════ */
#main-header nav ul li a {
    position: relative;
    padding: 6px 12px !important;
    transition: all 0.3s ease !important;
    color: #4B5563 !important; /* gray-600 */
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
}

#main-header nav ul li a:hover {
    color: #10B981 !important; /* green-500 */
}

/* Uniform Underline effect for ALL items (including Blog) */
#main-header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: #10B981;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#main-header nav ul li a:hover::after {
    transform: scaleX(1);
}

/* Highlight for ACTIVE item only - Specifically excluding anchor links */
#main-header nav ul li.current-menu-item a:not([href*="#"]),
#main-header nav ul li.current_page_item a:not([href*="#"]) {
    color: #10B981 !important;
}

#main-header nav ul li.current-menu-item a:not([href*="#"])::after,
#main-header nav ul li.current_page_item a:not([href*="#"])::after {
    transform: scaleX(1);
}

/* Force Reset for anchor links on home page to avoid WP mass-highlight */
#main-header nav ul li a[href*="#"] {
    color: #4B5563 !important;
}
#main-header nav ul li a[href*="#"]:hover {
    color: #10B981 !important;
}

/* ═══ Before & After Carousel — SEAMLESS PREMIUM VERSION ═══ */
.ba-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.ba-carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.ba-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.ba-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0;
}

.ba-card-inner {
  display: flex;
  width: 100%;
  background: #fff;
  overflow: hidden;
  border-radius: 20px;
}

.ba-card-photo {
  position: relative;
  flex: 1;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.ba-card-photo:first-child {
  margin-right: -1px;
  z-index: 1;
}

.ba-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* Labels */
.ba-label {
  position: absolute;
  top: 20px;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  pointer-events: none;
  z-index: 10;
}

.ba-label-before { left: 20px; background: #ef4444; }
.ba-label-after { right: 20px; background: #22c55e; }

/* Caption */
.ba-caption {
  text-align: center;
  font-size: 14px;
  color: #64748b;
  padding: 16px 0;
  background: #f8fafc; /* Subtle bar at the bottom */
  margin: 0;
  border-top: 1px solid #f1f5f9;
  font-weight: 500;
}

/* Navigation Arrows */
.ba-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; /* Slightly smaller for mobile */
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ba-arrow:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.ba-arrow-left { 
  left: -22px; /* Pull it out more */
}
.ba-arrow-right { 
  right: -22px; /* Pull it out more */
}

@media (max-width: 768px) {
  .ba-arrow {
    width: 38px;
    height: 38px;
  }
  .ba-arrow-left { left: 5px; }
  .ba-arrow-right { right: 5px; }
}


/* Dots */
.ba-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ba-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}


/* Responsive */
@media (max-width: 768px) {
  .ba-carousel {
    max-width: 100%;
    padding: 0 48px;
  }

  .ba-arrow {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .ba-arrow-left {
    left: 4px;
  }

  .ba-arrow-right {
    right: 4px;
  }
}

@media (max-width: 480px) {
  .ba-carousel {
    padding: 0 40px;
  }

  .ba-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .ba-arrow-left {
    left: 2px;
  }

  .ba-arrow-right {
    right: 2px;
  }

  .ba-label {
    font-size: 9px;
    padding: 3px 8px;
    top: 6px;
  }

  .ba-label-before {
    left: 6px;
  }

  .ba-label-after {
    right: 6px;
  }

  .ba-caption {
    font-size: 12px;
  }
}



    /* Constrain custom logo image */
    .custom-logo-link img {
      max-height: 48px;
      width: auto;
      object-fit: contain;
    }
    #mobile-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }
    #mobile-menu.open {
      max-height: 500px; /* Adjust as needed */
    }