/* ============================================
   INNER PAGES — Shared Styles
   Linked after style.css on all inner pages
   ============================================ */

/* ------ Override service.css: white nav + hero text on dark overlay ------ */
.hero .navbar li a {
  color: #fff;
}

.hero .navbar .heroIcons i {
  color: #fff;
}

.hero .navbar .heroIcons a {
  border-color: #fff;
}

.hero .navbar .btn-free {
  color: #fff;
}

.hero h1,
.hero h4,
.hero h5 {
  color: #fff;
}

/* ------ Hero: shorter for inner pages ------ */
.hero.inner-hero {
  min-height: 65vh;
}

.inner-hero .hero-div {
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 50px;
}

.page-banner {
  text-align: center;
}

.page-banner .label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-family: Inter;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.page-banner h1 {
  color: #fff;
  margin-bottom: 20px;
}

.page-banner .sub {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-stats {
  padding: 100px 0;
  background: #fff;
}

.about-stat-box {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid #e0e0e0;
}

.about-stat-box:last-child {
  border-right: none;
}

.about-stat-num {
  color: var(--BLUE, #0d61df);
  font-family: Inter;
  font-size: 74px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.about-stat-label {
  color: #000;
  font-family: Inter;
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-story {
  background: #f1f1f1;
  padding: 100px 0;
}

.about-story-img {
  border-radius: 39px;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.about-values {
  padding: 100px 0;
  background: #fff;
}

.value-card {
  background: #f1f1f1;
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  border-top: 4px solid var(--BLUE, #0d61df);
}

.value-card i {
  font-size: 36px;
  color: var(--BLUE, #0d61df);
  margin-bottom: 20px;
  display: block;
}

.about-focus {
  padding: 100px 0;
  background: #000;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-section {
  background: #f1f1f1;
  padding: 100px 0;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ccc center / cover no-repeat;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.gallery-item {
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
}



/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-top {
  background: #fff;
  padding: 0px 0 60px;
}

.contact-info-card {
  border-radius: 24px;
  background: #f1f1f1;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border-top: 4px solid var(--BLUE, #0d61df);
}

.contact-info-card i {
  font-size: 36px;
  color: var(--BLUE, #0d61df);
  margin-bottom: 16px;
  display: block;
}

.contact-form-section {
  background: #fff;
  padding: 60px 0 100px;
}

.contact-form-wrap {
  background: #000;
  border-radius: 52px;
  padding: 60px 50px;
}

.contact-form-wrap .form-label {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.7px;
  text-transform: capitalize;
  background: linear-gradient(0deg, #d5f2ff 0%, #fcffe2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 6px;
}

.contact-form-wrap .form-control {
  border: none;
  background-color: transparent;
  border-bottom: 3px solid #d5f2ff;
  border-radius: 0;
  padding: 8px 4px;
  color: white;
  margin-bottom: 28px;
}

.contact-form-wrap .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--BLUE, #0d61df);
  background-color: transparent;
  color: white;
  outline: none;
}

.contact-side {
  padding: 40px;
  background: #f1f1f1;
  border-radius: 39px;
  height: 100%;
}

.area-pill {
  display: inline-block;
  border-radius: 19px;
  border: 1px solid #ccc;
  padding: 5px 20px;
  font-family: Inter;
  font-size: 15px;
  margin: 4px;
  color: #333;
}

/* ============================================
   COMMERCIAL CLEANING PAGE
   ============================================ */

.services-overview {
  background: #fff;
  padding: 100px 0;
}

.services-detail {
  background: #f1f1f1;
  padding: 100px 0;
}

.service-detail-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  border-top: 4px solid var(--BLUE, #0d61df);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 12px 40px rgba(13, 97, 223, 0.12);
  transform: translateY(-4px);
}

.service-detail-card i {
  font-size: 36px;
  color: var(--BLUE, #0d61df);
  margin-bottom: 20px;
  display: block;
}

.industries-detail {
  padding: 100px 0;
  background: #000;
}

.industry-card {
  border-radius: 39px;
  min-height: 280px;
  padding: 40px 30px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 24px;
}

.industry-medical {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%),
    url('../images/exc1.png') center / cover no-repeat;
  background-color: #1a3050;
}

.industry-corporate {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%),
    url('../images/corporate.png') center / cover no-repeat;
  background-color: #1a3050;
}

.industry-gym {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%),
    url('../images/gym.png') center / cover no-repeat;
  background-color: #1a3050;
}

.industry-education {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%),
    url('../images/arrianzaschool.jpeg') center / cover no-repeat;
  background-color: #1a3050;
}

.industry-retail {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%),
    url('../images/retail.jpeg') center / cover no-repeat;
  background-color: #1a3050;
}

.industry-hospitality {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%),
    url('../images/event.jpeg') center / cover no-repeat;
  background-color: #1a3050;
}

.industry-restaurant {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%),
    url('../images/arrianzkitchen.jpeg') center / cover no-repeat;
  background-color: #1a3050;
}

.industry-auto {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%),
    url('../images/arrianzacard.jpeg') center / cover no-repeat;
  background-color: #1a3050;
}

.process-section {
  background: #f1f1f1;
  padding: 100px 0;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
}

.process-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--BLUE, #0d61df);
  color: white;
  font-family: Inter;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ------ yourFree CTA (mirrored from service.css) ------ */
.yourFree {
  border-radius: 90px;
  background: var(--BLUE, #0d61df);
  padding: 100px;
  position: relative;
  overflow: hidden;
}

.yourFree h1 {
  font-family: Bayon;
  line-height: 1;
  color: #fff;
}

.yourFree .half {
  font-weight: 400;
  color: #fff;
}

.yourImg-cta {
  position: absolute;
  width: 50%;
  bottom: 0;
  right: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1600px) {
  .about-stat-num {
    font-size: 60px;
  }
}

@media (max-width: 1200px) {
  .about-stat-num {
    font-size: 44px;
  }

  .contact-form-wrap {
    padding: 40px 30px;
  }

  .yourFree {
    padding: 80px 60px;
  }
}

@media (max-width: 900px) {
  .hero.inner-hero {
    min-height: auto;
    padding-bottom: 50px;
  }

  .about-stat-box {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .about-stat-box:last-child {
    border-bottom: none;
  }

  .about-stat-num {
    font-size: 38px;
  }

  .about-story-img {
    min-height: 280px;
    margin-bottom: 30px;
  }

  .contact-form-wrap {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .contact-side {
    margin-top: 30px;
    padding: 30px;
    border-radius: 24px;
  }

  .yourFree {
    padding: 60px 30px;
    border-radius: 40px;
    margin: 0 10px;
  }

  .industry-card {
    min-height: 200px;
  }

  .process-step {
    padding: 20px 10px;
  }

  .about-stats {
    padding: 50px 0;
  }

  .about-story {
    padding: 50px 0;
  }

  .about-values {
    padding: 50px 0;
  }

  .about-focus {
    padding: 50px 0;
  }

  .gallery-section {
    padding: 50px 0;
  }

  .contact-form-section {
    padding: 30px 0 50px;
  }

  .services-overview {
    padding: 50px 0;
  }

  .services-detail {
    padding: 50px 0;
  }

  .industries-detail {
    padding: 50px 0;
  }

  .process-section {
    padding: 50px 0;
  }

  .yourFree {
    padding: 40px 20px;
  }
}
