/* ==========================================================================
   Hania Cleaning Service — Homepage Visual Enhancements
   Loaded AFTER style.css to override/enhance existing styles
   ========================================================================== */

/* ---- Global Polish ---- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Top Bar ---- */
.wrap {
  background: linear-gradient(90deg, #d94f8e 0%, #ef5ca4 50%, #f78cc4 100%);
}

.wrap .phone,
.wrap .phone a,
.wrap .mailus {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
}

/* ---- Navbar glass effect on scroll ---- */
.ftco-navbar-light.scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(51, 49, 59, 0.92) !important;
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---- Hero Section ---- */
.hero-wrap .overlay {
  background: linear-gradient(135deg, rgba(217, 79, 142, 0.7) 0%, rgba(51, 49, 59, 0.85) 100%) !important;
  opacity: 1 !important;
}

.slider-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
  animation: heroFadeInUp 1s ease-out both;
}

@media (max-width: 991.98px) {
  .slider-text h1 {
    font-size: 34px;
  }
}

.slider-text .subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  animation: heroFadeInUp 1s ease-out 0.15s both;
}

.slider-text p {
  animation: heroFadeInUp 1s ease-out 0.3s both;
}

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

/* Hero buttons */
.hero-wrap .btn-primary {
  background: linear-gradient(135deg, #ef5ca4, #d94f8e);
  border: none;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 50px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(239, 92, 164, 0.35);
}

.hero-wrap .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(239, 92, 164, 0.5);
  background: linear-gradient(135deg, #d94f8e, #c2417b);
  color: #fff;
}

.hero-wrap .btn-outline-white {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
  transition: all 0.35s ease;
  text-decoration: none;
}

.hero-wrap .btn-outline-white:hover {
  background: #fff;
  color: #d94f8e;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ---- Section headings ---- */
.heading-section .subheading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  color: #d94f8e;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.heading-section .subheading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ef5ca4, #f78cc4);
  border-radius: 2px;
}

.heading-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #2d2d2d;
}

/* ---- Service Cards ---- */
.services .d-block {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.services .d-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ef5ca4, #f78cc4);
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.services .d-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(239, 92, 164, 0.15);
  border-color: rgba(239, 92, 164, 0.15);
}

.services .d-block:hover::before {
  opacity: 1;
}

.services .icon {
  border-radius: 12px !important;
  background: linear-gradient(135deg, #ef5ca4, #f78cc4) !important;
  box-shadow: 0 6px 18px rgba(239, 92, 164, 0.3);
}

.services .icon:after {
  display: none !important;
}

.services .media-body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #2d2d2d;
}

.services .media-body p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.services .btn-custom {
  color: #d94f8e;
  border-color: #ef5ca4;
  font-weight: 600;
  transition: all 0.3s ease;
}

.services .btn-custom:hover {
  color: #fff;
  background: #ef5ca4;
  border-color: #ef5ca4;
  padding-bottom: 3px;
  text-decoration: none;
}

/* ---- Counter Section ---- */
.ftco-counter {
  background: linear-gradient(135deg, #ef5ca4 0%, #d94f8e 100%) !important;
  border-radius: 16px;
  padding: 40px 30px !important;
  box-shadow: 0 12px 40px rgba(239, 92, 164, 0.3);
}

.ftco-counter .text .number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 44px;
}

.ftco-counter .text span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ---- Testimonials ---- */
.testimony-section.ftco-bg-dark {
  background: linear-gradient(180deg, #2d2a33 0%, #3a3640 100%) !important;
}

.testimony-wrap {
  background: linear-gradient(135deg, #ef5ca4, #d94f8e) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimony-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.testimony-wrap:after {
  border-radius: 0 0 12px 12px !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

.testimony-wrap .name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.testimony-wrap .icon span {
  color: rgba(255, 255, 255, 0.15) !important;
  font-size: 50px;
}

.heading-section.heading-section-white .subheading {
  color: #f78cc4;
}

.heading-section.heading-section-white .subheading::after {
  background: linear-gradient(90deg, #f78cc4, rgba(247, 140, 196, 0.3));
}

/* ---- Pricing Cards ---- */
.block-7 {
  border-radius: 16px !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: visible;
}

.block-7:hover {
  transform: translateY(-10px);
}

.block-7 .icon {
  background: linear-gradient(135deg, #ef5ca4, #f78cc4) !important;
  box-shadow: 0 8px 24px rgba(239, 92, 164, 0.35) !important;
  transition: transform 0.3s ease;
}

.block-7:hover .icon {
  transform: scale(1.08);
}

.block-7 .heading-2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #2d2d2d !important;
}

.block-7 .price .number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700 !important;
  color: #d94f8e !important;
}

.block-7 .price sup {
  color: #d94f8e !important;
}

.block-7 .pricing-text li {
  font-size: 14px;
  color: #555 !important;
}

.block-7 .pricing-text li span.fa {
  color: #ef5ca4 !important;
}

.block-7 .btn-primary {
  border-radius: 50px !important;
  padding: 12px 30px !important;
  background: linear-gradient(135deg, #ef5ca4, #d94f8e) !important;
  border: none !important;
  transition: all 0.35s ease !important;
  box-shadow: 0 4px 15px rgba(239, 92, 164, 0.3) !important;
}

.block-7 .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 92, 164, 0.45) !important;
  background: linear-gradient(135deg, #d94f8e, #c2417b) !important;
  color: #fff !important;
}

/* Active / Popular pricing card */
.block-7.active {
  background: linear-gradient(135deg, #ef5ca4, #d94f8e) !important;
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(239, 92, 164, 0.35) !important;
  border-color: transparent !important;
}

.block-7.active .heading-2 {
  color: #fff !important;
}

.block-7.active .price .number,
.block-7.active .price sup {
  color: #fff !important;
}

.block-7.active .pricing-text li {
  color: rgba(255, 255, 255, 0.9) !important;
}

.block-7.active .pricing-text li span.fa {
  color: #fff !important;
}

.block-7.active .btn-primary {
  background: #fff !important;
  color: #d94f8e !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.block-7.active .btn-primary:hover {
  background: #f8f8f8 !important;
  color: #c2417b !important;
}

/* "Most Popular" badge */
.block-7.active {
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #333;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 20px;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(255, 183, 0, 0.35);
  white-space: nowrap;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, #ef5ca4 0%, #d94f8e 40%, #33313b 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {
  .cta-banner h2 {
    font-size: 28px;
  }
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.cta-banner .btn-cta {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  background: #fff;
  color: #d94f8e;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  font-family: 'Poppins', sans-serif;
}

.cta-banner .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  background: #fef0f6;
}

.cta-banner .btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

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

/* ---- Footer Gradient ---- */
footer {
  background: linear-gradient(135deg, #ef5ca4 0%, #d94f8e 60%, #b33870 100%) !important;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  margin-right: 8px;
  text-decoration: none !important;
  transition: all 0.35s ease;
}

.footer-social:hover {
  background: #fff;
  color: #d94f8e !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.footer-social i {
  font-size: 16px;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.25);
  width: 50px;
  margin-left: 0;
}

@media (max-width: 767.98px) {
  .footer-hr {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  position: relative;
  padding-left: 0;
}

.footer-links li a::before {
  content: '→';
  position: absolute;
  left: -18px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #fff;
}

.footer-links li a:hover {
  color: #fff !important;
  padding-left: 18px;
}

.footer-links li a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact li {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.footer-contact li i {
  margin-right: 10px;
  width: 18px;
  text-align: center;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #fff !important;
}

/* ---- Business Hours Card ---- */
.time-open-wrap {
  border-radius: 16px !important;
  background: linear-gradient(135deg, #ef5ca4, #d94f8e) !important;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2) !important;
}

.time-open-wrap .desc.bg-secondary {
  background: rgba(0, 0, 0, 0.15) !important;
  border-radius: 0 0 16px 16px;
}

.time-open-wrap .desc h2,
.time-open-wrap .desc .heading {
  font-family: 'Poppins', sans-serif;
}

/* ---- Section bg-light ---- */
.ftco-section.bg-light {
  background: linear-gradient(180deg, #fafbff 0%, #f0f2fa 100%) !important;
}

/* ---- Loader spinner color ---- */
#ftco-loader .path {
  stroke: #ef5ca4 !important;
}

/* ---- Scroll to top smoothness ---- */
* {
  scroll-margin-top: 80px;
}

/* ==========================================================================
   SUB-PAGE SPECIFIC ENHANCEMENTS
   ========================================================================== */

/* ---- Sub-page Hero Banners (hero-wrap-2) ---- */
.hero-wrap.hero-wrap-2 .overlay {
  background: linear-gradient(135deg, rgba(217, 79, 142, 0.75) 0%, rgba(51, 49, 59, 0.88) 100%) !important;
  opacity: 1 !important;
}

.hero-wrap.hero-wrap-2 .bread {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767.98px) {
  .hero-wrap.hero-wrap-2 .bread {
    font-size: 32px;
  }
}

.hero-wrap.hero-wrap-2 .breadcrumbs span a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.hero-wrap.hero-wrap-2 .breadcrumbs span a:hover {
  color: #f78cc4;
}

/* ---- About Page — Mission & Vision Cards ---- */
.block-7.hover-effect,
section.bg-light .block-7 {
  border-radius: 16px !important;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.block-7.hover-effect:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(239, 92, 164, 0.18) !important;
}

.block-7 .heading-2 {
  font-family: 'Poppins', sans-serif !important;
}

/* About page "Call Us Now" image section */
section.ftco-section .img-fluid.rounded {
  border-radius: 16px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

section.ftco-section .img-fluid.rounded:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

/* ---- Portfolio Page — Gallery ---- */
.image-popup {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-popup::after {
  content: '\f00e';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 28px;
  color: #fff;
  background: rgba(239, 92, 164, 0.85);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  opacity: 0;
  z-index: 2;
}

.image-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(239, 92, 164, 0.3) 0%, rgba(51, 49, 59, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
  border-radius: 12px;
}

.image-popup:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(239, 92, 164, 0.2);
}

.image-popup:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.image-popup:hover::before {
  opacity: 1;
}

.image-popup img {
  transition: transform 0.5s ease;
  border-radius: 12px !important;
  width: 100%;
}

.image-popup:hover img {
  transform: scale(1.08);
}

/* ---- Contact Page ---- */
/* "Ready to Get Started?" intro section */
.ftco-section h2[style*="ef5ca4"] {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* Contact form wrapper */
.contact-wrap {
  border-radius: 16px !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-wrap h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* Form inputs */
.contactForm .form-control {
  border: none !important;
  border-bottom: 2px solid #eee !important;
  border-radius: 0 !important;
  padding: 10px 0 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contactForm .form-control:focus {
  border-bottom-color: #ef5ca4 !important;
}

.contactForm .label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Contact form submit button */
.contactForm .btn-primary {
  border-radius: 50px !important;
  padding: 12px 35px !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ef5ca4, #d94f8e) !important;
  border: none !important;
  transition: all 0.35s ease !important;
  box-shadow: 0 4px 15px rgba(239, 92, 164, 0.3) !important;
}

.contactForm .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 92, 164, 0.45) !important;
  background: linear-gradient(135deg, #d94f8e, #c2417b) !important;
  color: #fff !important;
}

/* Contact info boxes (dbox) */
.dbox {
  transition: transform 0.3s ease;
}

.dbox:hover {
  transform: translateY(-4px);
}

.dbox .icon {
  background: linear-gradient(135deg, #ef5ca4, #f78cc4) !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 18px rgba(239, 92, 164, 0.3);
}

.dbox .icon:after {
  display: none !important;
}

.dbox .icon span {
  color: #fff !important;
}

/* Logo image in contact form */
.info-wrap.img {
  border-radius: 0 16px 16px 0 !important;
  background-color: #fef0f6 !important;
}

/* ---- Services Page — Video Section ---- */
.ftco-intro .overlay {
  background: linear-gradient(135deg, rgba(239, 92, 164, 0.8) 0%, rgba(51, 49, 59, 0.85) 100%) !important;
}

.ftco-intro h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.icon-video {
  transition: all 0.35s ease !important;
  box-shadow: 0 6px 25px rgba(239, 92, 164, 0.4) !important;
}

.icon-video:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(239, 92, 164, 0.55) !important;
}
