/* ==========================================================================
   HIMALAYAN WHITE CLOUD CLEANING SERVICES — COMPLETE DESIGN SYSTEM
   ========================================================================== */

/* --- Google Fonts & Reset --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  
  /* Primary HWC Colors */
  --hwc-cyan: #00e5ff;
  --hwc-cyan-light: #72ddff;
  --hwc-cyan-glow: rgba(0, 229, 255, 0.4);
  --hwc-blue-primary: #0284c7;
  --hwc-blue-dark: #0369a1;
  --hwc-blue-deep: #023c90;
  --hwc-navy-bg: #041c34;
  --hwc-navy-dark: #021529;
  --hwc-navy-surface: rgba(7, 29, 54, 0.85);
  --hwc-navy-card: rgba(14, 55, 88, 0.6);
  --hwc-border-glass: rgba(114, 221, 255, 0.22);
  --hwc-text-white: #ffffff;
  --hwc-text-muted: rgba(255, 255, 255, 0.82);
  --hwc-text-subtle: rgba(114, 221, 255, 0.75);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-family);
  background: #042d4b;
  background-image:
    radial-gradient(circle at 25% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(2, 60, 144, 0.25) 0%, transparent 50%),
    linear-gradient(135deg, #031c36 0%, #042d4b 40%, #023c90 100%);
  background-attachment: fixed;
  color: var(--hwc-text-white);
  line-height: 1.65;
  padding-top: 90px;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--hwc-navy-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(114, 221, 255, 0.35);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--hwc-cyan);
}

/* Container */
.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section Shared */
.section {
  padding: 5.5rem 0;
  position: relative;
}

/* ==========================================================================
   TOP FIXED NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  inset: 0 auto auto 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1100;
  height: 90px;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background: rgba(7, 29, 54, 0.94);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--hwc-border-glass);
  box-shadow: 0 8px 30px rgba(0, 10, 25, 0.35);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1360px;
  min-height: 90px;
  height: 100%;
  padding: 0 clamp(16px, 2vw, 32px) 0 clamp(62px, 5vw, 76px);
  margin: 0 auto;
  box-sizing: border-box;
  gap: clamp(14px, 1.8vw, 32px);
}

.menu-btn {
  position: fixed;
  left: 18px;
  top: 45px;
  transform: translateY(-50%);
  z-index: 6000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-glow-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 3.5px;
  overflow: hidden;
  background: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.7), 0 0 28px rgba(0, 229, 255, 0.35);
  transition: all 0.3s ease;
}

.logo-glow-wrapper::before {
  content: "";
  position: absolute;
  width: 260%;
  height: 260%;
  top: -80%;
  left: -80%;
  background: conic-gradient(
    from 0deg,
    #00e5ff 0deg,
    #00ffff 45deg,
    #38bdf8 90deg,
    #0099ff 140deg,
    rgba(0, 229, 255, 0.7) 190deg,
    transparent 250deg,
    transparent 310deg,
    #00e5ff 360deg
  );
  animation: logoBorderRotateClockwise 3s linear infinite;
  z-index: 0;
}

@keyframes logoBorderRotateClockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.logo-glow-wrapper .logo {
  position: relative;
  z-index: 1;
  height: 52px;
  width: 52px;
  border-radius: 13px;
  object-fit: cover;
  display: block;
  background: #ffffff;
}

.brand-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
}

.brand-popup-title {
  margin: 0;
  font-weight: 700;
  color: var(--hwc-text-white);
  white-space: nowrap;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.brand-popup-title strong {
  color: var(--hwc-cyan);
  font-weight: 800;
}

.brand-subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-subtitle-badge span {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--hwc-text-subtle);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-cleaning-badge-icon {
  height: 52px;
  width: auto;
  max-width: 68px;
  object-fit: contain;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.75));
  vertical-align: middle;
  margin-left: 2px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-subtitle-badge:hover .brand-cleaning-badge-icon {
  transform: scale(1.16) rotate(4deg);
}

.navbar nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1vw, 16px);
  margin-left: auto;
  flex-shrink: 1;
  flex-wrap: nowrap;
}

.navbar nav .nav-link:not(.btn-primary) {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 7px clamp(12px, 1vw, 18px);
  font-size: clamp(13px, 0.9vw, 14.5px);
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: all 0.25s ease;
}

.navbar nav .nav-link:not(.btn-primary):hover,
.navbar nav .nav-link.active:not(.btn-primary) {
  background: rgba(0, 229, 255, 0.15);
  border-color: rgba(0, 229, 255, 0.5);
  color: var(--hwc-cyan);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.2);
}

/* Glowing Rotating Button in Nav */
.nav-link.btn-primary.nav-glow-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 3px;
  overflow: hidden;
  background: rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.55), 0 0 28px rgba(0, 229, 255, 0.25);
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link.btn-primary.nav-glow-btn::before {
  content: "";
  position: absolute;
  width: 280%;
  height: 280%;
  top: -90%;
  left: -90%;
  background: conic-gradient(
    from 0deg,
    #00e5ff 0deg,
    #00ffff 45deg,
    #38bdf8 90deg,
    #0099ff 140deg,
    rgba(0, 229, 255, 0.7) 190deg,
    transparent 250deg,
    transparent 310deg,
    #00e5ff 360deg
  );
  animation: logoBorderRotateClockwise 3s linear infinite;
  z-index: 0;
}

.nav-link.btn-primary.nav-glow-btn .nav-glow-btn-text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #013b8f;
  font-weight: 700;
  font-size: clamp(12.5px, 0.88vw, 14px);
  padding: 6px clamp(14px, 1.1vw, 20px);
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.nav-link.btn-primary.nav-glow-btn:hover {
  box-shadow: 0 0 26px rgba(0, 229, 255, 0.85), 0 0 42px rgba(0, 229, 255, 0.45);
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO SECTION (SMOOTH SLIDING BACKGROUND TRANSITION LOOP)
   ========================================================================== */
.hero-cleaning {
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  height: calc(100dvh - 90px);
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 1rem clamp(1.5rem, 3.5vh, 2.5rem) 1rem;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(180deg, rgba(3, 20, 38, 0.05) 0%, rgba(3, 20, 38, 0.18) 55%, rgba(4, 45, 75, 0.9) 100%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.hero-slider-indicators {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(0, 229, 255, 0.5);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.indicator-dot.active {
  width: 24px;
  border-radius: 10px;
  background: var(--hwc-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.85);
}

.hero-glass-card {
  width: 100%;
  background: rgba(4, 25, 48, 0.65);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(114, 221, 255, 0.3);
  border-radius: 20px;
  padding: 22px 28px 20px 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 8, 20, 0.55), 0 0 35px rgba(0, 229, 255, 0.15);
  animation: heroCardPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.hero-glass-card h1 {
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.hero-glass-card p {
  font-size: clamp(0.88rem, 0.96vw, 0.98rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  max-width: 740px;
  margin: 0 auto 14px auto;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #00e5ff 0%, #1c3ec9 100%);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 229, 255, 0.5);
  color: #ffffff;
}

/* Secondary Button with Glass Glow */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--hwc-cyan);
  color: var(--hwc-cyan) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.25);
}

/* ==========================================================================
   STATS BAR (TRUST INDICATORS — REVEALED ON SCROLL)
   ========================================================================== */
.stats-section {
  position: relative;
  z-index: 5;
  padding: 5.5rem 0 3.5rem 0;
  margin-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: rgba(7, 29, 54, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hwc-border-glass);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 16px 36px rgba(0, 10, 25, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow: 0 20px 45px rgba(0, 229, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, #00e5ff 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--hwc-text-muted);
  font-weight: 500;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--hwc-cyan);
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 4px 14px;
  background: rgba(0, 229, 255, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.section-header h2 {
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--hwc-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   SERVICES GRID & SERVICE CARDS
   ========================================================================== */
.cleaning-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: rgba(14, 55, 88, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--hwc-border-glass);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 16px 36px rgba(0, 10, 25, 0.25);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(14, 55, 88, 0.85);
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 24px 50px rgba(0, 229, 255, 0.22);
}

.service-icon-box {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.25);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.service-card p {
  color: var(--hwc-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(114, 221, 255, 0.18);
  padding-top: 1.4rem;
}

.service-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.65rem;
  line-height: 1.5;
}

.service-checklist li:last-child {
  margin-bottom: 0;
}

.service-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--hwc-cyan);
  font-weight: 800;
  font-size: 14px;
}

/* ==========================================================================
   PROCESS SECTION (HOW IT WORKS)
   ========================================================================== */
.process-section {
  padding: 6rem 0;
  background: rgba(2, 18, 38, 0.45);
  border-top: 1px solid rgba(114, 221, 255, 0.12);
  border-bottom: 1px solid rgba(114, 221, 255, 0.12);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.step-card {
  background: rgba(14, 55, 88, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hwc-border-glass);
  border-radius: 18px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 10, 25, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  transform: translateY(-6px);
  background: rgba(14, 55, 88, 0.8);
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: 0 20px 45px rgba(0, 229, 255, 0.18);
}

.step-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5ff 0%, #0077ff 100%);
  color: #021529;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.5);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--hwc-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   BOOKING & QUOTE SECTION
   ========================================================================== */
.booking-section {
  padding: 6.5rem 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: start;
}

.booking-info h2 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.booking-info p {
  color: var(--hwc-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  background: rgba(14, 55, 88, 0.45);
  backdrop-filter: blur(14px);
  border: 1px solid var(--hwc-border-glass);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: all 0.25s ease;
}

.contact-item:hover {
  background: rgba(14, 55, 88, 0.7);
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateX(4px);
}

.contact-item strong {
  display: block;
  color: var(--hwc-cyan);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin: 0;
  color: var(--hwc-text-white);
  font-size: 0.95rem;
}

/* Form Wrapper Card */
.form-wrapper {
  background: rgba(7, 29, 54, 0.88);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--hwc-border-glass);
  border-radius: 22px;
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: 0 24px 60px rgba(0, 10, 25, 0.45), 0 0 30px rgba(0, 229, 255, 0.12);
}

fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
}

legend {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(114, 221, 255, 0.18);
  padding-bottom: 0.65rem;
  width: 100%;
  letter-spacing: -0.01em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(114, 221, 255, 0.22);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #ffffff;
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.form-group select option {
  background: #071d36;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--hwc-cyan);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3.5px rgba(0, 229, 255, 0.25);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #00e5ff 0%, #1c3ec9 100%);
  color: #ffffff;
  padding: 1.1rem;
  border: none;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.35);
  transition: all 0.25s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 229, 255, 0.55);
}

/* ==========================================================================
   FOOTER (ENHANCED 4-COLUMN PREMIUM DESIGN)
   ========================================================================== */
.cleaning-footer {
  background: linear-gradient(180deg, rgba(2, 14, 30, 0.98) 0%, rgba(1, 8, 18, 1) 100%);
  border-top: 1px solid rgba(114, 221, 255, 0.2);
  color: var(--hwc-text-muted);
  padding: 5rem 0 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.cleaning-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.6), transparent);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.75fr 1.05fr 1.05fr 1.25fr;
  gap: clamp(1.75rem, 3vw, 3rem);
  margin-bottom: 3.5rem;
}

.footer-brand-header {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  object-fit: cover;
  background: #ffffff;
  border: 1.5px solid rgba(0, 229, 255, 0.45);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
  flex-shrink: 0;
}

.footer-brand-title {
  display: flex;
  flex-direction: column;
}

.footer-brand-main {
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-brand-sub {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--hwc-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.footer-desc {
  color: var(--hwc-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: grid;
  grid-template-columns: repeat(3, 58px);
  gap: 14px;
  width: fit-content;
  margin-top: 0.75rem;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  border: 1.5px solid rgba(114, 221, 255, 0.32);
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 8, 20, 0.45);
}

.footer-social-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-social-btn:hover {
  background: rgba(0, 229, 255, 0.28);
  border-color: var(--hwc-cyan);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.7), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--hwc-cyan);
  border-radius: 2px;
}

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

.footer-links-list li,
.footer-trust-list li {
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--hwc-cyan);
  transform: translateX(4px);
}

.footer-trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-trust-list li span {
  color: var(--hwc-cyan);
  font-weight: 700;
  font-size: 13px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-coverage-text,
.footer-hours-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin: 0;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hwc-cyan);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-contact-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.6rem;
  padding: 8px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00e5ff 0%, #1c3ec9 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 229, 255, 0.35);
  transition: all 0.25s ease;
  width: fit-content;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.55);
  color: #ffffff;
}

.footer-bottom-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom-bar p {
  margin: 0;
}

.footer-hwc-link {
  color: var(--hwc-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-hwc-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

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

.footer-bottom-links a:hover {
  color: var(--hwc-cyan);
}

.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cleaning-services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 80px;
  }
  .navbar {
    height: 80px;
  }
  .nav-wrapper {
    min-height: 80px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-glass-card {
    padding: 1.75rem 1.25rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   RIGHT FLOATING SOCIAL MEDIA SIDEBAR (THEMED)
   ========================================================================== */
.hwc-social-dock {
  position: fixed;
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1800;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 5px 10px 6px;
  background: rgba(4, 38, 68, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-right: none;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 10, 25, 0.4), 0 0 16px rgba(0, 229, 255, 0.15);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.hwc-social-toggle {
  width: 36px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #00e5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

.hwc-social-toggle:hover {
  background: rgba(0, 229, 255, 0.2);
  border-color: #00e5ff;
  transform: scale(1.05);
}

.hwc-toggle-arrow {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hwc-social-dock.collapsed {
  transform: translateY(-50%) translateX(calc(100% - 30px));
}

.hwc-social-dock.collapsed .hwc-toggle-arrow {
  transform: rotate(180deg);
}

.hwc-social-dock.collapsed .hwc-social-list {
  opacity: 0;
  pointer-events: none;
}

.hwc-social-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity 0.2s ease;
}

.hwc-social-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hwc-social-item:hover {
  transform: translateX(-4px) scale(1.1);
}

.hwc-social-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hwc-social-item:hover .hwc-social-img {
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.7), 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .hwc-social-dock {
    top: auto;
    bottom: 20px;
    transform: none;
    padding: 6px 3px 8px 4px;
  }
  .hwc-social-dock.collapsed {
    transform: translateX(calc(100% - 24px));
  }
  .hwc-social-toggle {
    width: 30px;
    height: 24px;
    margin-bottom: 6px;
  }
  .hwc-social-item {
    width: 34px;
    height: 34px;
  }
  .hwc-social-img {
    width: 32px;
    height: 32px;
  }
}

