/* ==========================================================================
   TOTAL MAID SERVICES — HOMEPAGE MODERN DESIGN SYSTEM
   Scoped exclusively to .home-page and body.home-page
   ========================================================================== */

:root {
  --home-navy: #12345B;
  --home-navy-dark: #0A1E36;
  --home-blue: #2563EB;
  --home-blue-hover: #1D4ED8;
  --home-gold: #F4B400;
  --home-gold-light: #FFF9E6;
  --home-light-blue: #EFF6FF;
  --home-surface: #F8FAFC;
  --home-surface-card: #FFFFFF;
  --home-text-dark: #172033;
  --home-text-secondary: #64748B;
  --home-border: #E2E8F0;
  --home-border-focus: #BFDBFE;
  
  --home-radius-sm: 8px;
  --home-radius-md: 14px;
  --home-radius-lg: 20px;
  --home-radius-full: 9999px;

  --home-shadow-sm: 0 2px 4px rgba(18, 52, 91, 0.04);
  --home-shadow-md: 0 4px 20px -2px rgba(18, 52, 91, 0.07), 0 2px 6px -1px rgba(18, 52, 91, 0.04);
  --home-shadow-lg: 0 16px 36px -4px rgba(18, 52, 91, 0.12), 0 6px 14px -2px rgba(18, 52, 91, 0.05);
  --home-shadow-hover: 0 20px 40px -6px rgba(18, 52, 91, 0.14), 0 8px 16px -3px rgba(18, 52, 91, 0.06);

  --home-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   HOMEPAGE CONTAINER & COMMON BASE STYLES
   ========================================================================== */
.home-page {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--home-text-dark);
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.home-page * {
  box-sizing: border-box;
}

/* Common Section Badge */
.home-page .section-badge,
.home-page .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--home-light-blue);
  color: var(--home-blue);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--home-radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.home-page .sub-title img {
  width: 14px;
  height: 14px;
}

/* Common Section Headings */
.home-page .sec-title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--home-navy);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.home-page .sec-title span,
.home-page .sec-title .text-theme {
  color: var(--home-blue) !important;
}

.home-page .sec-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--home-text-secondary);
  max-width: 680px;
}

/* ==========================================================================
   HEADER ENHANCEMENTS (Scoped to body.home-page)
   ========================================================================== */
body.home-page .th-header {
  border-bottom: 1px solid var(--home-border);
  background: #ffffff;
  transition: var(--home-transition);
}

body.home-page .header-top {
  background: var(--home-navy);
  color: #FFFFFF;
  padding: 8px 0;
  font-size: 13px;
}

body.home-page .header-top a {
  color: #FFFFFF;
  transition: var(--home-transition);
  font-weight: 500;
}

body.home-page .header-top a:hover {
  color: var(--home-gold);
}

body.home-page .header-links ul li {
  color: #E2E8F0;
}

body.home-page .header-links ul li i {
  color: var(--home-gold);
  margin-right: 6px;
}

body.home-page .header-links ul li b {
  color: #94A3B8;
  font-weight: 500;
  margin-right: 4px;
}

body.home-page .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 12px;
  transition: var(--home-transition);
}

body.home-page .social-links a:hover {
  background: var(--home-blue);
  color: #FFFFFF;
  transform: translateY(-2px);
}

body.home-page .menu-area {
  min-height: 84px;
  display: flex;
  align-items: center;
}

body.home-page .header-logo img {
  max-height: 54px;
  width: auto;
  transition: transform 0.2s ease;
}

body.home-page .main-menu > ul > li > a {
  font-weight: 600;
  font-size: 15px;
  color: var(--home-text-dark);
  padding: 30px 18px;
  transition: var(--home-transition);
  position: relative;
}

body.home-page .main-menu > ul > li > a:hover,
body.home-page .main-menu > ul > li.active > a {
  color: var(--home-blue);
}

body.home-page .header-button a[href^="tel:"] {
  background: var(--home-blue) !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 11px 24px !important;
  border-radius: var(--home-radius-full) !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3) !important;
  transition: var(--home-transition) !important;
  text-decoration: none !important;
}

body.home-page .header-button a[href^="tel:"]:hover {
  background: var(--home-blue-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
}

body.home-page .sticky-wrapper.sticky {
  box-shadow: 0 6px 20px rgba(18, 52, 91, 0.08);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.home-page .th-hero-wrapper.hero-2 {
  position: relative;
  min-height: 640px;
  background-color: #0F375F;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 85px 0 75px;
}

.home-page .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(15, 55, 95, 0.82) 0%, 
    rgba(15, 55, 95, 0.68) 30%, 
    rgba(15, 55, 95, 0.35) 52%, 
    rgba(15, 55, 95, 0.08) 72%, 
    rgba(15, 55, 95, 0.0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.home-page .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.home-page .hero-style2 {
  max-width: 670px;
  padding: 20px 0;
}

.home-page .hero-style2 .sub-title {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--home-radius-full);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-page .hero-style2 .sub-title img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.home-page .hero-title {
  margin: 0 0 16px 0;
}

.home-page .hero-title .title1 {
  display: block;
  font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 500;
  color: #BFDBFE;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.home-page .hero-title .title2 {
  display: block;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.home-page .hero-text {
  font-size: clamp(15.5px, 1.5vw, 17.5px);
  line-height: 1.65;
  color: #F1F5F9;
  margin-top: 16px;
  max-width: 580px;
  font-weight: 400;
}

.home-page .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

/* Primary Button: Book Now */
.home-page .hero-buttons .th-btn.style3 {
  background: #F4B400;
  color: #12345B;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--home-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1.5px solid #F4B400;
  box-shadow: 0 4px 16px rgba(244, 180, 0, 0.4);
  transition: var(--home-transition);
}

.home-page .hero-buttons .th-btn.style3:hover {
  background: #E5A800;
  border-color: #E5A800;
  color: #12345B;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(244, 180, 0, 0.5);
}

.home-page .hero-buttons .th-btn.style3 i {
  transition: transform 0.25s ease;
}

.home-page .hero-buttons .th-btn.style3:hover i {
  transform: translate(2px, -2px);
}

/* Secondary Button: Call Us */
.home-page .hero-buttons .th-btn.style2 {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--home-radius-full);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--home-transition);
}

.home-page .hero-buttons .th-btn.style2:hover {
  background: #FFFFFF;
  color: #12345B;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Hero Stats Counter Wrap */
.home-page .hero-counter-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-page .hero-counter {
  min-width: 135px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--home-radius-md);
  padding: 13px 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: var(--home-transition);
}

.home-page .hero-counter:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.home-page .hero-counter .box-number {
  font-size: 25px;
  font-weight: 800;
  color: #F4B400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.home-page .hero-counter .box-text {
  font-size: 13px;
  font-weight: 500;
  color: #E2E8F0;
  margin: 4px 0 0 0;
  white-space: nowrap;
}

/* Bubble graphics visually softened */
.home-page .bubble {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  filter: blur(1px);
  transition: opacity 0.4s ease;
  z-index: 1;
}

.home-page .bubble_1 { top: 12%; left: 8%; width: 50px; }
.home-page .bubble_2 { top: 25%; right: 10%; width: 45px; }
.home-page .bubble_3 { bottom: 15%; left: 25%; width: 40px; }
.home-page .bubble_4 { bottom: 20%; right: 20%; width: 55px; }
.home-page .bubble_5 { top: 60%; right: 40%; width: 35px; }

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.home-page .about-zigzag {
  padding: 90px 0;
  background: #FFFFFF;
}

.home-page .about-zigzag h6 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--home-light-blue);
  color: var(--home-blue);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--home-radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.home-page .about-zigzag h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--home-navy);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.home-page .about-zigzag h2 span {
  color: var(--home-blue) !important;
}

.home-page .about-zigzag > .container > .row > .col-lg-6 > p {
  color: var(--home-text-secondary);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.home-page .about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.home-page .point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-md);
  transition: var(--home-transition);
}

.home-page .point:hover {
  background: #FFFFFF;
  border-color: var(--home-border-focus);
  box-shadow: var(--home-shadow-md);
  transform: translateY(-2px);
}

.home-page .point i {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--home-navy);
  color: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--home-transition);
}

.home-page .point:hover i {
  background: var(--home-blue);
  transform: scale(1.05);
}

.home-page .point h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--home-navy);
  margin-bottom: 4px;
}

.home-page .point p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--home-text-secondary);
  margin: 0;
}

.home-page .about-image {
  position: relative;
  padding: 10px;
}

/* Polished modern rounded container replacing outdated polygon clip */
.home-page .zigzag-img {
  clip-path: none !important;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  box-shadow: var(--home-shadow-lg);
  border: 4px solid #FFFFFF;
  background: var(--home-surface);
  position: relative;
}

.home-page .zigzag-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-page .about-image:hover .zigzag-img img {
  transform: scale(1.02);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.home-page #service-sec {
  background: var(--home-surface);
  padding: 90px 0 95px;
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}

.home-page #service-sec .title-area {
  margin-bottom: 50px;
}

.home-page .service-card {
  display: flex;
  flex-direction: column;
  background: var(--home-surface-card);
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow-md);
  transition: var(--home-transition);
  height: 100%;
  position: relative;
}

.home-page .service-card:hover {
  background: #FFFFFF;
  border-color: var(--home-border-focus);
  box-shadow: var(--home-shadow-hover);
  transform: translateY(-5px);
}

.home-page .service-card .box-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #EDF2F7;
}

.home-page .service-card .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-page .service-card:hover .box-img img {
  transform: scale(1.04);
}

.home-page .service-card .box-content {
  padding: 24px 24px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home-page .service-card .box-icon {
  position: absolute;
  top: -26px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: var(--home-navy);
  color: #FFFFFF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 3px solid #FFFFFF;
  box-shadow: 0 8px 18px rgba(18, 52, 91, 0.18);
  transition: var(--home-transition);
  z-index: 2;
}

.home-page .service-card:hover .box-icon {
  background: var(--home-blue);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
}

.home-page .service-card .box-title {
  margin: 0 0 10px 0;
}

.home-page .service-card .box-title a {
  font-size: 19px;
  font-weight: 700;
  color: var(--home-navy);
  text-decoration: none;
  transition: var(--home-transition);
}

.home-page .service-card .box-title a:hover {
  color: var(--home-blue);
}

.home-page .service-card .box-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--home-text-secondary);
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.home-page .service-card .th-btn {
  align-self: flex-start;
  margin-top: auto;
  background: var(--home-light-blue);
  color: var(--home-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--home-radius-full);
  padding: 8px 20px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--home-transition);
}

.home-page .service-card .th-btn:hover {
  background: var(--home-blue);
  color: #FFFFFF;
  border-color: var(--home-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.home-page .service-card .th-btn i {
  transition: transform 0.2s ease;
}

.home-page .service-card .th-btn:hover i {
  transform: translate(2px, -2px);
}

/* ==========================================================================
   TRUSTED MAID SERVICES / WHY CHOOSE US SECTION (Redesigned)
   ========================================================================== */
.home-page .trusted-maid-sec {
  background: var(--home-surface);
  padding: 85px 0 80px;
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
  position: relative;
}

.home-page .trusted-sec-header {
  margin-bottom: 45px;
}

.home-page .trusted-sec-header .sub-title {
  background: #F5F3FF;
  color: #4C1D95;
  border: 1px solid rgba(76, 29, 149, 0.15);
}

.home-page .trusted-sec-header .sec-title {
  margin-bottom: 12px;
}

.home-page .trusted-sec-header .sec-text {
  max-width: 620px;
  font-size: 15.5px;
  line-height: 1.65;
}

.home-page .trusted-main-row {
  margin-bottom: 45px;
}

/* Left: Image Container */
.home-page .trusted-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-page .trusted-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px -4px rgba(18, 52, 91, 0.12), 0 4px 12px -2px rgba(18, 52, 91, 0.05);
  border: 4px solid #FFFFFF;
  background: #FFFFFF;
  transition: var(--home-transition);
}

.home-page .trusted-img-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px -4px rgba(18, 52, 91, 0.16), 0 6px 16px -2px rgba(18, 52, 91, 0.08);
}

.home-page .trusted-maid-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

/* Right: Content */
.home-page .trusted-content-col {
  padding-left: 30px;
}

.home-page .trusted-subheading {
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 700;
  color: var(--home-navy);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

/* 4 Benefit Cards Grid */
.home-page .trusted-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.home-page .benefit-card {
  background: #FFFFFF;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-md);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  box-shadow: var(--home-shadow-sm);
  transition: var(--home-transition);
}

.home-page .benefit-card:hover {
  background: #FFFFFF;
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--home-shadow-md);
}

.home-page .benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #EFF6FF;
  color: var(--home-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: var(--home-transition);
}

.home-page .benefit-card:nth-child(even) .benefit-icon {
  background: #F5F3FF;
  color: #4C1D95;
}

.home-page .benefit-card:hover .benefit-icon {
  background: var(--home-blue);
  color: #FFFFFF;
  transform: scale(1.05);
}

.home-page .benefit-body h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--home-navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.home-page .benefit-body p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--home-text-secondary);
  margin: 0;
}

/* CTA */
.home-page .trusted-cta-wrap {
  margin-top: 26px;
}

.home-page .trusted-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--home-blue);
  color: #FFFFFF !important;
  padding: 13px 30px;
  border-radius: var(--home-radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.32);
  transition: var(--home-transition);
}

.home-page .trusted-cta-btn:hover {
  background: var(--home-blue-hover);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.42);
}

.home-page .trusted-cta-btn i {
  transition: transform 0.25s ease;
}

.home-page .trusted-cta-btn:hover i {
  transform: translateX(4px);
}

/* Bottom Trust-Stat Row */
.home-page .trusted-stats-row {
  background: #FFFFFF;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-md);
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: var(--home-shadow-sm);
}

.home-page .trusted-stat-item {
  text-align: center;
  flex: 1;
}

.home-page .trusted-stat-item .stat-number {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--home-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.home-page .trusted-stat-item .stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--home-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.home-page .trusted-stat-divider {
  width: 1px;
  height: 38px;
  background: var(--home-border);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.home-page .why-rich {
  padding: 90px 0;
  background: #FFFFFF;
}

.home-page .why-card {
  height: 100%;
  background: var(--home-surface);
  border-radius: 22px;
  padding: 36px 32px;
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow-md);
}

.home-page .why-card .sub-title {
  margin-bottom: 12px;
}

.home-page .why-card .sec-title {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
}

.home-page .why-card > p {
  color: var(--home-text-secondary);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.home-page .why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.home-page .why-feature-box {
  background: #FFFFFF;
  padding: 16px;
  border-radius: var(--home-radius-md);
  border: 1px solid var(--home-border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--home-transition);
}

.home-page .why-feature-box:hover {
  border-color: var(--home-border-focus);
  box-shadow: var(--home-shadow-sm);
  transform: translateY(-2px);
}

.home-page .why-feature-box i {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--home-blue);
  width: 36px;
  height: 36px;
  background: var(--home-light-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .why-feature-box h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--home-navy);
  margin-bottom: 4px;
}

.home-page .why-feature-box p {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--home-text-secondary);
  margin: 0;
}

.home-page .why-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--home-border);
  text-align: center;
}

.home-page .why-stat h3 {
  color: var(--home-navy);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 2px;
  line-height: 1.1;
}

.home-page .why-stat span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--home-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-page .why-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .why-img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  min-height: 420px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow-lg);
  transform: none; /* remove awkward transform */
  transition: transform 0.35s ease;
}

.home-page .why-img:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   FAQ SECTION (Optimized for 60fps smooth scrolling & lightweight transitions)
   ========================================================================== */
.home-page .faq-modern-wrap {
  padding: 90px 0;
  background: var(--home-surface);
  border-top: 1px solid var(--home-border);
  contain: content;
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

.home-page .faq-images-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-page .faq-img {
  overflow: hidden;
  border-radius: var(--home-radius-lg);
  box-shadow: var(--home-shadow-md);
  border: 1px solid var(--home-border);
  contain: paint;
  background-color: #EDF2F7;
}

.home-page .faq-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  image-rendering: auto;
}

.home-page .faq-accordion {
  margin-top: 24px;
}

.home-page .faq-accordion .faq-item {
  background: #FFFFFF;
  border-radius: var(--home-radius-md);
  margin-bottom: 14px;
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  contain: layout style;
}

.home-page .faq-accordion .faq-item.active {
  border-color: var(--home-blue);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
}

.home-page .faq-accordion .faq-question {
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--home-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color 0.2s ease;
  min-height: 44px;
}

.home-page .faq-accordion .faq-item.active .faq-question {
  color: var(--home-blue);
}

.home-page .faq-accordion .faq-question i {
  color: var(--home-text-secondary);
  font-size: 14px;
  width: 28px;
  height: 28px;
  background: var(--home-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.home-page .faq-accordion .faq-item.active .faq-question i {
  transform: rotate(180deg);
  background: var(--home-light-blue);
  color: var(--home-blue);
}

.home-page .faq-accordion .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 22px;
  color: var(--home-text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
  transition: max-height 0.24s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, padding 0.24s ease;
}

.home-page .faq-accordion .faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 0 22px 20px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.home-page .testimonials-section {
  padding: 95px 0 90px;
  background: #FFFFFF;
}

.home-page .testimonials-section .sec-title {
  margin-bottom: 12px;
}

.home-page .testimonials-section .sec-title span {
  color: var(--home-gold) !important;
}

.home-page .testimonials-section > .container > p {
  color: var(--home-text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 50px;
}

.home-page .testimonial-card {
  background: #FFFFFF !important;
  border-radius: var(--home-radius-lg) !important;
  border: 1px solid var(--home-border) !important;
  box-shadow: var(--home-shadow-md) !important;
  padding: 32px 28px !important;
  display: flex;
  flex-direction: column;
  transition: var(--home-transition) !important;
  height: 100%;
}

.home-page .testimonial-card:hover {
  border-color: var(--home-border-focus) !important;
  box-shadow: var(--home-shadow-hover) !important;
  transform: translateY(-4px);
}

.home-page .testimonial-card .fa-star {
  color: var(--home-gold) !important;
  font-size: 15px;
  margin: 0 1px;
}

.home-page .testimonial-card > p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--home-text-dark);
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
  position: relative;
}

.home-page .testimonial-card img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--home-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.home-page .testimonial-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--home-navy);
  margin-bottom: 2px;
}

.home-page .testimonial-card small {
  font-size: 12.5px;
  color: var(--home-text-secondary) !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN (1440px, 1280px, 1024px, 768px, 480px, 360px)
   ========================================================================== */
@media (max-width: 1200px) {
  .home-page .hero-counter-wrap {
    gap: 14px;
  }
}

@media (max-width: 991px) {
  .home-page .th-hero-wrapper.hero-2 {
    min-height: auto;
    padding: 65px 0;
  }

  .home-page .hero-overlay {
    background: linear-gradient(
      180deg, 
      rgba(15, 55, 95, 0.88) 0%, 
      rgba(15, 55, 95, 0.75) 60%, 
      rgba(15, 55, 95, 0.45) 100%
    );
  }

  .home-page .hero-style2 {
    max-width: 100%;
  }

  .home-page .about-zigzag {
    padding: 70px 0;
  }

  .home-page .about-image {
    margin-top: 40px;
  }

  .home-page .trusted-content-col {
    padding-left: 15px;
    margin-top: 35px;
  }

  .home-page .trusted-img-wrapper {
    max-width: 440px;
  }

  .home-page .trusted-maid-img {
    min-height: 300px;
    max-height: 380px;
  }

  .home-page .why-rich {
    padding: 70px 0;
  }

  .home-page .why-img-col {
    margin-top: 30px;
  }

  .home-page .why-img {
    min-height: 320px;
  }

  .home-page .faq-modern-wrap {
    padding: 70px 0;
  }

  .home-page .faq-images-col {
    flex-direction: row;
    margin-bottom: 35px;
  }

  .home-page .faq-img {
    flex: 1;
  }

  .home-page .faq-img img {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .home-page .th-hero-wrapper.hero-2 {
    padding: 50px 0;
  }

  .home-page .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .home-page .hero-buttons .th-btn {
    justify-content: center;
    width: 100%;
    min-height: 46px;
  }

  .home-page .hero-counter-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .home-page .hero-counter:last-child {
    grid-column: span 2;
  }

  .home-page .hero-counter {
    min-width: 0;
    padding: 12px 14px;
  }

  .home-page .hero-counter .box-number {
    font-size: 22px;
  }

  .home-page .hero-counter .box-text {
    font-size: 12px;
  }

  .home-page .about-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-page .why-features {
    grid-template-columns: 1fr;
  }

  .home-page .why-stats {
    gap: 15px;
  }

  .home-page .faq-images-col {
    flex-direction: column;
  }

  .home-page .bubble {
    display: none; /* eliminate bubbles on mobile for clean layout */
  }

  .home-page .trusted-maid-sec {
    padding: 60px 0;
  }

  .home-page .trusted-benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-page .trusted-stats-row {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }

  .home-page .trusted-stat-divider {
    display: none;
  }

  .home-page .trusted-stat-item {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--home-border);
    width: 100%;
  }

  .home-page .trusted-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .home-page .trusted-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .home-page .hero-counter-wrap {
    grid-template-columns: 1fr;
  }

  .home-page .hero-counter:last-child {
    grid-column: span 1;
  }

  .home-page .why-card {
    padding: 24px 18px;
  }

  .home-page .why-stats {
    flex-direction: column;
    gap: 12px;
  }

  .home-page .why-stat {
    border-bottom: 1px solid var(--home-border);
    padding-bottom: 8px;
  }

  .home-page .why-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* Accessibility & Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
