@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@700&family=Open+Sans:wght@400;500;700&display=swap");

:root {
  --cyan: #009ab5;
  --yellow: #f8cc00;
  --text: #111111;
  --gray: #555555;
  --white: #ffffff;
  --light: #f8f9fa;
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 400px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  color: #fff;
}

.hero-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 18px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.text {
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

/* ============================================================
   2. SERVICES CARDS SECTION
   ============================================================ */
.services-cards-section {
  position: relative;
  overflow: visible;
  background: #f8f9fa;
  padding: 50px 0 70px;
}

/* ── Centered Header ── */
.services-header {
  text-align: center;
  margin-bottom: 10px;
}

.services-title-section {
  display: inline-block;
}

.services-header .section-heading {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 10px;
}


.services-header__subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

/* ── Card ── */
.service-list-card {
  background: #fff;
  overflow: visible;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 30px;
}

.service-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

/* ── Image ── */
.service-media {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.service-media>a {
  display: block;
  position: relative;
}

.service-media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
  object-fit: cover;
}

.service-list-card:hover .service-media img {
  transform: scale(1.04);
}

.service-media__overlay {
  position: absolute;
  left: 14px;
  right: 0px;
  bottom: 50px;
  background: #ffffff;
  /* border-radius: 8px; */
  padding: 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.service-list-card:hover .service-media__overlay {
  opacity: 1;
}

.offer-overlay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #7FC056;
  color: #ffffff;
  margin-bottom: 10px;
  position: absolute;
  top: -16px;
}

.offer-overlay-icon svg {
  width: 16px;
  height: 16px;
}

.service-media__title {
  color: #000000;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.3;
}

.service-media__type {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
  letter-spacing: 0.2px;
}

/* Responsive */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-header .section-heading {
    font-size: 26px;
  }

  .service-media__title {
    font-size: 17px;
  }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 380px;
    padding: 60px 20px;
  }

  .hero-heading {
    font-size: 34px;
  }

  .services-cards-section {
    padding: 36px 0 24px;
  }

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

@media (max-width: 576px) {
  .hero-heading {
    font-size: 28px;
  }

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

@media (max-width: 400px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-heading {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .services-cards-section .container-1200 {
    display: flex;
    flex-direction: column;
  }

  .services-header {
    display: contents;
  }

  .services-title-section {
    order: 1;
  }

  .services-grid {
    order: 2;
    margin-top: 20px;
  }
}

/* ══════════════════════════════════════════════════════ CTA BANNER (Get 20% Off) ══════════════════════════════════════════════════════ */
.cta-banner-section {
  padding: 20px 0;
  background: linear-gradient(135deg, #E94800 0%, #D84402 100%);
}

.cta-banner {
  border-radius: 12px;
  padding: 30px 0px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cta-banner__icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(#FDF2E1 0%, #FF9802 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-banner__icon svg {
  width: 30px;
  height: 30px;
}

.cta-banner__text {
  flex: 1 1 320px;
}

.cta-banner__text h3 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.cta-banner__text p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 1);
  margin: 0;
  max-width: 440px;
}

.cta-banner__btn {
  flex: 0 0 auto;
  background: #F2941D;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 30px;
  /* border-radius: 5px; */
  border: 2px solid #F2941D;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-banner__btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #FF9802;
}

@media (max-width: 767px) {
  .cta-banner {
    padding: 26px 24px;
    justify-content: center;
  }

  .cta-banner__btn {
    align-self: stretch;
    text-align: center;
  }

  .cta-banner__text h3 {
    font-size: 18px;
    text-align: center;
  }
  .cta-banner__text p{
    text-align: center;
  }
}

.appt-section {
  position: relative;
  padding: 60px 0 90px;
}

.appt-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 260px;
  background-image:
    linear-gradient(rgba(20, 15, 10, 0.55), rgba(20, 15, 10, 0.55)),
    url('/img/contact-us-bg.webp');
  background-size: cover;
  background-position: center;
  filter: blur(1px);
}

.appt-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.appt-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-top: 70px;
}

.appt-form-side {
  background: #FCEBD3;
  border: 2px solid #F2861D;
  border-right: none;
  padding: 34px 38px;
}

.appt-title {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.appt-subtitle {
  font-size: 13.5px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 22px;
}

.appt-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.appt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.appt-form input,
.appt-form select {
  width: 100%;
  padding: 13px 14px;
  border: none;
  border-radius: 2px;
  background: #ffffff;
  font-size: 13.5px;
  color: #333;
  font-family: inherit;
  outline: none;
}

.appt-form input::placeholder {
  color: #9a9a9a;
}

.appt-form select {
  color: #000;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.appt-submit-wrap {
  position: relative;
  margin-top: 4px;
}

.appt-submit {
  width: 100%;
  background: #FF9802;
  color: #ffffff;
  border: none;
  padding: 15px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease;
  border: 2px solid #FF9802;
}

.appt-submit:hover {
  background: #ffffff;
  color: #000000;
  border: 2px solid #FF9802;
}

.appt-badge {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2D9BF0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.appt-badge svg {
  width: 13px;
  height: 13px;
  fill: #ffffff;
}

.appt-privacy {
  font-size: 16.5px;
  color: #00196E;
  margin-top: 10px;
}

.appt-image-side {
  position: relative;
  border: 2px solid #FD5003;
  border-left: none;
  min-height: 100%;
}

.appt-image-side img {
  width: 100%;
  height: 100%;
  border: 2px solid #FD5003;
  object-fit: cover;
  display: block;
}

@media (max-width: 800px) {
  .appt-card {
    grid-template-columns: 1fr;
  }

  .appt-form-side {
    border-right: 2px solid #FD5003;
    border-bottom: none;
  }

  .appt-image-side {
    border-left: 2px solid #FD5003;
    border-top: none;
    min-height: 260px;
  }

  .appt-row {
    grid-template-columns: 1fr;
  }
}

.appt-field {
  position: relative;
}

.appt-err {
  display: block;
  font-size: 11.5px;
  color: #d9302f;
  margin-top: 4px;
}