/*
Theme Name: Oage 2.0
Theme URI: https://outsourceage.com/
Description: Property Refresh HTX - custom redesign. Home page built from the Oage 2.0 HTML/CSS.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Author: Informatics Commerce
Author URI: https://outsourceage.com/
Text Domain: oage2
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree", sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.text-white {
  color: #fff;
}
.text-light {
  color: #e2e2eb;
}
.text-green {
  color: #79d352;
}
.text-dark-blue {
  color: #012b5d;
}
.bg-dark-blue {
  background-color: #012b5d;
}
.bg-green {
  background-color: #79d352;
}

.text-9xl {
  font-size: clamp(3rem, 9.5vw, 7rem);
}
.text-8xl {
  font-size: clamp(2.5rem, 7.5vw, 5.5rem);
}
.text-6xl {
  font-size: clamp(2.25rem, 6vw, 5rem);
}
.text-5xl {
  font-size: clamp(1.85rem, 5vw, 4rem);
}
.text-4xl {
  font-size: clamp(1.6rem, 4vw, 3rem);
}
.text-3xl {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.text-2xl {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
}
.text-xl {
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
}
.text-lg {
  font-size: clamp(0.95rem, 1.35vw, 1.25rem);
}
.text-md {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
}
.text-sm {
  font-size: 0.875rem;
}
.text-xs {
  font-size: 0.75rem;
}
.text-center {
  text-align: center;
}

.font-extrabold {
  font-weight: 900;
}
.font-bolder {
  font-weight: 800;
}
.font-bold {
  font-weight: bold;
}
.font-semibold {
  font-weight: 600;
}
.flex {
  display: flex;
}
.d-block {
  display: block;
}

.line-0 {
  line-height: 0.85;
}

.ml-3 {
  margin-left: 5px;
}

section {
  padding: 40px 6%;
}
.mt-2{
  margin-top: 5px;
}
.mt-3{
  margin-top: 10px;
}
.mt-4 {
  margin-top: 15px;
}

.mt-5 {
  margin-top: 20px;
}
.mt-10 {
  margin-top: 40px;
}

.btn-pill-green,
.btn-pill-blue {
  color: #fff;
  padding: clamp(14px, 1.6vw, 20px) clamp(24px, 3vw, 35px);
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  align-self: flex-start;
  max-width: fit-content;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
}

.btn-pill-green {
  background-color: #79d352;
}

.btn-pill-blue {
  background-color: #012b5d;
}

.home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
header {
  border-bottom: 5px solid white;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: #0157bb;
  background: linear-gradient(
    90deg,
    rgba(1, 87, 187, 1) 0%,
    rgba(83, 187, 255, 1) 69%
  );
  padding: 17px 6%;
}

.topbar .logo img {
  width: clamp(130px, 16vw, 180px);
  height: auto;
  display: block;
}

.topbar .contact-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 4vw, 6rem);
}
.topbar .contact-links .review {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topbar .contact-links .review .stars {
  display: flex;
  gap: 5px;
}

.topbar .contact-links .call-now {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar .contact-links .working-hour {
  display: flex;
  align-items: center;
  gap: 20px;
}
.icon {
  margin-top: 5px;
  flex-shrink: 0;
}
.icon svg {
  display: block;
}

.nav-links {
  background: #034897;
  background: linear-gradient(
    0deg,
    rgba(3, 72, 151, 1) 12%,
    rgba(25, 116, 207, 1) 35%,
    rgba(66, 149, 203, 1) 50%,
    rgba(25, 116, 207, 1) 65%,
    rgba(3, 72, 151, 1) 88%
  );
  display: flex;
  justify-content: center;
  padding: 0px 6%;
}

.nav-menu {
  display: flex;
  width: 100%;
}

.nav-item {
  color: #fff;
  font-size: clamp(0.85rem, 1.35vw, 1.4rem);
  text-transform: uppercase;
  font-weight: 500;
  width: 100%;
  padding: 20px 5px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}
.nav-btn {
  color: #fff;
  font-size: clamp(0.85rem, 1.35vw, 1.4rem);
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 20px 5px;
  background-color: #79d352;
  cursor: pointer;
}

.nav-item.active {
  background-color: rgba(0, 63, 139, 0.6);
  color: #79d352;
}

.topbar-quote {
  display: none;
  background-color: #a2d900;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 10px 16px;
  border-radius: 5px;
  white-space: nowrap;
}

.mobile-infobar {
  display: none;
  background-color: #fff;
  padding: 9px 5.5%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.mi-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.mi-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #012b5d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.mi-item svg {
  flex-shrink: 0;
}

.mi-sep {
  width: 1px;
  height: 13px;
  background-color: #c9ced6;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  gap: 6px;
  width: 30px;
}

.nav-toggle-bar {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background-color: #012b5d;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* Section start  */
.section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding-bottom: 20px;
  padding-top: 30px;
}

.our-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  justify-content: center;
  align-items: stretch;
  gap: 15px;
}

/* Services card  */
.service-card {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 20px;
}

.service-card-img {
  width: 90%;
  aspect-ratio: 330 / 206;
  object-fit: contain;
}

.service-card p {
  padding: 13px;
}

.service-card button {
  background-color: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

/* high-pressure */
.high-pressure {
  min-height: 100vh;
  font-family: "Montserrat", sans-serif !important;
}

.high-pressure h2,
.high-pressure h2 span,
.high-pressure h5,
.high-pressure p {
  font-family: "Montserrat", sans-serif;
}

.content-with-image {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 30px;
  font-family: "Montserrat", sans-serif;
}

.text-wrap {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.img-wrap {
  flex: 1 1 50%;
  min-width: 0;
  overflow: hidden;
  border-radius: 30px;
}

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

.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

.commitment-box {
  border-radius: 30px;
  background-image: url("assets/images/guarantee-bg.jpg");
  background-position: center;
  background-size: cover;
  padding: clamp(24px, 4vw, 50px);
  color: white;
  position: relative;
}

.commitment-box .text-section {
  max-width: 500px;
}

.commitment-box .text-section p {
  word-spacing: 3px;
  line-height: 1.5;
}
.guarantee{
  max-width: 300px;
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translate(-60%, -50%);
}

.our-commitment ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.our-commitment li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.our-commitment li svg {
  flex-shrink: 0;
}

.view-all-services {
  display: none;
  width: fit-content;
  margin: 26px auto 0;
  padding-bottom: 8px;
  color: #012b5d;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 3px solid #79d352;
}

.reviews {
  background-color: #fff;
}

.reviews-meta {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #012b5d;
  font-weight: 700;
  font-size: 0.95rem;
}

.reviews-stars {
  color: #79d352;
  letter-spacing: 1px;
}

.write-review {
  background-color: #1f7cd4;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 9px 26px;
  border-radius: 50px;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.review-card {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #79d352;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card:nth-child(even) .review-avatar {
  background-color: #012b5d;
}

.review-name {
  color: #012b5d;
  font-weight: 700;
  font-size: 0.95rem;
}

.review-date {
  color: #6b7c93;
  font-size: 0.8rem;
}

.review-stars {
  color: #ffc01d;
  letter-spacing: 2px;
  font-size: 1.05rem;
}

.review-text {
  color: #012b5d;
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
  flex: 1;
}

.review-more {
  color: #6b7c93;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: #6b7c93;
  font-size: 0.78rem;
  line-height: 1.25;
}

.review-source a {
  color: #1f7cd4;
  text-decoration: none;
}

.site-footer {
  padding: 50px 6%;
  color: #e2e2eb;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 30px;
  align-items: start;
}

.footer-logo {
  width: 190px;
  height: auto;
  display: block;
}

.footer-follow {
  margin-top: 22px;
  color: #fff;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  margin-top: 22px;
  color: #fff;
  font-size: 0.95rem;
}

.footer-credit {
  margin-top: 6px;
  color: #fff;
  font-size: 0.95rem;
}

.footer-credit a {
  color: #79d352;
  text-decoration: none;
}

.footer-col h6 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col li,
.footer-col a {
  color: #e2e2eb;
  font-size: 0.95rem;
  text-decoration: none;
}

.hero_sec {
  flex: 1;
  background-image:
    linear-gradient(90deg, rgba(26, 88, 196, 0) 35%, rgba(27, 86, 187, 0) 100%),
    url("assets/images/heroimg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.sec_heading h1 {
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.sec_heading p:last-of-type {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.4;
  margin-bottom: 30px;
  max-width: 550px;
}

.hero_btn .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgb(121, 211, 82);
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  padding: clamp(10px, 1.2vw, 14px) clamp(20px, 2.5vw, 30px);
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.hero_btn .btn:hover {
  background-color: #5fa32e;
}

@media (max-width: 1400px) {
  .topbar .contact-links {
    gap: 2.5rem;
  }
}

@media (max-width: 1200px) {
  .topbar {
    padding: 15px 4%;
  }
  .nav-links {
    padding: 0 3%;
  }
  section {
    padding: 40px 4%;
  }
  .topbar .contact-links .call-now,
  .topbar .contact-links .working-hour {
    gap: 12px;
  }
  .topbar .contact-links .call-now .icon svg,
  .topbar .contact-links .working-hour .icon svg {
    width: 26px;
    height: auto;
  }
}

@media (max-width: 991px) {
  .topbar {
    background: #1f7cd4;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 13px 5.5%;
  }

  .topbar .logo img {
    width: clamp(100px, 30vw, 119px);
  }

  .topbar .contact-links {
    display: none;
  }

  .topbar-quote {
    display: inline-block;
  }

  .mobile-infobar {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    padding: 0;
  }

  header.menu-open .nav-links {
    display: flex;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  header {
    border-bottom: 0;
  }

  .nav-item,
  .nav-btn {
    font-size: 1.05rem;
    padding: 14px 5.5%;
    text-align: left;
    width: 100%;
  }

  .home {
    min-height: auto;
  }

  .hero_sec {
    min-height: 70vh;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image:
      linear-gradient(
        90deg,
        rgba(1, 43, 93, 0.82) 0%,
        rgba(1, 43, 93, 0.55) 60%,
        rgba(1, 43, 93, 0.25) 100%
      ),
      url("assets/images/heroimg.png");
  }

  .high-pressure {
    min-height: auto;
  }

  .content-with-image {
    flex-direction: column;
    gap: 24px;
  }

  .img-wrap {
    order: -1;
  }

  .high-pressure h2 {
    text-align: left;
  }

  .text-wrap {
    flex: 1 1 auto;
    padding-right: 0;
  }

  .reviews-meta {
    display: flex;
  }

  .review-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .review-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .review-text {
    text-align: left;
  }

  .review-more {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .img-wrap {
    flex: 1 1 auto;
    max-height: 420px;
  }

  .img-wrap > img {
    height: auto;
  }

  .commitment-box .text-section {
    max-width: 100%;
  }

  .commitment-box {
    display: flex;
    flex-direction: column;
  }

  .commitment-box .text-section {
    order: 1;
  }

  .guarantee {
    order: 2;
    position: static;
    transform: none;
    margin: 24px auto 0;
    max-width: 240px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 32px 5%;
  }

  .hero_sec {
    min-height: 60vh;
  }

  .sec_heading p:last-of-type {
    max-width: 100%;
  }

  .service-card p br,
  .commitment-box .text-section p br {
    display: none;
  }

  .section-header {
    padding-top: 10px;
  }

  .content-with-image {
    margin-top: 20px;
  }

  .mt-10 {
    margin-top: 24px;
  }

  .our-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card {
    padding: 16px 12px;
    border-radius: 12px;
  }

  .service-card h5 {
    font-size: 0.85rem;
    line-height: 1.25;
  }

  .service-card p {
    font-size: 0.72rem;
    padding: 4px 0;
    line-height: 1.35;
  }

  .service-card button {
    font-size: 0.72rem;
  }

  .view-all-services {
    display: block;
  }

  .service-card--extra {
    display: none;
  }

  .site-footer {
    padding: 34px 5%;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-col,
  .footer-follow {
    display: none;
  }

  .footer-logo {
    width: 165px;
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-copy {
    margin-top: 20px;
    font-size: 0.85rem;
  }

  .footer-credit {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 28px 5%;
  }

  .hero_sec {
    min-height: 520px;
    align-items: center;
    padding-bottom: 40px;
    background-image:
      linear-gradient(
        180deg,
        rgba(1, 43, 93, 0.35) 0%,
        rgba(1, 43, 93, 0.75) 45%,
        rgba(1, 43, 93, 0.92) 100%
      ),
      url("assets/images/heroimg.png");
  }

  .sec_heading h1 {
    letter-spacing: 0.5px;
  }


  .service-card {
    padding: 15px 9px;
  }

  .img-wrap {
    border-radius: 20px;
    max-height: 300px;
  }

  .commitment-box {
    border-radius: 20px;
  }

  .our-commitment li {
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .mi-item {
    font-size: 11px;
  }
  .topbar-quote {
    font-size: 12px;
    padding: 9px 11px;
  }
}
