/* ========================================= ROOT / VARIABLES ========================================= */
:root {
  --cyan: #13a0b2;
  --cyan-dark: #1fa8b8;
  --yellow: #f8cc00;
  --blue: #58b2e0;
  --dark: #1a1a1a;
  --text: #444;
  --gray: #555555;
  --light-bg: #f5fbfd;
  --white: #ffffff;
  --border: #e2eef4;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #000000;
  background-color: #fff;
}
/* ========================================= GLOBAL UTILITIES ========================================= */
.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: "Georgia", "Times New Roman", serif;
  text-align: center;
}
.section-heading span {
  color: var(--cyan);
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 6px;
  text-align: center;
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
}
.section-subtext {
  font-size: 15px;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: center;
} /* ========================================= 1. HERO SLIDER ========================================= */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 520px;
}
.hs-track {
  position: relative;
  height: 100%;
}
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 0;
}
.hs-slide.active {
  opacity: 1;
  z-index: 1;
}
.hs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hs-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.4); */
}
.hs-content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 760px;
}
.hs-content h1,
.hs-content h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  font-family: "Georgia", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hs-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  margin-bottom: 28px;
  line-height: 1.5;
}
.hs-btn {
  display: inline-block;
  background: rgba(0, 152, 179, 1);
  color: #fff;
  padding: 13px 36px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
  letter-spacing: 0.5px;
  margin-top: 20px;
}
.hs-btn:hover {
  background: #fdc600;
  transform: translateY(-2px);
}
.hs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 152, 179, 0.9) !important;
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s;
  border-radius: 50px;
}
.hs-nav:hover {
  background-color: rgba(0, 152, 179, 1) !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 4px 15px rgba(0, 152, 179, 0.5) !important;
}
.hs-prev {
  left: 16px;
}
.hs-next {
  right: 16px;
}
.hs-dots {
  position: absolute;
  bottom: 18px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.hs-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
  border: none;
  border: 1px solid #fff;
}
.hs-dot.active {
  background: #fff;
  transform: scale(1.25);
}
/* ========================================= 2. WHO WE ARE — FLOAT SPLIT LAYOUT ========================================= */ /* clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.we-are-section {
  width: 100%;
  overflow: hidden; /* contains floats */
  font-size: 0; /* removes inline-block gap if needed */
} /* ── LEFT 50% ── */
.wea-left {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  min-height: 480px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  box-sizing: border-box;
  font-size: 16px;
} /* dark scrim */
.wea-left-opacity {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.42);
}
.wea-left-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
} /* Full-width teal title bar at the top */
.wea-site-title {
  display: block;
  width: 100%;
  background: var(--cyan);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  padding: 14px 24px;
  margin: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 2;
} /* Video pinned to bottom-right */
.wea-video-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 62%;
  max-width: 500px;
  z-index: 2;
}
.wea-video-float video {
  width: 100%;
  display: block;
  border-radius: 3px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
} /* ── RIGHT 50% ── */
.wea-right {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  min-height: 480px;
  background: #2d3142;
  box-sizing: border-box;
  font-size: 16px;
}
.wea-right-body {
  padding: 50px 44px;
}
.wea-heading {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  font-family: "Georgia", serif;
} /* Short amber underline */
.wea-underline {
  width: 44px;
  height: 3px;
  background: #e8a020;
  border-radius: 2px;
  margin-bottom: 22px;
}
.wea-right-body p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 14px;
} /* Stats row */
.wea-stats {
  display: table;
  width: 100%;
  margin-top: 28px;
  padding-top: 22px; /* border-top: 1px solid rgba(255, 255, 255, .2); */
  border-collapse: collapse;
}
.wea-stat-item {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 0 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  width: 33.33%;
}
.wea-stat-item.wea-no-border {
  border-right: none;
}
.wea-stat-item p {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.5 !important;
} /* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .wea-left,
  .wea-right {
    display: block;
    width: 100%;
  }
  .wea-left {
    min-height: 360px;
  }
  .wea-right {
    min-height: auto;
  }
  .wea-video-float {
    width: 55%;
  }
  .wea-right-body {
    padding: 36px 28px;
  }
}
@media (max-width: 576px) {
  .wea-left {
    min-height: 280px;
  }
  .wea-site-title {
    font-size: 17px;
    padding: 12px 16px;
  }
  .wea-video-float {
    width: 60%;
    right: 10px;
    bottom: 10px;
  }
  .wea-right-body {
    padding: 28px 18px;
  }
  .wea-heading {
    font-size: 21px;
  }
  .wea-right-body p {
    font-size: 14px;
  }
  .wea-stat-item p {
    font-size: 13px !important;
  }
}
/* ========================================= 3. SERVICES SECTION ========================================= */
/* ============================================================ SERVICES SECTION ============================================================ */

/* ============================================================ SERVICES SECTION ============================================================ */

.services-section {
  padding: 60px 0;
  background: #ffffff;
}

/* ── Section title ── */
.services-main-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 40px;
  letter-spacing: 1px;
}

.service-card .srv-extra {
  display: grid !important;
}

/* ── Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Card ── */
.service-card {
  background: #13a0b2; /* teal background */
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card-link:hover {
  text-decoration: none;
  color: inherit;
}

/* ── Image with yellow border ── */
.service-image-wrap {
  position: relative;
  /* padding: 12px 12px 0; */
}

.service-image-wrap img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  /* border: 4px solid #f5c518; */
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.03);
}

/* ── Title bar (on teal bg) ── */
.service-title-bar {
  padding: 14px 12px 12px;
  text-align: center;
}

.service-title-bar h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

/* ── Subtitle bar (gray) ── */
.service-subtitle-bar {
  background: #e8e8e8;
  padding: 10px 12px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.service-subtitle-bar:hover {
  color: #000 !important;
  background-color: #fdc600 !important;
}

.service-subtitle-bar span {
  font-size: 18px;
  font-weight: 600;
  color: #4a90a4;
  text-transform: capitalize;
  transition: color 0.2s ease;
}

.service-card:hover .service-subtitle-bar span {
  color: #000000;
}

/* ── View All Toggle ── */
.srv-toggle-wrap {
  text-align: center;
  margin-top: 40px;
}

.srv-toggle-btn {
  margin-top: 16px;
  border-radius: 4px;
  background: #0098b3;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
  padding: 14px 28px;
  border: none !important;
}

.btn-text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.srv-toggle-btn:hover,
.srv-toggle-btn.is-open {
  background: #fdc600;
  color: #fff;
}

.btn-arrow i {
  transition: transform 0.4s;
}

.srv-toggle-btn.is-open .btn-arrow i {
  transform: rotate(180deg);
}

/* ============================================================ RESPONSIVE ============================================================ */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .services-main-title {
    font-size: 26px;
  }

  .service-image-wrap img {
    height: 140px;
  }

  .service-title-bar h3 {
    font-size: 12px;
  }

  .service-subtitle-bar span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image-wrap img {
    height: 200px;
  }
}

/* ========================================= RESPONSIVE ========================================= */
@media (max-width: 1100px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-us .row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .hero-slider {
    height: 420px;
  }
  .hs-content h1,
  .hs-content h2 {
    font-size: 34px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-header {
    flex-direction: column;
    gap: 36px;
  }
  .testi-headline {
    flex: none;
    width: 100%;
    text-align: center;
  }
  .offers-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .msrv-two-col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .hero-slider {
    height: 380px;
  }
  .hs-content h1,
  .hs-content h2 {
    font-size: 26px;
  }
  .hs-content p {
    font-size: 15px;
  }
  .section-heading {
    font-size: 26px;
  }
  .who-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  .msrv-panel-inner {
    padding: 24px 20px;
  }
  .cta-form-box {
    padding: 26px 22px;
  } /* .msrv-tabs { flex-wrap: wrap; } */
  .testi-card {
    padding: 24px 20px;
    flex: 0 0 100%;
  }
}
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .service-media img {
    height: auto;
    margin: 14px 10px 0;
    width: calc(100% - 20px);
  }
}
@media (max-width: 480px) {
  .hero-slider {
    height: 280px;
  }
  .hs-content h1,
  .hs-content h2 {
    font-size: 22px;
  }
  .hs-btn {
    padding: 11px 24px;
    font-size: 14px;
  }
  .who-stat {
    flex-direction: row;
    text-align: left;
  }
  .hs-nav {
    padding: 5px 10px;
  }
}
@media (max-width: 400px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contact-us .row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contact-cta {
  background: #fff;
  padding: 40px 0 70px;
}
.contact-cta__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: start;
  box-sizing: border-box;
}
.contact-cta__heading {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--cyan);
  margin: 0 0 20px;
} /* Info cards */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.contact-info-card {
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 16px 20px;
  background: #fff;
}
.contact-cta__address {
  font-size: 15px;
  color: var(--cyan);
  font-weight: 700;
  margin: 0;
}
.contact-cta__phone {
  font-size: 16px;
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}
.contact-cta__phone:hover {
  text-decoration: underline;
} /* Working hours with floating label */
.contact-info-card--hours {
  position: relative;
  padding-top: 28px;
  margin-top: 22px;
}
.contact-info-card--hours::before {
  content: "WORKING HOURS";
  position: absolute;
  top: -12px;
  left: 18px;
  background: #fff;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.5px;
}
.contact-cta__hours {
  font-size: 14px;
  color: #000;
  margin: 0;
} /* Form */
.contact-cta__form {
  width: 100%;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 13px;
  color: #888;
}
.form-field input,
.form-field textarea {
  border: 1px solid var(--cyan);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 15px;
  color: #000;
  background: #fafafa;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  transition:
    box-shadow 0.2s,
    background 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aaa;
}
.form-field input:focus,
.form-field textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 154, 181, 0.12);
}
.form-field--full {
  grid-column: 1 / -1;
}
.form-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.btn-form-outline {
  display: inline-block;
  background: #fff;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
  border-radius: 25px;
  padding: 11px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
  font-family: "Open Sans", sans-serif;
}
.btn-form-outline:hover {
  background: var(--cyan);
  color: #fff;
}
.btn-form-cyan {
  display: inline-block;
  background: var(--cyan);
  color: #fff;
  border: 1.5px solid var(--cyan);
  border-radius: 25px;
  padding: 11px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
}
.btn-form-cyan:hover {
  background: #007a90;
  color: #fff;
  text-decoration: none;
} /* Alerts */
.contact-alert {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-alert--success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.contact-alert--error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
} /* ============================================================ 8. CONTACT CTA - Mobile Styles ============================================================ */
@media (max-width: 768px) {
  .contact-cta {
    padding: 40px 0;
  } /* Stack left and right sections vertically */
  .contact-cta__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
  .contact-cta__left,
  .contact-cta__right {
    width: 100%;
  } /* Center the heading */
  .contact-cta__heading {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
  } /* Adjust contact info cards spacing */
  .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  } /* Make form rows stack vertically */
  .contact-cta__form .form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  .contact-cta__form .form-field {
    width: 100%;
  } /* Make buttons stack and take full width */
  .contact-cta__form .form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
  .contact-cta__form .btn-form-outline,
  .contact-cta__form .btn-form-cyan {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================ CONTACT / VIDEO SECTION ============================================================ */

.featured-about {
  padding: 60px 0;
  background: #ffffff;
}

.featured-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-about .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.featured-about .clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ── Page Content ── */
#page-content {
  width: 100%;
}

#page-content .container {
  padding: 0;
}

.page-content {
  padding: 0;
}

.contact-us .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* ── Column Base ── */
.col-md-6 {
  width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
}

/* ── Section Headings ── */
.contact-us h3.black {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}

.contact-us h3.black strong {
  font-weight: 800;
}

/* ── Map Section ── */
.contacy-us-map-section {
  width: 100%;
  margin-bottom: 20px;
}

.contacy-us-map-section iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 4px;
  display: block;
}

/* ── Address Details ── */
.contact-us h5.black {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px;
}

.address-details {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 0;
}

.addr-icon {
  width: 40px;
  height: 40px;
  background: #f5c518;
  color: #0095ae;
  padding: 10px;
  border-radius: 4px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.address-details p {
  margin: 0;
  font-size: 14px;
  color: #333333;
}

.address-details p span {
  color: #1a1a1a;
  font-weight: 600;
}

.address-details p a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.address-details p a:hover {
  color: #13a0b2;
}

.address-details p a strong {
  font-weight: 700;
}

.address-details p {
  margin: 0;
  font-size: 14px;
  color: #333333;
}

.address-details p span {
  color: #1a1a1a;
  font-weight: 600;
}

.address-details p a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.address-details p a:hover {
  color: #13a0b2;
}

.address-details p a strong {
  font-weight: 700;
}

/* ── Video Section ── */
.panel.panel-default {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
}

.panel-body {
  padding: 0;
}

.panel-body video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
@media (max-width: 576px) {
  .addr-icon {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .col-md-6 {
    width: 100%;
    margin-bottom: 30px;
  }

  .col-md-6:last-child {
    margin-bottom: 0;
  }

  .contact-us h3.black {
    font-size: 24px;
  }

  .contacy-us-map-section iframe {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .featured-about {
    padding: 40px 0;
  }

  .contact-us h3.black {
    font-size: 20px;
  }

  .contacy-us-map-section iframe {
    height: 200px;
  }

  .address-details i.fa {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .address-details p {
    font-size: 13px;
  }
}

.featured-listing {
  background: url("/images/drapery-cleaning-main.jpg") !important;
}
.featured-about {
  margin-top: 0px !important;
}

#page-content {
  background: rgba(255, 255, 255, 0.73);
}

/* ============================================================ OFFERS SECTION ============================================================ */

.featured-listing {
  padding: 60px 0;
  background: #f8f9fa;
}

.featured-listing .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section Title ── */
.offers-title {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin: 0 0 40px;
  letter-spacing: 1px;
}

.offers-title strong {
  font-weight: 800;
}

/* ── Row ── */
.offers-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* ── Column ── */
.offer-col {
  width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
}

/* ── Product Card ── */
.single-product {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  margin-bottom: 30px;
}

.single-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ── Figure / Image ── */
.offer-figure {
  position: relative;
  margin: 0;
  padding: 0;
}

.offer-figure img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ── Rating / Stars ── */
.rating {
  position: absolute;
  /* bottom: 0; */
  /* left: 0; */
  right: 0;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); */
  /* padding: 20px 15px 15px; */
  display: grid;
  align-items: center;
  justify-content: space-between;
  top: 0;
}

.star-list {
  list-style: none;
  margin: 0;
  /* padding: 0; */
  display: flex;
  gap: 3px;
  background: #000;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.5);
}

.star-list li {
  display: flex;
}

.star-icon {
  width: 16px;
  height: 16px;
  color: #ffffff; /* yellow stars */
  fill: currentColor;
}

/* ── Offer Badge ── */
.offer-badge {
  background: #fdc600;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-align: center;
}

/* ── Offer Title ── */
.offer-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 18px 15px;
}

.offer-title a {
  color: #337ab7;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* .offer-title a:hover {
  color: #13a0b2;
} */

/* ── Discover More Button ── */
.discover-more {
  text-align: center;
  margin-top: 20px;
}

.btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0098b3;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn-discover:hover {
  background: #fdc600;
  color: #ffffff;
}

.plus-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============================================================ RESPONSIVE ============================================================ */

@media (max-width: 991px) {
  .offer-figure img {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .offer-col {
    width: 100%;
  }

  .offer-figure img {
    height: 220px;
  }

  .offers-title {
    font-size: 26px;
  }

  .offer-title {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .offer-figure img {
    height: 180px;
  }

  .btn-discover {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.register-content {
  background: url("/images/carpet-installation-main.jpg");
  text-align: center !important;
}
@media (min-width: 992px) {
  .register-content .registration-details .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .register-content .registration-details .box,
  .register-content .registration-details .business-member {
    float: none;
  }

  /* .register-content .registration-details .regular-member { margin-left:0; } */
}

@media (max-width: 768px) {
  .register-content .registration-details .box {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .register-content .registration-details .box .btn {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
}

.register-content h1 {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
  padding: 20px 0;
  background: #333333;
  text-transform: uppercase;
}

/* ============================================================ TESTIMONIAL SECTION ============================================================ */

.testimonial-section {
  padding: 60px 0;
  background: #f5f5f5;
}

.testimonial-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Title ── */
.testimonial-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin: 0 0 20px;
  font-family: "Open Sans Condensed", Arial, sans-serif;
}

.title-highlight {
  color: #13a0b2; /* teal/cyan */
}

/* ── Rating Subtitle ── */
.rating-subtitle {
  text-align: center;
  font-size: 14px;
  color: #555555;
  margin-bottom: 40px;
}

.inline-stars {
  display: inline-flex;
  gap: 2px;
  margin-left: 6px;
  vertical-align: middle;
}

.inline-stars .star-icon {
  width: 14px;
  height: 14px;
  color: #f5c518; /* yellow/gold stars */
  fill: currentColor;
}

/* ── Carousel ── */
.testimonials-carousel {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonials-slide {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

/* ── Testimonial Card ── */
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  flex: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

/* ── Card Header (Quote + Stars) ── */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.quote-icon {
  width: 28px;
  height: 28px;
  color: #13a0b2; /* teal quote */
  fill: currentColor;
  flex-shrink: 0;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-stars .star-icon {
  width: 14px;
  height: 14px;
  color: #f5c518; /* yellow stars */
  fill: currentColor;
}

/* ── Testimonial Text ── */
.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
  flex: 1;
}

/* ── Divider ── */
.testimonial-divider {
  height: 1px;
  background: #e8e8e8;
  margin-bottom: 15px;
}

/* ── Profile ── */
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.profile-role {
  font-size: 12px;
  color: #888888;
}

/* ── Pagination Dots ── */
.testimonial-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cccccc;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.pagination-dot.active {
  background: #13a0b2; /* teal active dot */
  transform: scale(1.2);
}

/* ============================================================ RESPONSIVE ============================================================ */

@media (max-width: 767px) {
  .testimonial-section {
    padding: 40px 0;
  }

  .testimonial-title {
    font-size: 24px;
  }

  .testimonials-slide {
    flex-direction: column;
    gap: 15px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .testimonial-title {
    font-size: 20px;
  }

  .rating-subtitle {
    font-size: 13px;
  }

  .testimonial-card {
    padding: 18px;
  }

  .quote-icon {
    width: 24px;
    height: 24px;
  }
}
