@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@700&family=Open+Sans:wght@400;500;700&display=swap");

:root {
  --primary-blue: #40b3f1;
  --dark-blue: #2b86b7;
  --text-dark: #000;
  --bg-light: #f7f9fc;
}

body {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
.font-condensed {
  font-family: "Open Sans Condensed", sans-serif;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 15px;
}

.hero-title {
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
  font-size: 55px;
  font-family: "Open Sans Condensed" !important;
  font-weight: 600;
  line-height: 127%;
}

.hero-subtitle {
  max-width: 670px;
  position: relative;
  font-size: 21px;
  line-height: 38px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  text-align: center;
  display: inline-block;
  /* height: 38px; */
  margin-top: 20px;
  margin-bottom: 10px;
  text-shadow:
    2px 15px 15px rgba(0, 0, 0, 0.95),
    0 0 20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 0, 0, 0.6),
    2px 2px 3px rgba(0, 0, 0, 1);
}

.btn-hero {
  background-color: #23729a;
  color: white;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  background-color: var(--dark-blue);
  color: white;
}

/* Promo Banner */
.promo-banner {
  background: #23729a;
  padding: 24px 0;
  color: white;
}

/* About & Content Sections */
.section-padding {
  padding: 60px 0;
}

.bg-light-custom {
  background-color: var(--bg-light);
}

.text-primary-custom {
  color: var(--primary-blue) !important;
}

.about-card {
  flex: 1;
  position: relative;
  background: #fff;
  border-radius: 12px;
  color: #000;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 20px 20px;
}

.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(64, 179, 241, 0.22),
    rgba(64, 179, 241, 0.12)
  );
  clip-path: polygon(0 0, 28% 0, 90% 100%, 0 100%);
  border-radius: 12px;
  pointer-events: none;
}

.custom-img {
  /* width: 100%; */
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

/* Cleaning Process Steps */
/* .process-step {
        background: white;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 20px;
        transition: transform 0.3s, box-shadow 0.3s;
        height: 100%;
    }

    .process-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(64, 179, 241, 0.15);
        border-color: var(--dark-blue);
    } */

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--dark-blue);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Why Choose List */
.why-choose-wrap {
  background: #eaf8ff;
  padding: 40px;
  border-radius: 16px;
  position: relative;
}

.why-choose-wrap h2 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 600;
  font-family: "Open Sans Condensed", sans-serif;
}

.why-choose-wrap p {
  font-size: 18px;
  line-height: 35px;
  font-weight: 500;
  color: #000;
  margin-top: 8px;
  margin-bottom: 0;
}

.why-choose-wrap h2 span {
  color: #40b3f1;
}

.why-choose-wrap ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
  margin: 20px 0;
  padding: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-wrap ul li {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 35px;
  text-align: left;
}

.why-choose-wrap ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: white;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.check-list li {
  position: relative;
  padding-left: 35px;
  font-weight: 500;
  font-size: 1.1rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: white;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

/* Heirloom CTA */
.heirloom-cta {
  background: var(--primary-blue);
  padding: 40px 0;
}

.heirloom-cta h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  font-family: "Open Sans Condensed", sans-serif;
  color: #2b86b7;
}

.heirloom-cta p {
  margin: 0;
  color: #000;
  line-height: 1.6;
  font-size: 17px;
}

.heirloom-inner {
  background: white;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-cta-action {
  background: var(--dark-blue);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s;
}

.btn-cta-action:hover {
  transform: scale(1.05);
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-section {
    height: 400px;
  }

  .heirloom-inner {
    flex-direction: column;
    text-align: center;
  }

  .custom-img {
    /* height: 300px; */
  }
}

.about-card h2 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  font-family: "Open Sans Condensed", sans-serif;
  color: #000;
  margin-bottom: 16px;
}

.about-card h2 span {
  color: #40b3f1;
}

.about-card p {
  font-size: 17px !important;
  line-height: 28px;
  color: #000;
  text-align: justify;
  margin-bottom: 24px;
}

.points-section h2 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 600;
  font-family: "Open Sans Condensed", sans-serif;
  /* text-align: center; */
  margin-bottom: 40px;
}

.points-section h2 span {
  color: #40b3f1;
}

.points-section h3 {
  color: #000000;
  font-size: 17px;
  font-weight: 600;
  line-height: 42px;
  text-transform: uppercase;
  margin-top: -6px;
}

.points-section p {
  font-size: 17px;
  line-height: 28px;
  color: #000;
}

.why-choose-dots {
  position: absolute;
  border-radius: 50%;
  background: #2b86b7;
}

.why-choose-dot-left {
  width: 14px;
  height: 14px;
  top: 18px;
  left: 18px;
}

.why-choose-dot-right {
  width: 22px;
  height: 22px;
  top: 28px;
  right: 28px;
}

.heirloom-cta__dot {
  position: absolute;
  background: #2b86b7;
  border-radius: 50%;
  opacity: 0.7;

  50% {
    transform: scale(1.4);
    opacity: 0.4;
  }
}

@media (max-width: 480px) {
  .why-choose-wrap ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .promo-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
