/* ==========================================================================
   BETTERHALF SERVICES - THE LAUNDRY EXPERT
   Custom Styles & Design System
   ========================================================================== */

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

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Brand Colors from Logo */
  --color-primary-navy: #0A2540;
  --color-primary-royal: #0066B2;
  --color-primary-blue: #0284C7;
  --color-accent-orange: #F58220;
  --color-accent-green: #22C55E;
  --color-light-bg: #F0F7FD;
  --color-light-card: #FFFFFF;
  --color-text-dark: #0F172A;
  --color-text-muted: #64748B;
  
  --shadow-soft: 0 10px 30px -5px rgba(10, 37, 64, 0.08), 0 4px 12px -2px rgba(10, 37, 64, 0.04);
  --shadow-hover: 0 20px 40px -10px rgba(0, 102, 178, 0.18), 0 8px 16px -4px rgba(245, 130, 32, 0.12);
  --shadow-glow: 0 0 25px rgba(0, 102, 178, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: #FFFFFF;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #94A3B8;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #64748B;
}

/* Backdrop blur & Glassmorphism */
.glass-nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.glass-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-card-dark {
  background: rgba(10, 37, 64, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Background Gradients & Bubble Animation */
.hero-gradient {
  background: 
    linear-gradient(135deg, rgba(10, 37, 64, 0.96) 0%, rgba(11, 48, 86, 0.92) 40%, rgba(0, 102, 178, 0.88) 85%, rgba(2, 132, 199, 0.82) 100%),
    url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?auto=format&fit=crop&w=2000&q=80') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.7;
  z-index: 1;
}

.hero-glow-orb-1 {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.35) 0%, rgba(0, 102, 178, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  animation: pulseGlow 10s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-glow-orb-2 {
  position: absolute;
  bottom: 40px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, rgba(2, 132, 199, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(45px);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate-reverse;
  z-index: 1;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(1.15) translate(30px, -20px); opacity: 1; }
}

/* Floating Bubbles in Hero */
.bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  bottom: -40px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(2, 132, 199, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset -2px -2px 6px rgba(0, 0, 0, 0.1), 0 0 10px rgba(2, 132, 199, 0.2);
  border-radius: 50%;
  animation: floatBubble 12s infinite linear;
}

.bubble:nth-child(1) { left: 10%; width: 24px; height: 24px; animation-duration: 9s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 25%; width: 42px; height: 42px; animation-duration: 14s; animation-delay: 2s; }
.bubble:nth-child(3) { left: 45%; width: 18px; height: 18px; animation-duration: 8s; animation-delay: 1s; }
.bubble:nth-child(4) { left: 60%; width: 36px; height: 36px; animation-duration: 12s; animation-delay: 3s; }
.bubble:nth-child(5) { left: 75%; width: 28px; height: 28px; animation-duration: 10s; animation-delay: 4s; }
.bubble:nth-child(6) { left: 88%; width: 50px; height: 50px; animation-duration: 16s; animation-delay: 0.5s; }

@keyframes floatBubble {
  0% {
    transform: translateY(0) scale(0.8) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-110vh) scale(1.2) rotate(360deg);
    opacity: 0;
  }
}

/* Card Hover Elevation Effects */
.service-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #E2E8F0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -8px rgba(0, 102, 178, 0.15), 0 8px 15px -4px rgba(245, 130, 32, 0.1);
  border-color: #BAE6FD;
}

.service-card:hover .service-img {
  transform: scale(1.06);
}

.service-card .service-img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Feature & Trust Cards */
.feature-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #F58220;
  box-shadow: 0 15px 30px -5px rgba(0, 102, 178, 0.12);
}

/* Custom Buttons */
.btn-primary {
  background: linear-gradient(135deg, #0066B2 0%, #004C8A 100%);
  color: #FFFFFF;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 102, 178, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #004C8A 0%, #0A2540 100%);
  box-shadow: 0 6px 20px rgba(0, 102, 178, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-aqua {
  background: linear-gradient(135deg, #F58220 0%, #EA580C 100%);
  color: #FFFFFF;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 130, 32, 0.38);
}

.btn-aqua:hover {
  background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
  box-shadow: 0 8px 25px rgba(245, 130, 32, 0.55);
  transform: translateY(-2px);
}

/* Tab Navigation Styling */
.price-tab-btn {
  transition: all 0.25s ease;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
}

.price-tab-btn.active {
  background: #0066B2;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 102, 178, 0.3);
}

.price-tab-btn:not(.active) {
  background: #F1F5F9;
  color: #475569;
}

.price-tab-btn:not(.active):hover {
  background: #E2E8F0;
  color: #0F172A;
}

/* Timeline Process Step */
.process-step {
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -30%;
  width: 60%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #0066B2, #0066B2 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

@media (max-width: 1023px) {
  .process-step::after {
    display: none;
  }
}

/* Floating Action Badges */
.floating-pulse {
  animation: floatingPulse 2.5s infinite;
}

@keyframes floatingPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.floating-phone-pulse {
  animation: phonePulse 2.5s infinite 1s;
}

@keyframes phonePulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 102, 178, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(0, 102, 178, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 102, 178, 0); }
}

/* Modal Overlay */
.modal-backdrop {
  background: rgba(10, 37, 64, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Badge Glow */
.badge-tag {
  background: rgba(0, 102, 178, 0.1);
  color: #0066B2;
  border: 1px solid rgba(2, 132, 199, 0.3);
}

/* Table Enhancements */
.price-table tr:hover {
  background-color: #F8FAFC;
}

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

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 45px;
}

@media (min-width: 768px) {
  .wave-divider svg {
    height: 65px;
  }
}

/* Testimonial Card */
.testimonial-card {
  transition: all 0.3s ease;
  border-radius: 1.25rem;
}

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


@media (max-width: 768px) {
    .dd\:hidden {
        display: none;
    }
}

/* ==========================================================================
   BREADCRUMBS – THEME COLOR COMBINATION
   (Deep Navy #0A2540 / #162479, Teal Pill #0071A1, Sky Blue #38BDF8, White)
   ========================================================================== */
.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(10, 37, 64, 0.82);
  border: 1px solid rgba(0, 113, 161, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  flex-wrap: wrap;
  line-height: 1.25;
}

.breadcrumb-pill a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.breadcrumb-pill a:hover {
  color: #7dd3fc;
}

.breadcrumb-pill a i {
  color: #38bdf8;
  font-size: 0.75rem;
}

.breadcrumb-pill .breadcrumb-sep {
  color: #38bdf8;
  font-size: 0.625rem;
  opacity: 0.85;
}

.breadcrumb-pill .breadcrumb-item {
  color: #bae6fd;
}

.breadcrumb-pill .breadcrumb-current {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #0084B8 0%, #005F91 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 113, 161, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  .breadcrumb-pill {
    padding: 0.3rem 0.65rem;
    font-size: 0.7rem;
    gap: 0.35rem;
  }
  .breadcrumb-pill .breadcrumb-current {
    padding: 0.2rem 0.55rem;
    border-radius: 0.75rem;
  }
}

/* ==========================================================================
   PREMIUM FLOATING ACTION BUTTONS (CALL & WHATSAPP)
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  right: 1.5rem;
  bottom: 1.75rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-end;
}

.floating-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  border: 2.5px solid #ffffff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
}

.floating-btn i {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

/* Call Button */
.floating-btn-call {
  background: linear-gradient(135deg, #0077c8 0%, #00529b 100%);
  box-shadow: 0 8px 24px -3px rgba(0, 102, 178, 0.55), 0 3px 8px rgba(0, 0, 0, 0.2);
}
.floating-btn-call i {
  font-size: 1.25rem;
  color: #ffffff;
}

/* WhatsApp Button */
.floating-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 8px 24px -3px rgba(37, 211, 102, 0.55), 0 3px 8px rgba(0, 0, 0, 0.2);
}
.floating-btn-whatsapp i {
  font-size: 1.65rem;
  color: #ffffff;
}

/* Hover & Active States */
.floating-btn:hover {
  transform: translateY(-4px) scale(1.08);
}
.floating-btn-call:hover {
  box-shadow: 0 14px 30px -4px rgba(0, 102, 178, 0.7), 0 4px 12px rgba(0, 0, 0, 0.25);
}
.floating-btn-whatsapp:hover {
  box-shadow: 0 14px 30px -4px rgba(37, 211, 102, 0.75), 0 4px 12px rgba(0, 0, 0, 0.25);
}
.floating-btn:active {
  transform: scale(0.95);
}

/* Subtle Radar Waves */
.floating-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: floating-radar 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.floating-btn-call::before {
  border: 2px solid rgba(0, 119, 200, 0.75);
}
.floating-btn-whatsapp::before {
  border: 2px solid rgba(37, 211, 102, 0.75);
  animation-delay: 1.4s;
}

@keyframes floating-radar {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Premium Floating Tooltip */
.floating-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.floating-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(10, 37, 64, 0.95);
}
.floating-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}