:root {
  --color-dark: #1C2B42;
  --color-dark-rgb: 28, 43, 66;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-white: #ffffff;
  --color-light-blue: #7ba3c9;
  --color-accent-yellow: #f6e05e;
  --color-faq-bar: #e2e8f0;
  --color-card-bg: #f7fafc;
  --color-card-bg: #fdfdfe;
  --font-sans: 'Poppins', 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-btn: 12px;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --container: 1200px;
  --container-padding: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ----- Header: white bg, circular dark blue logo, nav, dark blue rounded button ----- */
.header {
  position: relative;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.logo__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--color-white);
  border-radius: 50%;
}

.logo__icon {
  width: 90px;
  height: 90px;
  background-image: url(../assets/images/logo.png);
  background-size: cover;
  /* border-radius: 50%; */
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

.nav__link:hover {
  color: var(--color-dark);
}

.nav__dropdown {
  position: relative;
}

.nav__link--dropdown {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link--dropdown::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
}

.nav__dropdown:hover .nav__link--dropdown,
.nav__dropdown.is-open .nav__link--dropdown {
  color: var(--color-dark);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 200px;
  padding: 8px 0;
  background: var(--color-white);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: background 0.15s, color 0.15s;
}

.nav__dropdown-menu a:hover {
  background: var(--color-card-bg);
  color: var(--color-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}

.btn:hover {
  opacity: 0.92;
}

.btn--primary {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn--lg {
  padding: 14px 28px;
  font-size: 16px;
}

.hero-buttons--display {
  background: var(--color-dark);
  color: var(--color-white);
  margin-bottom: 12px;
  padding: 12px 24px;
}

.header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

@media (max-width: 768px) {

  .nav,
  .btn--primary {
    display: none;
  }

  .hero-buttons--display {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .header--open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow);
    align-items: stretch;
  }

  .header--open .btn--primary {
    display: inline-flex;
  }

  .header__menu {
    display: flex;
  }

  .header--open .nav__dropdown {
    position: static;
  }

  .header--open .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 4px;
    margin-bottom: 8px;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    border-left: 2px solid var(--color-light-blue);
  }

  .section-header p {
    text-align: center;
    font-size: 24px;
  }

  .cta-section__img {
    display: none;
  }

  .btn--plan {
    display: flex;
    flex-direction: column;
  }

  .stats .container {
    flex-direction: column;
    gap: 30px;
  }

  .stat-item:not(:last-child) {
    border-bottom: 1px solid #c1cbd7;
    padding-bottom: 30px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  color: #2e354f;
  line-height: 1.5;
  background-color: #f7fafc;
}

.container {
  width: 85%;
  margin: 0 auto;
  max-width: 1140px;
}

/* Header */
header {
  background-color: #fff;
  padding: 20px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #2e354f;
}

header h1 span {
  color: #5d6880;
}

header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

header ul li {
  margin-left: 20px;
}

header ul li a {
  text-decoration: none;
  color: #2e354f;
  font-weight: 500;
}

header .cta-button {
  background-color: #2e354f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 60px 0;
  background-color: #fff;
}

.hero .container {
  display: flex;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #2e354f;
}

.hero-text h3 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #2e354f;
}

.hero-text p {
  margin-bottom: 30px;
  color: #5d6880;
}

.hero-buttons {
  display: flex;
}

.hero-buttons button {
  border: none;
  padding: 12px 24px;
  font-weight: 500;
  cursor: pointer;
  margin-right: 15px;
}



.hero-buttons .secondary-btn {
  background-color: #d8dde7;
  color: #2e354f;
}

.hero-image {
  flex: 1;
  text-align: right;
  border-radius: var(--radius);
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* Stats */
.stats {
  padding: 30px 0;
  background-color: #818a9d;
  justify-content: space-around;
}

.stats .container {
  display: flex;
  justify-content: space-between;
}

.stat-item {
  text-align: center;
  padding: 0 40px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid #c1cbd7;
}

.stat-item h4 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: #fbfbfc;
}

.stat-item p {
  font-size: 14px;
  margin: 5px 0 0;
  color: #fbfbfc;
}

/* Section */
.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #2e354f;
}

.section-header p {
  font-size: 14px;
  margin: 0;
  color: #5d6880;
  width: 60%;
  margin: 0 auto;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #5d6880;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

.service-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #fff;
}

.service-card p {
  font-size: 14px;
  margin: 0;
  color: #c1cbd7;
  flex-grow: 1;
}

.service-card .card-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.service-card .card-footer a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.service-card .card-footer a i {
  margin-left: 5px;
}

/* Why Clients Trust */
.why-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-trust-card {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.why-trust-card img {
  background-color: #d8dde7;
  padding: 2px;
  border-radius: 16px;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.why-trust-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #2e354f;
}

.why-trust-card p {
  font-size: 14px;
  margin: 0;
  color: #5d6880;
}

/* CTA */
.cta {
  background-color: #fff;
  padding: 60px 0;
}

.cta-header {
  text-align: center;
  margin-bottom: 30px;
}

.cta-header h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #2e354f;
}

.cta-header p {
  font-size: 14px;
  margin: 0;
  color: #5d6880;
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

.cta-buttons button {
  border: none;
  padding: 12px 24px;
  font-weight: 500;
  cursor: pointer;
  margin: 0 10px;
}

.cta-buttons .primary-btn {
  background-color: #2e354f;
  color: #fff;
}

.cta-buttons .secondary-btn {
  background-color: #d8dde7;
  color: #2e354f;
}

/* Customer Reviews */
.customer-reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.customer-reviews-header h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #2e354f;
}

.customer-reviews-header p {
  font-size: 14px;
  margin: 0;
  color: #5d6880;
}

.customer-reviews-header a {
  font-size: 14px;
  color: #3b82f6;
  text-decoration: underline;
}

.customer-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.customer-review-card {
  background-color: #d8dde7;
  padding: 30px;
}

.review-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.review-card-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
}

.review-card-header h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #2e354f;
}

.review-card-header span {
  font-size: 12px;
  color: #5d6880;
}

.rating {
  color: #2e354f;
  font-size: 18px;
  margin-bottom: 15px;
}

.customer-review-card p {
  font-size: 14px;
  margin: 0;
  color: #5d6880;
}

.customer-reviews-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.customer-reviews-controls button {
  border: 1px solid #c1cbd7;
  background-color: transparent;
  padding: 8px 12px;
  cursor: pointer;
  margin: 0 5px;
}

/* Footer */
footer {
  background-color: #2e354f;
  color: #c1cbd7;
  padding: 60px 0;
}

footer h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #fff;
}

footer h1 span {
  color: #d8dde7;
}

footer p {
  font-size: 14px;
  margin: 0 0 40px;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 30px;
}

.footer-logo-section {
  grid-column: span 1;
}

.footer-links-section h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 15px;
  color: #fff;
}

.footer-links-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-section ul li {
  margin-bottom: 10px;
}

.footer-links-section ul li a {
  text-decoration: none;
  color: #c1cbd7;
  font-size: 14px;
}

.footer-contact-section h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 15px;
  color: #fff;
}

.footer-contact-section p {
  font-size: 14px;
  margin: 0 0 10px;
}

.footer-contact-section a {
  text-decoration: none;
  color: #c1cbd7;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #5d6880;
}

.footer-bottom p {
  font-size: 12px;
  margin: 0;
  color: #5d6880;
}

/* Font Awesome icons (simulate) */
.icon {
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.icon-arrow-right::before {
  content: "\2192";
}

.icon-phone::before {
  content: "\260E";
}

.icon-email::before {
  content: "\2709";
}

.icon-location::before {
  content: "\2616";
}

/* Exact landing page design – blue, grey, white, yellow accents, rounded corners */
:root {
  --color-dark: #1C2B42;
  --color-dark-rgb: 28, 43, 66;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-white: #ffffff;
  --color-light-blue: #7ba3c9;
  --color-accent-yellow: #f6e05e;
  --color-faq-bar: #e2e8f0;
  --color-card-bg: #f7fafc;
  --color-card-bg: #fdfdfe;
  --font-sans: 'Poppins', 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-btn: 12px;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --container: 1200px;
  --container-padding: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ----- Header: white bg, circular dark blue logo, nav, dark blue rounded button ----- */
.header {
  position: relative;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.logo__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--color-white);
  border-radius: 50%;
}

.logo__icon {
  width: 90px;
  height: 90px;
  background-image: url(../assets/images/logo.png);
  background-size: cover;
  /* border-radius: 50%; */
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

.nav__link:hover {
  color: var(--color-dark);
}

.nav__dropdown {
  position: relative;
}

.nav__link--dropdown {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link--dropdown::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
}

.nav__dropdown:hover .nav__link--dropdown,
.nav__dropdown.is-open .nav__link--dropdown {
  color: var(--color-dark);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 200px;
  padding: 8px 0;
  background: var(--color-white);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: background 0.15s, color 0.15s;
}

.nav__dropdown-menu a:hover {
  background: var(--color-card-bg);
  color: var(--color-dark);
}

@media (max-width: 768px) {

  .nav,
  .btn--primary {
    display: none;
  }

  .cta-header h3 {
    font-size: 24px;
  }

  .header--open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow);
    align-items: stretch;
  }

  .header--open .btn--primary {
    display: inline-flex;
  }

  .header__menu {
    display: flex;
  }

  .header--open .nav__dropdown {
    position: static;
  }

  .header--open .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 4px;
    margin-bottom: 8px;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    border-left: 2px solid var(--color-light-blue);
  }

  .cta-section__img {
    display: none;
  }

  .btn--plan {
    display: flex;
    flex-direction: column;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}

.btn:hover {
  opacity: 0.92;
}

.btn--primary {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn--lg {
  padding: 14px 28px;
  font-size: 16px;
}

.header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

@media (max-width: 768px) {

  .nav,
  .btn--primary {
    display: none;
  }

  .work-cta {
    display: table;
  }

  .header--open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow);
    align-items: stretch;
  }

  .header--open .btn--primary {
    display: inline-flex;
  }

  .header__menu {
    display: flex;
  }
    .btn--lg{
        width:100%;
    }
  .header--open .nav__dropdown {
    position: static;
  }

  .header--open .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 4px;
    margin-bottom: 8px;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    border-left: 2px solid var(--color-light-blue);
  }

  .hero .container {
    flex-direction: column;
    gap: 40px;
  }

  .hero-text h2 {
    text-align: center;
    font-size: 24px;
  }

  .hero-text p {
    text-align: left;
    font-size: 14px;
  }

  .hero-buttons .cta-section__img {
    display: none;
  }

  .btn--plan {
    display: flex;
    flex-direction: column;
  }
}

/* ----- Hero: kitchen bg, dark overlay left ~2/3, headline + CTA + 3 feature circles, image right ----- */

/* Button */

.cta-btn {
  display: inline-block;
  background: #1f2f46;
  color: white;
  padding: 16px 28px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 35px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #162233;
}

/* Features */

.features {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.feature {
  font-size: 14px;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ----- Section common ----- */
.section {
  padding: 64px 0;
}

.section__title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--color-text-light);
}

.section__subtitle--center {
  text-align: center;
  margin-bottom: 32px;
}

.section__headline {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}

.section__text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
}

.section__grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.section__grid--split {
  grid-template-columns: 380px 1fr;
}

.section__media {
  position: relative;
}

.section__img {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 420px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #d4dce6 0%, #b8c5d4 100%);
  object-fit: cover;
}

.section__img--cleaner-wiping {
  /* background: linear-gradient(160deg, #c5d0dc 0%, #9aadc2 100%); */
  background-image: url("../assets/images/house-cleaning-services-1024x789.jpg");
  align-content: center;
  background-size: cover;

}

.section__img--services {
  /* background: linear-gradient(160deg, #c5d0dc 0%, #9aadc2 100%); */
  background-image: url("../assets/images/Professional-Cleaning-Services-01-0504170072\ \(1\).jpg");
  align-content: center;
  background-size: cover;

}

.section__content {
  min-width: 0;
}

@media (max-width: 768px) {
  .section-header h3 {
    font-size: 20px;
  }

  .section-header p {
    font-size: 14px;
    text-align: left;
    width: auto;
  }

  .section__grid--split {
    grid-template-columns: 1fr;
  }

  .section__img {
    max-height: 0;
  }
}

/* ----- Service bullets (6 in 2 cols) ----- */
.service-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}

.service-bullets__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-light-blue);
  background-image: url();
  opacity: 0.8;
  flex-shrink: 0;
}

/* ----- What We Offer: 6 cards 3x2, image + dark overlay bottom, title, desc, Learn More circle ----- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  min-height: 260px;
}

.offer-card__img {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #d4dce6 0%, #a8b8cc 50%, #7a8fa8 100%);
  background-size: cover;
}

.offer-card__img--1 {
  background-image: url("../assets/images/clean-window-1-scaled.jpg");
}

.offer-card__img--2 {
  background-image: url("../assets/images/furniture.webp");
}

.offer-card__img--3 {
  background-image: url("../assets/images/Glas-office-with-mop-bucket.jpg");
}

.offer-card__img--4 {
  background-image: url("../assets/images/porter-scaled.webp");
}

.offer-card__img--5 {
  background-image: url("../assets/images/home-cleaning-calicut.jpg");
}

.offer-card__img--6 {
  background-image: url("../assets/images/professional-cleaning-service-scaled.webp");
}

.offer-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(transparent, rgba(var(--color-dark-rgb), 0.85) 30%, rgba(var(--color-dark-rgb), 0.95));
  color: var(--color-white);
}

.offer-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
}

.offer-card__desc {
  margin: 0 0 12px;
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.4;
}

.offer-card__link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.2s;
}

.offer-card__link:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .offer-grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 18px;
  }
}

/* ----- Why Choose Our Team: 4 cards 2x2 ----- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.why-card {
  padding: 28px 24px;
  display: flex;
  background: var(--color-card-bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);

}

.why-card__icon {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  margin-right: 15px;
  background: var(--color-light-blue);
  opacity: 0.85;
  margin-bottom: 16px;
}

.why-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.why-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-light);
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-trust-grid {
    grid-template-columns: 1fr;

  }
}

/* ----- CTA section: dark bg, rounded, left content + right image ----- */
.cta-section {
  padding: 64px 20px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  margin: 0 var(--container-padding) 32px;
  max-width: var(--container);
  height: 70vh;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

.cta-section__title {
  margin: 15px 0px 20px 0px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

.cta-section__text {
  margin: 0 0 20px;
  font-size: 16px;
  opacity: 0.92;
  line-height: 1.5;
}

.cta-section__bullets {
  margin: 0 0 24px;
  padding-left: 20px;
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-section__bullets li {
  margin-bottom: 6px;
}

.cta-section .btn--primary {
  background: var(--color-white);
  color: var(--color-dark);
}

.cta-section .btn--primary:hover {
  opacity: 0.95;
}

.cta-section__img {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  background-image: url(../assets/images/professional-cleaning-service-people-working-together-office-1.jpg);
  background-size: cover;
}

@media (max-width: 900px) {
  .cta-section__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-section__bullets {
    list-style-position: inside;
    padding-left: 0;
  }
}

/* ----- Choose Our Plans: 3 buttons ----- */
.section--plans {
  padding: 48px 0;
}

.plans-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 16px;
  margin: 36px 0 72px 0;
}

.btn--plan {
  padding: 24px 60px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .plans-buttons {
    display: grid;
    margin: 5px 5px;
  }

  .reviews-arrow {
    display: none;
  }
}

/* ----- FAQ: light grey bars, rounded, question + plus icon ----- */
.faq-list {
  max-width: 720px;
  margin: 24px auto 0;
}

.faq-item {
  background: var(--color-faq-bar);
  border-radius: var(--radius-btn);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item__question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
  flex-shrink: 0;
}

.faq-item[open] .faq-item__question::after {
  content: '−';
}

.faq-item__answer {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
  margin-top: 0;
}

/* ----- Customer Reviews: 3 cards, avatar, name, 5 stars (yellow), text, arrows ----- */
.reviews-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 0 8px;
}

.reviews-arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--color-dark);
  background: var(--color-white);
  color: var(--color-dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.reviews-arrow:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.review-card {
  padding: 24px;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4dce6 0%, #b0bcc8 100%);
  flex-shrink: 0;
}

.review-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.review-card__stars {
  font-size: 14px;
  color: var(--color-accent-yellow);
  letter-spacing: 2px;
  margin-top: 2px;
}

.review-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .reviews-track {
    grid-template-columns: 1fr;
  }

  .reviews-arrow {
    display: none;
  }
}

/* ----- Footer: dark blue-grey, logo, about, social, columns, copyright ----- */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding-top: 56px;
  margin-top: 48px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__logo .logo__circle {
  background: rgba(255, 255, 255, 0.15);
  /* background-image: url(/assets/images/logo2.jpg);
  background-size: cover; */
}

.footer__logo .logo__icon {
  /* background: var(--color-light-blue); */
  /* background-image: url(/assets/images/logo2.jpg); */
  background-size: cover;
}

.footer__about {
  margin: 16px 0 20px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.88;
  max-width: 260px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 12px;
  color: var(--color-white);
  transition: background 0.2s;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer__heading {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
}

.footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__contact {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.88;
}

.footer__bottom {
  padding: 20px 0;
}

.footer__copy {
  margin: 0;
  font-size: 13px;
  text-align: center;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}


/* Section */

.features-section {
  padding: 80px 5%;
}

/* Grid */

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Cards */

.feature-card {

  background: #7c8ba0;
  /* exact bluish grey tone */

  padding: 45px;

  border-radius: 45px;

  color: white;

  transition: 0.3s;
}

/* Hover */

.feature-card:hover {
  transform: translateY(-6px);
}

/* Icon */

/* .feature-card img{
height: 64px;
width: 64px;
border-radius: 50%;
background-image: url("../assets/images/leader.png");
background-size: cover;
} */

/* Title */

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Text */

.feature-card p {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Tablet */

@media(max-width:1024px) {

  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile */

@media(max-width:650px) {

  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-radius: 30px;
    padding: 35px;
  }

}