/* ==========================================================================
   HANDYCH - CLEANING SERVICES WEBSITE STYLESHEET
   ========================================================================== */

:root {
  --primary-navy: #0A2240;
  --navy-dark: #07182D;
  --navy-light: #12345E;
  --yellow-main: #FDBA12;
  --yellow-hover: #E5A50B;
  --yellow-light: #FEF6E4;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --bg-light: #F8FAFC;
  --bg-soft-blue: #F0F5FA;
  --accent-blue: #1D70B8;
  --card-shadow: 0 10px 30px rgba(10, 34, 64, 0.06);
  --card-hover-shadow: 0 20px 40px rgba(10, 34, 64, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* Common Buttons */
.btn-yellow {
  background-color: var(--yellow-main);
  color: #0A2240;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(253, 186, 18, 0.35);
  cursor: pointer;
}

.btn-yellow:hover {
  background-color: var(--yellow-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(253, 186, 18, 0.5);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-navy {
  background-color: var(--primary-navy);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  padding: 9px 22px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-navy:hover {
  background-color: var(--navy-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 34, 64, 0.25);
}

/* Premium Luxury Service View Button */
.btn-service-view-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0A192F 0%, #172A45 100%);
  color: #FED956 !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(254, 218, 86, 0.35);
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(10, 25, 47, 0.12);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.btn-service-view-premium:hover {
  background: #FED956;
  color: #0A192F !important;
  border-color: #FED956;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(254, 218, 86, 0.4);
}

.btn-service-view-premium i {
  transition: transform 0.25s ease;
  font-size: 0.82rem;
}

.btn-service-view-premium:hover i {
  transform: translateX(4px);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3.2rem;
}

.section-subtitle-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D97706;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-subtitle-tag::before,
.section-subtitle-tag::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--yellow-main);
  border-radius: 2px;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 620px;
  margin: 0 auto;
}

/* Top Navbar */
.site-navbar {
  background: #ffffff;
  padding: 14px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.navbar-brand-logo:hover .navbar-logo-img {
  transform: scale(1.03);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0A2240 0%, #1D70B8 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.25rem;
  position: relative;
}

.brand-title {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
}

.brand-title span {
  color: #1D70B8;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.navbar-nav .nav-link {
  color: var(--primary-navy);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 18px !important;
  position: relative;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #1D70B8;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 18px;
  right: 18px;
  height: 2.5px;
  background-color: var(--yellow-main);
  border-radius: 2px;
}

/* ==========================================================================
   HERO CAROUSEL SLIDER (FULL-SIZE, RESPONSIVE, DYNAMIC CONTENT PER SLIDE)
   ========================================================================== */
.hero-carousel-wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--navy-dark);
}

.hero-carousel-slide {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 85px 0 95px;
}

/* Gradient overlay on each slide */
.hero-carousel-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg, 
    rgba(7, 24, 45, 0.97) 0%, 
    rgba(10, 34, 64, 0.90) 48%, 
    rgba(10, 34, 64, 0.45) 80%, 
    rgba(10, 34, 64, 0.25) 100%
  );
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

/* Slide Entry Animations */
.carousel-item.active .hero-slide-tag {
  animation: fadeInDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.carousel-item.active .hero-slide-title {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.carousel-item.active .hero-slide-subtitle {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.carousel-item.active .hero-slide-actions {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.carousel-item.active .hero-slide-badges {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

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

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

.hero-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow-main);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(253, 186, 18, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(253, 186, 18, 0.3);
}

.hero-slide-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-slide-title .text-yellow {
  color: var(--yellow-main);
}

.hero-slide-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 34px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 35px;
}

.hero-slide-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

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

.hero-badge-item i {
  color: var(--yellow-main);
  font-size: 1rem;
}

/* Carousel Control Arrows */
.hero-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.hero-carousel-control:hover {
  background: var(--yellow-main);
  color: var(--primary-navy);
  border-color: var(--yellow-main);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(253, 186, 18, 0.4);
}

.hero-carousel-control.prev {
  left: 25px;
}

.hero-carousel-control.next {
  right: 25px;
}

/* Custom Bottom Indicators */
.hero-carousel-indicators {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.hero-carousel-indicators button.active {
  width: 32px;
  border-radius: 12px;
  background: var(--yellow-main);
  box-shadow: 0 2px 8px rgba(253, 186, 18, 0.5);
}

/* ==========================================================================
   POPULAR SERVICES 4-COLUMN PREMIUM GRID (col-md-3)
   ========================================================================== */
.services-section {
  padding: 90px 0;
  background-color: #F8FAFC;
  position: relative;
}

.service-premium-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #E2E8F0;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(10, 34, 64, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.service-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(10, 34, 64, 0.1);
  border-color: #FED956;
}

.service-img-container {
  position: relative;
  width: 100%;
  height: 205px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  background-color: #0A192F;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-premium-card:hover .service-img-container img {
  transform: scale(1.08);
}

.service-floating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(8px);
  color: #FED956;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(254, 218, 86, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  line-height: 1.35;
}

.service-card-title a {
  transition: color 0.2s ease;
}

.service-card-title a:hover {
  color: #D97706 !important;
}

.service-card-title i {
  color: #FED956;
  font-size: 1rem;
}

.service-card-desc {
  font-size: 0.86rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed #E2E8F0;
  margin-top: auto;
  width: 100%;
}

.service-price-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex-shrink: 0;
}

.price-prefix {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 2px;
  display: block;
}

.service-card-price {
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--primary-navy);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  display: block;
}

.service-price-block {
  display: flex;
  flex-direction: column;
}

.service-price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.5px;
}

.service-price-amount {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-navy);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}

.service-premium-card .btn-yellow {
  padding: 9px 20px;
  font-size: 0.88rem;
}

/* ==========================================================================
   ABOUT US SECTION (LEFT IMAGE & RIGHT CONTENT) - ULTRA LUXURY & ELEGANT
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-img-showcase {
  position: relative;
  padding-bottom: 50px;
  padding-right: 30px;
}

.about-main-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(10, 34, 64, 0.12);
  border: 6px solid #ffffff;
  position: relative;
  z-index: 1;
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-main-img-wrap:hover .about-main-img {
  transform: scale(1.05);
}

.about-secondary-img-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 240px;
  border-radius: 22px;
  overflow: hidden;
  border: 5px solid #ffffff;
  box-shadow: 0 15px 35px rgba(10, 34, 64, 0.18);
  z-index: 2;
}

.about-secondary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-exp-float-badge {
  position: absolute;
  top: 30px;
  left: -15px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, #163B66 100%);
  color: #ffffff;
  padding: 16px 22px;
  border-radius: 20px;
  border: 2.5px solid var(--yellow-main);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadge 4s ease-in-out infinite;
}

.about-exp-float-badge .exp-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow-main);
  line-height: 1;
}

.about-exp-float-badge .exp-txt {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.about-content-wrap {
  padding-left: 20px;
}

.about-content-wrap .section-title {
  text-align: left;
  margin-bottom: 18px;
}

.about-content-wrap .section-subtitle-tag {
  display: inline-block;
}

.about-lead-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.6;
  margin-bottom: 14px;
}

.about-desc-text {
  font-size: 0.94rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 26px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.about-feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8FAFC;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.about-feature-box:hover {
  background: #ffffff;
  border-color: rgba(29, 112, 184, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10, 34, 64, 0.06);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EBF4FC 0%, #DCEBFA 100%);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-feature-box:hover .about-feature-icon {
  background: var(--yellow-main);
  color: var(--primary-navy);
}

.about-feature-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0;
}

.about-stats-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px dashed #E2E8F0;
  margin-top: 10px;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
}

.about-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748B;
  margin-top: 4px;
}

/* Responsive Rules for About Section */
@media (max-width: 991.98px) {
  .about-section {
    padding: 70px 0;
  }
  .about-img-showcase {
    padding-bottom: 30px;
    padding-right: 0;
    max-width: 520px;
    margin: 0 auto 30px;
  }
  .about-main-img {
    height: 380px;
  }
  .about-secondary-img-wrap {
    height: 190px;
    width: 52%;
  }
  .about-content-wrap {
    padding-left: 0;
    text-align: center;
  }
  .about-content-wrap .section-title {
    text-align: center;
  }
  .about-features-grid {
    text-align: left;
  }
  .about-stats-row {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 50px 0;
  }
  .about-img-showcase {
    padding-bottom: 25px;
    margin-bottom: 25px;
    max-width: 100%;
  }
  .about-main-img {
    height: 290px;
  }
  .about-main-img-wrap {
    border-radius: 20px;
    border-width: 4px;
  }
  .about-secondary-img-wrap {
    height: 140px;
    width: 50%;
    border-radius: 16px;
    border-width: 3px;
    bottom: -10px;
    right: 0;
  }
  .about-exp-float-badge {
    top: 15px;
    left: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    gap: 8px;
  }
  .about-exp-float-badge .exp-num {
    font-size: 1.4rem;
  }
  .about-exp-float-badge .exp-txt {
    font-size: 0.65rem;
  }
  .about-lead-text {
    font-size: 1.02rem;
    margin-bottom: 10px;
  }
  .about-desc-text {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }
  .about-feature-box {
    padding: 12px 14px;
    border-radius: 12px;
  }
  .about-feature-title {
    font-size: 0.88rem;
  }
  .about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 18px;
    text-align: center;
  }
  .about-stat-num {
    font-size: 1.45rem;
  }
  .about-stat-label {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .about-main-img {
    height: 240px;
  }
  .about-secondary-img-wrap {
    height: 110px;
    width: 46%;
  }
  .about-exp-float-badge {
    padding: 8px 12px;
  }
  .about-exp-float-badge .exp-num {
    font-size: 1.2rem;
  }
  .about-stat-num {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   WHY CHOOSE US (YOUR TRUSTED CLEANING PARTNER) - ULTRA LUXURY & PREMIUM
   ========================================================================== */
.why-us-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 50%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(29, 112, 184, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-us-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(253, 186, 18, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.feature-box-premium {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 24px;
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 8px 24px rgba(10, 34, 64, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.feature-box-premium::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: transparent;
  transition: background 0.3s ease;
}

.feature-box-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(10, 34, 64, 0.1);
  border-color: rgba(29, 112, 184, 0.3);
}

.feature-box-premium:hover::before {
  background: linear-gradient(180deg, var(--yellow-main), #1D70B8);
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #EBF4FC 0%, #DCEBFA 100%);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all 0.35s ease;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(29, 112, 184, 0.1);
}

.feature-box-premium:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #163B66 100%);
  color: var(--yellow-main);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 8px 18px rgba(10, 34, 64, 0.25);
}

.feature-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}

.feature-desc {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* Center Showcase Showcase Image */
.why-showcase-container {
  position: relative;
  text-align: center;
  padding: 15px;
}

.why-image-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  height: 88%;
  background: linear-gradient(135deg, rgba(29, 112, 184, 0.2), rgba(253, 186, 18, 0.2));
  border-radius: 32px;
  filter: blur(25px);
  z-index: 1;
}

.why-center-img-frame {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(10, 34, 64, 0.18);
  border: 5px solid #ffffff;
  display: inline-block;
  max-width: 380px;
  width: 100%;
}

.why-center-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-center-img-frame:hover .why-center-img {
  transform: scale(1.04);
}

/* Floating Glassmorphic Badges on Center Image */
.badge-experience-floating {
  position: absolute;
  top: 30px;
  right: -10px;
  z-index: 3;
  background: linear-gradient(135deg, rgba(10, 34, 64, 0.95) 0%, rgba(22, 59, 102, 0.95) 100%);
  backdrop-filter: blur(10px);
  border: 2.5px solid var(--yellow-main);
  border-radius: 20px;
  padding: 14px 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  animation: floatBadge 4.5s ease-in-out infinite;
}

.badge-experience-floating .badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--yellow-main);
  line-height: 1;
}

.badge-experience-floating .badge-txt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #F1F5F9;
  line-height: 1.25;
}

.badge-client-satisfaction {
  position: absolute;
  bottom: 30px;
  left: -10px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 12px 18px;
  box-shadow: 0 14px 30px rgba(10, 34, 64, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadgeReverse 4.5s ease-in-out infinite;
}

.satisfaction-icon {
  width: 42px;
  height: 42px;
  background: #FEF3C7;
  color: #D97706;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.satisfaction-text .score {
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary-navy);
  line-height: 1.1;
}

.satisfaction-text .label {
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 600;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatBadgeReverse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ==========================================================================
   SERVICE CATEGORIES (EXPLORE OUR CLEANING SERVICES) - ULTRA PREMIUM
   ========================================================================== */
.categories-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.cat-nav-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
  background: #F8FAFC;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(10, 34, 64, 0.03);
}

.cat-pill-btn {
  background: transparent;
  color: #64748B;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cat-pill-btn i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.cat-pill-btn:hover {
  color: var(--primary-navy);
  background: rgba(255, 255, 255, 0.9);
}

.cat-pill-btn.active {
  background: var(--primary-navy);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(10, 34, 64, 0.2);
}

.cat-pill-btn.active i {
  color: var(--yellow-main);
  transform: scale(1.1);
}

/* Luxury Category Cards */
.cat-card-premium {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 34, 64, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cat-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(10, 34, 64, 0.12);
  border-color: rgba(29, 112, 184, 0.35);
}

.cat-card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cat-card-premium:hover .cat-card-img {
  transform: scale(1.08);
}

.cat-card-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 34, 64, 0) 40%, rgba(10, 34, 64, 0.5) 100%);
  pointer-events: none;
}

.cat-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 34, 64, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cat-card-tag i {
  color: var(--yellow-main);
}

.cat-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cat-card-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.cat-card-desc {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 16px;
}

.cat-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cat-feature-item {
  font-size: 0.82rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.cat-feature-item i {
  color: #16A34A;
  font-size: 0.75rem;
}

.cat-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cat-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-decoration: none;
  padding: 8px 16px;
  background: #F1F5F9;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.cat-card-premium:hover .cat-view-btn {
  background: var(--yellow-main);
  color: var(--primary-navy);
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(253, 186, 18, 0.35);
}

/* ==========================================================================
   TESTIMONIALS (WHAT OUR CLIENTS SAY) - LUXURY SLIDER (3 AT A TIME)
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(29, 112, 184, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.testimonial-card-luxury {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(10, 34, 64, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 10px 5px 25px 5px;
}

.testimonial-card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 34, 64, 0.1);
  border-color: rgba(253, 186, 18, 0.5);
}

.testi-quote-badge {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 2.4rem;
  color: rgba(29, 112, 184, 0.12);
  line-height: 1;
  font-family: serif;
}

.testimonial-card-luxury:hover .testi-quote-badge {
  color: rgba(253, 186, 18, 0.35);
}

.testimonial-user-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.testi-avatar-frame {
  position: relative;
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--yellow-main) 0%, #1D70B8 100%);
  box-shadow: 0 4px 12px rgba(10, 34, 64, 0.12);
}

.testi-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  display: block;
}

.testi-verified-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #16A34A;
  color: #ffffff;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.testi-name {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 2px;
}

.testi-service-tag {
  font-size: 0.78rem;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.testi-stars-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #F59E0B;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.testi-quote {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.65;
  font-style: normal;
  flex-grow: 1;
  margin: 0;
}

/* Swiper / Owl Custom Navigation and Pagination */
.testi-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testi-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #CBD5E1;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(10, 34, 64, 0.06);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 1rem;
}

.testi-nav-btn:hover {
  background: var(--yellow-main);
  color: var(--primary-navy);
  border-color: var(--yellow-main);
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(253, 186, 18, 0.4);
}

.testi-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #CBD5E1;
  opacity: 1;
  transition: all 0.35s ease;
  margin: 0 4px;
}

.testi-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-navy);
  width: 26px;
  border-radius: 8px;
}

/* ==========================================================================
   MID BANNER CTA - CENTER ALIGNED & FIXED PARALLAX BACKGROUND
   ========================================================================== */
.mid-cta-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 34, 64, 0.9) 0%, rgba(22, 59, 102, 0.88) 100%), 
              url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=85') center center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  padding: 110px 0;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.mid-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(253, 186, 18, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.mid-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(253, 186, 18, 0.4);
  color: var(--yellow-main);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mid-cta-title {
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.mid-cta-title .text-yellow {
  color: var(--yellow-main);
}

.mid-cta-desc {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  margin: 0 auto 36px auto;
  line-height: 1.65;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mid-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.mid-cta-banner .btn-yellow {
  padding: 14px 34px;
  font-size: 1.05rem;
  box-shadow: 0 8px 25px rgba(253, 186, 18, 0.4);
}

.mid-cta-banner .btn-outline-white {
  padding: 13px 32px;
  font-size: 1.05rem;
}

/* ==========================================================================
   SOCIAL & REELS SHOWCASE
   ========================================================================== */
.reels-section {
  padding: 85px 0;
  background-color: #ffffff;
}

.social-left-card {
  background: #F8FAFC;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid #EEF2F6;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.social-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.social-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 8px;
}

.social-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.social-btn-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s;
}

.social-btn-circle:hover {
  transform: translateY(-3px);
  color: #fff;
}

.bg-fb { background-color: #1877F2; }
.bg-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.bg-yt { background-color: #FF0000; }
.bg-tt { background-color: #000000; }

.social-stamp-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 15px;
}

.social-stamp-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.stamp-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px dashed var(--yellow-main);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Outfit', cursive, sans-serif;
  font-weight: 800;
  color: var(--primary-navy);
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reel-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 340px;
  background-color: #000;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: all 0.3s;
}

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

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.4s ease;
}

.reel-card:hover img {
  transform: scale(1.05);
  opacity: 0.95;
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  border: 2px solid #ffffff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s;
}

.reel-card:hover .reel-play-btn {
  background: var(--yellow-main);
  border-color: var(--yellow-main);
  color: #0A2240;
  transform: translate(-50%, -50%) scale(1.1);
}

.reel-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 34, 64, 0.95) 100%);
  color: #ffffff;
}

.reel-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.25;
  color: #ffffff;
}

.reel-stats {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 12px;
}

/* ==========================================================================
   BLOG / EXPERT ADVICE (3 COLUMNS col-md-4) - ULTRA LUXURY & PREMIUM
   ========================================================================== */
.blog-section {
  padding: 100px 0;
  background: #F8FAFC;
  position: relative;
}

.blog-card-premium {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(10, 34, 64, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(10, 34, 64, 0.12);
  border-color: rgba(29, 112, 184, 0.35);
}

.blog-img-container {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.blog-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-premium:hover .blog-img-container img {
  transform: scale(1.08);
}

.blog-badge-luxury {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 34, 64, 0.85);
  backdrop-filter: blur(8px);
  color: var(--yellow-main);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(253, 186, 18, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-read-time {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: #334155;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: #94A3B8;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta-item i {
  color: #1D70B8;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.38;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.blog-card-premium:hover .blog-title {
  color: #1D70B8;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-author-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--yellow-main);
}

.blog-author-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.1;
}

.blog-link-btn {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #F1F5F9;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-premium:hover .blog-link-btn {
  background: var(--yellow-main);
  color: var(--primary-navy);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(253, 186, 18, 0.35);
}

/* ==========================================================================
   CONTACT SECTION & FORM - ULTRA LUXURY & ELEGANT
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.contact-map-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  height: 100%;
  min-height: 440px;
  box-shadow: 0 10px 30px rgba(10, 34, 64, 0.05);
  position: relative;
}

.contact-info-card-premium {
  background: linear-gradient(135deg, #0A2240 0%, #163B66 100%);
  border-radius: 24px;
  padding: 34px 28px;
  height: 100%;
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(10, 34, 64, 0.15);
  position: relative;
  overflow: hidden;
}

.contact-info-card-premium::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(253, 186, 18, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-info-card-premium .contact-card-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-row-luxury {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-row-luxury:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon-box-luxury {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--yellow-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-info-row-luxury:hover .contact-icon-box-luxury {
  background: var(--yellow-main);
  color: var(--primary-navy);
  transform: scale(1.08) rotate(5deg);
}

.contact-info-text-luxury h6 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-info-text-luxury p {
  font-size: 0.86rem;
  color: #CBD5E1;
  margin: 0;
  line-height: 1.5;
}

.enquiry-form-card-premium {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 10px 30px rgba(10, 34, 64, 0.05);
  height: 100%;
}

.enquiry-form-card-premium .contact-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 22px;
}

.enquiry-form-card-premium .form-control,
.enquiry-form-card-premium .form-select {
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 0.88rem;
  background-color: #F8FAFC;
  transition: all 0.25s ease;
  color: var(--text-dark);
}

.enquiry-form-card-premium .form-control:focus,
.enquiry-form-card-premium .form-select:focus {
  background-color: #ffffff;
  border-color: #1D70B8;
  box-shadow: 0 0 0 4px rgba(29, 112, 184, 0.12);
}

.enquiry-form-card-premium .form-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 5px;
}

/* ==========================================================================
   FOOTER - ULTRA LUXURY DARK NAVY
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #061528 0%, #030C18 100%);
  color: #94A3B8;
  padding: 85px 0 30px;
  font-size: 0.9rem;
  border-top: 4px solid var(--yellow-main);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  height: 300px;
  background: radial-gradient(circle at 50% 0%, rgba(29, 112, 184, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.2px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--yellow-main);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--yellow-main);
  transform: translateX(5px);
}

.footer-newsletter-wrap {
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  color: #ffffff;
  font-size: 0.88rem;
  width: 100%;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: var(--yellow-main);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(253, 186, 18, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
}

.footer-bottom a {
  color: #94A3B8;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--yellow-main);
}

/* ==========================================================================
   MODAL DIALOGS
   ========================================================================== */
.modal-content {
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.modal-header {
  background: var(--primary-navy);
  color: #ffffff;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.modal-header .btn-close {
  filter: invert(1);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
/* =========================================================
   LUXURY REELS & SOCIAL SHOWCASE
========================================================= */
.reels-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #F4F8FC 100%);
  position: relative;
  overflow: hidden;
}

.reels-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 112, 184, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Left Social Hub Card */
.social-left-card-luxury {
  background: linear-gradient(145deg, #0A2240 0%, #0d2e57 100%);
  border-radius: 28px;
  padding: 36px 32px;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 45px rgba(10, 34, 64, 0.18);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-left-card-luxury::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(247, 185, 36, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.social-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 185, 36, 0.15);
  color: var(--yellow-main);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(247, 185, 36, 0.3);
}

.social-card-heading {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 14px;
}

.social-card-lead {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn-ig-gradient {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.35);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
}

.btn-ig-gradient:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(220, 39, 67, 0.5);
  color: #ffffff;
}

.social-circle-pills {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-pill-icon:hover {
  background: var(--yellow-main);
  color: var(--primary-navy);
  border-color: var(--yellow-main);
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(247, 185, 36, 0.35);
}

/* Stamp Image Frame in Left Card */
.social-stamp-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.social-stamp-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.social-stamp-box:hover .social-stamp-img {
  transform: scale(1.06);
}

.social-stamp-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(10, 34, 64, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Reel Header & Navigation */
.reels-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.reels-title-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.reels-title-wrap p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.reels-nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #E2E8F0;
  background: #ffffff;
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 14px rgba(10, 34, 64, 0.06);
}

.reel-nav-btn:hover {
  background: var(--primary-navy);
  color: var(--yellow-main);
  border-color: var(--primary-navy);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 22px rgba(10, 34, 64, 0.2);
}

.reel-nav-btn:active {
  transform: translateY(0) scale(0.95);
}

/* Swiper Container for Reels */
.reels-swiper {
  width: 100%;
  overflow: hidden;
  padding: 8px 4px 20px;
}

/* Premium Pure Video Reel Cards (Clean, No Captions/Badges) */
.reel-card-pure {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(10, 34, 64, 0.12);
  border: 2.5px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #0A2240;
}

.reel-card-pure:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 50px rgba(10, 34, 64, 0.25);
  border-color: var(--yellow-main);
}

.reel-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reel-card-pure:hover .reel-img-cover {
  transform: scale(1.08);
}

/* Central Glowing Play Button with Ripple Effect */
.reel-card-pure .reel-play-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 3;
  padding-left: 3px;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.reel-card-pure:hover .reel-play-center-btn {
  background: var(--yellow-main);
  color: var(--primary-navy);
  border-color: var(--yellow-main);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 30px rgba(247, 185, 36, 0.85);
}

/* Subtle Glass Vignette on Video Edges */
.reel-card-pure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 45%, rgba(10, 34, 64, 0.5) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.reel-card-pure:hover::after {
  opacity: 0.7;
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
  .hero-slide-title {
    font-size: 2.8rem;
  }
  .hero-carousel-slide {
    min-height: 520px;
    padding: 60px 0 80px;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .why-center-img {
    max-width: 100%;
    height: 360px;
    margin-bottom: 30px;
  }
  .feature-item {
    margin-bottom: 24px;
  }
  .hero-carousel-control {
    display: none;
  }
  .social-left-card-luxury {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .hero-slide-title {
    font-size: 2.2rem;
  }
  .hero-slide-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .hero-carousel-slide {
    min-height: 480px;
    padding: 45px 0 70px;
  }
  .site-navbar {
    padding: 10px 0;
  }
  .hero-slide-tag {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }
  .hero-slide-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-slide-actions .btn-yellow,
  .hero-slide-actions .btn-outline-white {
    width: 100%;
  }
  .hero-slide-badges {
    gap: 12px;
    font-size: 0.8rem;
  }
  .reels-section {
    padding: 60px 0;
  }
  body {
    padding-bottom: 64px;
  }
}
