/* ============================================
   JUMEIRA MAID CLEANING SERVICES
   style.css — Main Stylesheet
   ============================================ */

/* ---------- GOOGLE FONT IMPORT ---------- */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary:       #0045A5;
  --primary-dark:  #003080;
  --primary-light: #1A5CB5;
  --accent:        #00AAEB;
  --accent-light:  #33BBFF;
  --accent-dark:   #0090CC;
  --blue-50:       #EBF4FF;
  --blue-100:      #DBEAFE;
  --blue-200:      #BFDBFE;
  --gradient-hero: linear-gradient(135deg, #003080 0%, #0045A5 45%, #0070C8 80%, #00AAEB 100%);
  --gradient-card: linear-gradient(135deg, #0045A5, #00AAEB);
  --gradient-btn:  linear-gradient(135deg, #00AAEB, #0045A5);
  --white:         #ffffff;
  --off-white:     #F8FBFF;
  --grey-50:       #F5F7FA;
  --grey-100:      #EEF2F7;
  --grey-200:      #E2E8F0;
  --grey-400:      #94A3B8;
  --grey-600:      #64748B;
  --grey-700:      #475569;
  --grey-800:      #1E293B;
  --text-dark:     #0A1628;
  --text-body:     #374151;
  --text-muted:    #6B7280;
  --shadow-sm:     0 2px 8px rgba(0,69,165,0.08);
  --shadow-md:     0 8px 32px rgba(0,69,165,0.12);
  --shadow-lg:     0 20px 60px rgba(0,69,165,0.18);
  --shadow-xl:     0 32px 80px rgba(0,69,165,0.22);
  --radius-sm:     10px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --radius-pill:   100px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font:          'Google Sans', 'Google Sans Flex', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---------- TYPOGRAPHY SCALE (Apple HIG) ---------- */
.display-1 { font-size: clamp(2.8rem, 6vw, 5rem);   font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.display-2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem);   font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 600; line-height: 1.35; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 1rem;   font-weight: 600; }
p  { font-size: 1rem;   line-height: 1.7; color: var(--text-body); }
.lead { font-size: 1.15rem; font-weight: 400; line-height: 1.75; color: var(--text-muted); }
.small-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}

/* ---------- UTILITY CLASSES ---------- */
.text-primary   { color: var(--primary) !important; }
.text-accent    { color: var(--accent)  !important; }
.text-white     { color: var(--white)   !important; }
.text-muted-c   { color: var(--text-muted) !important; }
.bg-primary     { background: var(--primary) !important; }
.bg-accent      { background: var(--accent)  !important; }
.bg-off-white   { background: var(--off-white) !important; }
.bg-gradient    { background: var(--gradient-hero) !important; }
.rounded-custom { border-radius: var(--radius-lg) !important; }
.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

/* ---------- SECTION LABELS ---------- */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(0,170,235,0.1);
  border: 1px solid rgba(0,170,235,0.25);
  padding: 6px 16px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section-label::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}

/* ---------- BUTTONS ---------- */
.btn-primary-c {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-btn); color: var(--white);
  padding: 14px 32px; border-radius: var(--radius-pill);
  font-size: 1rem; font-weight: 600; border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,170,235,0.35);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary-c:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,170,235,0.45);
  color: var(--white);
}
.btn-outline-c {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--primary);
  padding: 13px 30px; border-radius: var(--radius-pill);
  font-size: 1rem; font-weight: 600;
  border: 2px solid var(--primary); cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn-outline-c:hover {
  background: var(--primary); color: var(--white);
  transform: translateY(-2px);
}
.btn-white-c {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--primary);
  padding: 14px 32px; border-radius: var(--radius-pill);
  font-size: 1rem; font-weight: 700; border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  transition: var(--transition); white-space: nowrap;
}
.btn-white-c:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
  color: var(--accent);
}

/* ---------- NAVBAR ---------- */
#mainNav {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  padding: 0;
  background: transparent;
}
#mainNav .container {
  background: #ffffff;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--grey-200);
  padding: 10px 20px !important;
  box-shadow: 0 8px 32px rgba(0,69,165,0.13);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1), border-radius 0.3s ease;
}
#mainNav .container:has(.navbar-collapse.show),
#mainNav .container:has(.navbar-collapse.collapsing) {
  border-radius: var(--radius-xl);
}
#mainNav.scrolled {
  top: 10px;
}
#mainNav.scrolled .container {
  box-shadow: 0 4px 20px rgba(0,69,165,0.1);
}
#mainNav .navbar-brand img {
  height: 44px; transition: var(--transition);
}
#mainNav.scrolled .navbar-brand img { height: 40px; }
#mainNav .nav-link {
  font-size: 0.93rem; font-weight: 600;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
#mainNav .nav-link:hover {
  color: var(--primary) !important;
  background: var(--blue-50);
}
#mainNav .nav-link.active {
  color: var(--primary) !important;
  background: var(--blue-50);
}
#mainNav .nav-cta,
#mainNav .nav-cta.active {
  background: var(--gradient-btn) !important; color: var(--white) !important;
  padding: 9px 22px !important; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(0,170,235,0.35);
  text-shadow: none !important;
}
#mainNav .nav-cta:hover,
#mainNav .nav-cta.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,170,235,0.45);
  background: var(--gradient-btn) !important;
  color: var(--white) !important;
}
.navbar-toggler {
  border: 2px solid var(--primary) !important;
  border-radius: var(--radius-sm) !important;
  padding: 6px 10px !important;
}
.navbar-toggler-icon-custom {
  display: flex; flex-direction: column; gap: 5px;
  width: 22px; height: 18px; justify-content: center;
}
.navbar-toggler-icon-custom span {
  display: block; height: 2px; background: var(--primary);
  border-radius: 2px; transition: var(--transition);
}

/* Dropdown */
.dropdown-menu {
  border: none !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
  padding: 12px !important;
  min-width: 220px;
  background: white;
  margin-top: 8px !important;
}
.dropdown-item {
  border-radius: var(--radius-sm) !important;
  padding: 10px 16px !important;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-dark) !important;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--blue-50) !important;
  color: var(--primary) !important;
  transform: translateX(4px);
}

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 0.82rem; color: rgba(255,255,255,0.85);
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent-light); }
.top-bar .top-bar-item {
  display: flex; align-items: center; gap: 7px;
}
.top-bar .top-bar-item i { color: var(--accent-light); font-size: 0.85rem; }

/* ---------- HERO SECTION ---------- */
.hero-section {
  min-height: 100vh;
  background: #0a1a2f;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding-top: 200px;
  padding-bottom: 60px;
}
.hero-bg-slider { position: absolute; inset: 0; z-index: 0; }
.hero-bg-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-bg-slide.active { opacity: 1; }
.hero-gradient-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(0,0,0,0.63) 0%, rgba(0,0,0,0.50) 60%, rgba(0,0,0,0.40) 100%);
  pointer-events: none;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23p)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-section::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C480,0 960,0 1440,60 L1440,80 L0,80 Z' fill='white'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
  pointer-events: none; z-index: 6;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.95); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 20px; border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; display: inline-block; width: 7px; height: 7px;
  background: var(--accent-light); border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.hero-title { color: var(--white); margin-bottom: 22px; }
.hero-title span { color: var(--accent-light); }
.hero-description {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem; line-height: 1.75;
  max-width: 520px; margin-bottom: 36px;
}
.hero-stats {
  display: flex; gap: 36px; margin-top: 40px; flex-wrap: wrap;
  justify-content: center;
}
.hero-stat-item { text-align: center; }
.hero-stat-number {
  font-size: 2.2rem; font-weight: 800; color: white; line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-number span { color: var(--accent-light); }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 4px; font-weight: 500; }

/* Hero fan image gallery */
.hero-fan-gallery {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 52px;
  padding-bottom: 20px;
  position: relative;
}
.fan-img-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.45);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
  width: 160px; height: 220px;
}
.fan-img-card.fan-center {
  width: 185px; height: 270px;
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 32px 70px rgba(0,0,0,0.45);
  z-index: 5;
}
.fan-img-card:nth-child(1) {
  transform: rotate(-14deg) translateX(28px);
  z-index: 1; width: 145px; height: 195px;
}
.fan-img-card:nth-child(2) {
  transform: rotate(-7deg) translateX(14px);
  z-index: 2;
}
.fan-img-card:nth-child(3) { z-index: 5; }
.fan-img-card:nth-child(4) {
  transform: rotate(7deg) translateX(-14px);
  z-index: 2;
}
.fan-img-card:nth-child(5) {
  transform: rotate(14deg) translateX(-28px);
  z-index: 1; width: 145px; height: 195px;
}
.fan-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fan-img-card:hover {
  transform: translateY(-16px) rotate(0deg) !important;
  z-index: 10 !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.hero-floating-badge {
  position: absolute; bottom: -18px; left: 50%;
  transform: translateX(-50%);
  background: white; border-radius: var(--radius-md);
  padding: 14px 22px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap; z-index: 10;
}
.hero-floating-badge .badge-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--gradient-card);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
}
.hero-floating-badge .badge-text strong { display: block; font-size: 0.95rem; color: var(--text-dark); font-weight: 700; }
.hero-floating-badge .badge-text span { font-size: 0.75rem; color: var(--text-muted); }

/* ---------- MOP CURSOR ---------- */
#mopCursor {
  transition: filter 0.15s ease;
}
#mopCursor:hover { filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4)); }

/* ---------- BUBBLE ANIMATION ---------- */
.bubble-container {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1;
}
.hero-section .bubble-container { z-index: 4; }
.bubble {
  position: absolute; bottom: -60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  animation: floatBubble linear infinite;
}
@keyframes floatBubble {
  0%   { transform: translateY(0) scale(1); opacity: 0.6; }
  50%  { opacity: 0.3; }
  100% { transform: translateY(-110vh) scale(1.1); opacity: 0; }
}

/* ---------- SERVICES STRIP ---------- */
.services-strip {
  background: var(--white);
  padding: 28px 0;
  box-shadow: 0 8px 40px rgba(0,69,165,0.07);
  position: relative; z-index: 5;
  border-top: 1px solid var(--grey-200);
}
.services-strip-inner {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.strip-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
  background: var(--grey-100); color: var(--text-dark);
  border: 1.5px solid transparent;
  text-decoration: none;
}
.strip-tag:hover, .strip-tag.active {
  background: var(--blue-50); color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.strip-tag i { font-size: 0.95rem; color: var(--accent); }

/* ---------- ABOUT SECTION ---------- */
.about-img-wrapper {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-img-wrapper .img-main {
  grid-column: 1 / 3;
  border-radius: var(--radius-lg); overflow: hidden;
  height: 280px; box-shadow: var(--shadow-md);
}
.about-img-wrapper .img-sub {
  border-radius: var(--radius-md); overflow: hidden;
  height: 180px; box-shadow: var(--shadow-md);
}
.about-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.about-check-list { display: flex; flex-direction: column; gap: 14px; }
.about-check-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.check-icon {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: 10px; background: var(--blue-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.95rem;
  border: 1.5px solid var(--blue-200);
}
.check-icon.filled {
  background: var(--gradient-card); color: white; border-color: transparent;
}

/* ---------- SERVICE CARDS ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--grey-200);
  transition: var(--transition);
  cursor: pointer; height: 100%;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card-img {
  height: 200px; overflow: hidden; position: relative;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,69,165,0.3) 0%, transparent 60%);
}
.service-icon-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.service-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h5 { color: var(--text-dark); margin-bottom: 10px; font-weight: 700; }
.service-card-body p { font-size: 0.9rem; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700; color: var(--primary);
  transition: var(--transition);
}
.service-card-link i { transition: transform 0.3s ease; }
.service-card:hover .service-card-link { color: var(--accent); }
.service-card:hover .service-card-link i { transform: translateX(4px); }

/* ---------- WHY CHOOSE US ---------- */
.why-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--grey-200);
  transition: var(--transition);
  height: 100%;
}
.why-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}
.why-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--blue-50); border: 1.5px solid var(--blue-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.5rem;
  margin-bottom: 20px; transition: var(--transition);
}
.why-feature-card:hover .why-icon {
  background: var(--gradient-card); color: white;
  border-color: transparent; transform: scale(1.1);
}

/* ---------- PROCESS STEPS ---------- */
.process-step {
  text-align: center; position: relative;
  padding: 0 10px;
}
.process-step-num {
  font-size: 7rem; font-weight: 900; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0,69,165,0.12);
  text-stroke: 2px rgba(0,69,165,0.12);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  transition: var(--transition);
  user-select: none;
}
.process-step:hover .process-step-num {
  -webkit-text-stroke-color: rgba(0,170,235,0.35);
  transform: scale(1.05);
}
.process-connector {
  position: absolute; top: 32px; right: -50%;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  z-index: 0;
}

/* ---------- TESTIMONIALS (split layout) ---------- */
.testimonial-split {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--grey-200);
}
.testimonial-split-img { height: 100%; min-height: 320px; }
.testimonial-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-split-content {
  height: 100%;
  background: var(--white);
  padding: 56px;
  display: flex;
  align-items: center;
}
.testimonialSwiper { width: 100%; overflow: hidden; }
.testimonial-card-split { position: relative; padding-left: 8px; }
.testimonial-card-split::before {
  content: '\201C';
  position: absolute; top: -20px; left: -8px;
  font-size: 5.5rem; line-height: 1; font-weight: 800;
  color: var(--blue-100);
  font-family: Georgia, serif;
  z-index: 0;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 18px; position: relative; z-index: 1; justify-content: flex-end; }
.testimonial-stars i { color: #FBBF24; font-size: 1rem; }
.testimonial-text {
  font-size: 1.2rem; line-height: 1.8; color: var(--text-body);
  margin-bottom: 28px; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-name { font-weight: 700; color: var(--text-dark); font-size: 1.05rem; }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 991.98px) {
  .testimonial-split-img { min-height: 260px; }
  .testimonial-split-content { padding: 40px 32px; }
  .testimonial-text { font-size: 1.05rem; }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner .cta-deco {
  position: absolute; right: -60px; top: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(0,170,235,0.15); pointer-events: none;
}
.cta-banner .cta-deco2 {
  position: absolute; left: -40px; bottom: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.06); pointer-events: none;
}

/* ---------- COUNTER ---------- */
.counter-section { background: var(--gradient-hero); padding: 70px 0; }
.counter-card { text-align: center; }
.counter-number {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  color: white; letter-spacing: -0.02em; line-height: 1;
}
.counter-number span { color: white; }
.counter-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 8px; font-weight: 500; }

/* ---------- CLEANING INTERACTIVE ELEMENTS ---------- */
.cleaning-float {
  position: absolute; pointer-events: none; z-index: 2;
  animation: floatCleaning 4s ease-in-out infinite;
}
@keyframes floatCleaning {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(5deg); }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 80px;
}
.footer-logo img { height: 50px; margin-bottom: 20px; }
.footer-about { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent); color: white;
  border-color: var(--accent); transform: translateY(-3px);
}
.footer h6 {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-light);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.footer-links a::before {
  content: ''; display: block; width: 4px; height: 4px;
  background: var(--accent); border-radius: 50%;
  transition: var(--transition);
}
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--accent); margin-top: 3px; font-size: 0.9rem; min-width: 16px; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0; margin-top: 60px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.8rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 40px rgba(37,211,102,0.55);
  color: white;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 28px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.1); }
}
.whatsapp-tooltip {
  position: absolute; right: 72px; top: 50%;
  transform: translateY(-50%);
  background: var(--text-dark); color: white;
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---------- PAGE BANNER (inner pages) ---------- */
.page-banner {
  background: var(--gradient-hero);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-banner::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C480,0 960,0 1440,60 L1440,80 L0,80 Z' fill='white'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
}
/* The wave ::after sets bottom:-2px to bleed past the section edge, but the
   section's own overflow:hidden clips that bleed off. When the section height
   lands on a fractional pixel the clipped edge renders as a hairline seam.
   An outer box-shadow is not clipped by the element's own overflow, so use it
   as a white skirt over the join. */
.hero-section,
.page-banner,
.service-hero-inner { box-shadow: 0 2px 0 0 #ffffff; }

.page-banner h1 { color: white; margin-bottom: 16px; }
.page-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto 20px; }
.breadcrumb-custom {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.breadcrumb-custom a { color: var(--accent-light); }
.breadcrumb-custom a:hover { color: white; }
.breadcrumb-custom span { opacity: 0.5; }

/* ---------- MISSION / VISION CARDS ---------- */
.mv-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--grey-200);
  height: 100%;
  text-align: center;
  transition: var(--transition);
}
.mv-card h4 { color: var(--text-dark); transition: color 0.3s; }
.mv-card p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; transition: color 0.3s; }
.mv-card:hover {
  background: var(--gradient-card);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.mv-card:hover h4,
.mv-card:hover p { color: white !important; }
.mv-card--featured {
  background: var(--gradient-card);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.mv-card--featured h4,
.mv-card--featured p { color: white !important; }
.mv-card-icon {
  width: 70px; height: 70px; border-radius: 20px;
  background: var(--gradient-card);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.8rem;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(0,170,235,0.3);
  transition: var(--transition);
}
.mv-card--featured .mv-card-icon {
  background: rgba(255,255,255,0.2);
  box-shadow: none;
}
.mv-card:hover .mv-card-icon {
  background: rgba(255,255,255,0.2);
  box-shadow: none;
}

/* ---------- ABOUT PAGE SPECIFIC ---------- */
.team-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--grey-200);
  transition: var(--transition); text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card-img { height: 240px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-body { padding: 22px; }
.team-card-name { font-weight: 700; color: var(--text-dark); font-size: 1.05rem; }
.team-card-role { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-top: 4px; }
.value-card {
  background: var(--blue-50); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  border: 1.5px solid var(--blue-200);
  transition: var(--transition);
  height: 100%;
}
.value-card:hover {
  background: var(--gradient-card); color: white;
  transform: translateY(-6px); border-color: transparent;
  box-shadow: var(--shadow-md);
}
.value-card:hover p,
.value-card:hover h5 { color: white !important; }
.value-card i { font-size: 2rem; color: var(--primary); margin-bottom: 16px; transition: color 0.3s; }
.value-card:hover i { color: white; }

/* ---------- SERVICES PAGE ---------- */
.service-full-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--grey-200);
  transition: var(--transition);
  display: flex; flex-direction: column; height: 100%;
}
.service-full-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }

/* ---------- CONTACT PAGE ---------- */
.contact-form-wrap {
  background: white; border-radius: var(--radius-xl);
  padding: 48px 40px; box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--grey-200);
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 24px; border: 1.5px solid var(--grey-200);
  transition: var(--transition); margin-bottom: 16px;
}
.contact-info-item:hover { border-color: var(--blue-200); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.contact-icon {
  width: 52px; height: 52px; min-width: 52px; border-radius: 14px;
  background: var(--gradient-card); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 6px 18px rgba(0,170,235,0.3);
}
.form-control-c {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--grey-200); border-radius: var(--radius-md);
  font-family: var(--font); font-size: 0.95rem; color: var(--text-dark);
  background: var(--grey-50); transition: var(--transition);
  outline: none; margin-bottom: 16px;
}
.form-control-c:focus {
  border-color: var(--accent); background: white;
  box-shadow: 0 0 0 3px rgba(0,170,235,0.12);
}
.form-label-c {
  font-size: 0.88rem; font-weight: 600; color: var(--text-dark);
  margin-bottom: 7px; display: block;
}
textarea.form-control-c { resize: vertical; min-height: 140px; }
select.form-control-c { appearance: none; cursor: pointer; }

/* ---------- SERVICE INNER PAGE ---------- */
.service-hero-inner {
  background: var(--gradient-hero);
  padding: 160px 0 80px; position: relative; overflow: hidden;
}
.service-hero-inner::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C480,0 960,0 1440,60 L1440,80 L0,80 Z' fill='white'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
}
.service-detail-list { display: flex; flex-direction: column; gap: 12px; margin: 0; padding-left: 0; }
.service-detail-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--text-body);
}
.service-detail-list li i { color: var(--accent); margin-top: 3px; }
.sidebar-cta {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg); padding: 32px 28px;
  color: white; text-align: center; position: sticky; top: 100px;
}
.sidebar-cta h5 { font-weight: 700; margin-bottom: 12px; }
.sidebar-service-list { display: flex; flex-direction: column; gap: 8px; }
.sidebar-service-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); color: rgba(255,255,255,0.85);
  font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.sidebar-service-list a:hover,
.sidebar-service-list a.active {
  background: rgba(255,255,255,0.18); color: white;
  transform: translateX(4px); border-color: rgba(255,255,255,0.3);
}
.sidebar-service-list a i { color: var(--accent-light); font-size: 0.95rem; }

/* ---------- SCROLL ANIMATIONS ---------- */
.anim-fade-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.anim-fade-up.visible { opacity: 1; transform: translateY(0); }

.anim-blur-in {
  opacity: 0; filter: blur(12px); transform: translateY(18px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}
.anim-blur-in.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

.anim-fade-left {
  opacity: 0; transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-left.visible { opacity: 1; transform: translateX(0); }

.anim-fade-right {
  opacity: 0; transform: translateX(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-right.visible { opacity: 1; transform: translateX(0); }

.anim-scale-in {
  opacity: 0; transform: scale(0.88);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-scale-in.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ---------- DIVIDER ---------- */
.divider-gradient {
  height: 3px; width: 60px; border-radius: 2px;
  background: var(--gradient-btn); margin: 16px 0 24px;
}
.divider-gradient.center { margin: 16px auto 24px; }

/* ---------- BADGE PILL ---------- */
.badge-pill-accent {
  background: rgba(0,170,235,0.1); color: var(--accent);
  border: 1px solid rgba(0,170,235,0.2);
  padding: 5px 14px; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
}
.badge-pill-primary {
  background: rgba(0,69,165,0.1); color: var(--primary);
  border: 1px solid rgba(0,69,165,0.15);
  padding: 5px 14px; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700;
}

/* ---------- SECTION HEADER BLOCK ---------- */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header.left { text-align: left; margin: 0 0 50px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; margin-top: 14px; }

/* ---------- CLEANING ICON FLOAT SVG AREA ---------- */
.cleaning-icons-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 3;
}
.clean-icon-float {
  position: absolute; opacity: 0.07; font-size: 2.5rem; color: var(--primary);
  animation: floatCleaning 5s ease-in-out infinite;
}

/* ---------- BACK TO TOP ---------- */
#backToTop {
  position: fixed; bottom: 100px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); cursor: pointer;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: var(--transition);
}
#backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#backToTop:hover { background: var(--accent); transform: translateY(-2px); }

/* ---------- SWIPER OVERRIDES ---------- */
.swiper-pagination-bullet { background: var(--grey-400) !important; }
.swiper-pagination-bullet-active { background: var(--primary) !important; width: 24px !important; border-radius: 4px !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem !important; color: var(--primary) !important; }
.swiper-button-next, .swiper-button-prev {
  width: 44px !important; height: 44px !important;
  background: white; border-radius: 50%;
  box-shadow: var(--shadow-md);
}

/* ---------- MAP EMBED ---------- */
.map-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-md); height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199.98px) {
  .section-pad { padding: 80px 0; }
  .cta-banner { padding: 50px 36px; }
}
@media (max-width: 991.98px) {
  .hero-section { padding-top: 110px; padding-bottom: 60px; }
  .hero-image-grid { max-width: 360px; }
  .hero-stats { gap: 24px; }
  .page-banner { padding: 130px 0 100px; }
  #mainNav .navbar-collapse {
    margin-top: 12px;
  }
  #mainNav .nav-link { color: var(--text-dark) !important; }
  .top-bar .d-flex > div:nth-child(2) { display: none !important; }
  .contact-form-wrap { padding: 32px 24px; }
}
@media (max-width: 767.98px) {
  :root { font-size: 15px; }
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 50px 0; }
  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 1.8rem; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner h2 { font-size: 1.8rem; }
  .services-strip-inner { gap: 6px; }
  .strip-tag { font-size: 0.8rem; padding: 8px 14px; }
  .top-bar { display: none; }
  .hero-image-grid { display: none; }
  .hero-section { text-align: center; }
  .hero-description { margin: 0 auto 32px; }
  .hero-stats { justify-content: center; }
  .footer { padding-top: 50px; }
  .footer-bottom { padding: 18px 0; }
  .contact-form-wrap { padding: 28px 18px; }
  .page-banner { text-align: left; }
  .page-banner .section-label.mx-auto { margin-left: 0 !important; margin-right: auto !important; }
  .page-banner p { margin-left: 0; margin-right: auto; }
}
@media (max-width: 575.98px) {
  .services-strip { padding: 18px 0; }
  .hero-badge { font-size: 0.72rem; }
  .page-banner { padding: 120px 0 90px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 1.6rem; }
  #backToTop { bottom: 85px; right: 20px; }
}

/* ---------- NO-JS FALLBACK ---------- */
.no-js .anim-blur-in,
.no-js .anim-fade-up,
.no-js .anim-fade-left,
.no-js .anim-fade-right,
.no-js .anim-scale-in {
  opacity: 1; filter: none; transform: none;
}
