/* ============================================================
   TOUCH LIFE BUILDING CLEANING — GLOBAL CSS
   touchlifecleaning.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --tl-navy: #0B4A7A;
  --tl-blue: #115B95;
  --tl-sky: #2E9CCA;
  --tl-teal: #41B5AC;
  --tl-teal-light: #E2F5F3;
  --tl-mint: #E8F5F0;
  --tl-white: #FFFFFF;
  --tl-off: #F7F8FC;
  --tl-border: #E2E6EF;
  --tl-mid: #5A6478;
  --tl-dark: #0B4A7A;

  --shadow-card: 0 2px 12px rgba(11, 74, 122, 0.08);
  --shadow-elevated: 0 8px 32px rgba(11, 74, 122, 0.15);
  --radius-card: 16px;
  --radius-inner: 10px;
  --radius-pill: 99px;
  --transition: all 0.25s ease;

  --container-max: 1600px;
  --container-w: 95%;
  --container-pad: 40px;
  --section-py: 100px;
}

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--tl-dark);
  background: var(--tl-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: 'Outfit', sans-serif;
}

/* ---- CONTAINER ---- */
.container {
  width: var(--container-w);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0;
}

/* ---- SECTIONS ---- */
section {
  padding: var(--section-py) 0;
}

/* ---- BUTTONS ---- */
/* "Book Now" — high-converting teal CTA */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #41B5AC 0%, #2E9CCA 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(65, 181, 172, 0.3);
}

.btn-book:hover {
  background: linear-gradient(135deg, #369b93 0%, #2286b0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(65, 181, 172, 0.45);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tl-teal);
  color: var(--tl-navy);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid var(--tl-teal);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}

.btn-primary:hover {
  background: #369b93;
  border-color: #369b93;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(65, 181, 172, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tl-navy);
  color: var(--tl-white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid var(--tl-navy);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #093c63;
  border-color: #093c63;
  transform: translateY(-1px);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--tl-white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 12px 30px;
  border-radius: 8px;
  border: 2px solid var(--tl-white);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.btn-ghost-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--tl-blue);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 12px 30px;
  border-radius: 8px;
  border: 2px solid var(--tl-blue);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}

.btn-ghost-navy:hover {
  background: var(--tl-blue);
  color: var(--tl-white);
  transform: translateY(-1px);
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--tl-navy);
}

.hero-h1,
.h1-hero {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1;
  color: var(--tl-white);
}

.page-h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
}

.section-h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--tl-navy);
}

.section-h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--tl-navy);
}

.body-large {
  font-size: 16px;
  line-height: 1.7;
  color: var(--tl-mid);
}

.body-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--tl-mid);
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tl-teal);
  display: block;
  margin-bottom: 14px;
}

/* ---- SECTION TITLE ---- */
.section-title {
  margin-bottom: 60px;
}

.section-title.centered {
  text-align: center;
}

.section-title p {
  font-size: 16px;
  color: var(--tl-mid);
  margin-top: 14px;
  max-width: 640px;
}

.section-title.centered p {
  margin: 14px auto 0;
}

/* ---- CARDS ---- */
.card {
  background: var(--tl-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--tl-border);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-3px);
}

/* ---- BADGES / PILLS ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-teal {
  background: var(--tl-teal-light);
  color: var(--tl-teal);
  border: 1px solid rgba(65, 181, 172, 0.25);
}

.badge-navy {
  background: rgba(11, 74, 122, 0.08);
  color: var(--tl-navy);
}

.badge-sky {
  background: rgba(46, 156, 202, 0.1);
  color: var(--tl-sky);
}

/* ---- GRID UTILITIES ---- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--tl-teal);
}

.breadcrumb span {
  color: var(--tl-teal);
}

.breadcrumb-dark {
  color: var(--tl-mid);
}

.breadcrumb-dark a {
  color: var(--tl-mid);
}

.breadcrumb-dark span {
  color: var(--tl-navy);
}

/* ---- GRADIENT BG ---- */
.bg-navy {
  background: var(--tl-navy);
}

.bg-blue {
  background: var(--tl-blue);
}

.bg-off {
  background: var(--tl-off);
}

.bg-white {
  background: var(--tl-white);
}

.bg-gradient-navy {
  background: linear-gradient(135deg, var(--tl-navy) 0%, var(--tl-blue) 100%);
}

.bg-teal {
  background: var(--tl-teal);
}

/* ---- STAR RATING ---- */
.stars {
  display: flex;
  gap: 2px;
  color: var(--tl-teal);
  font-size: 16px;
}

/* ---- TEXT UTILITIES ---- */
.text-white {
  color: var(--tl-white);
}

.text-navy {
  color: var(--tl-navy);
}

.text-teal {
  color: var(--tl-teal);
}

.text-mid {
  color: var(--tl-mid);
}

.text-sky {
  color: var(--tl-sky);
}

.text-center {
  text-align: center;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

/* ---- DIVIDER ---- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--tl-teal);
  border-radius: 2px;
  margin: 16px 0;
}

.divider.centered {
  margin: 16px auto;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--tl-navy);
  padding: 60px 0;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--tl-teal);
  display: block;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  font-weight: 500;
}

/* ---- ACCORDION / FAQ ---- */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--tl-off);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--tl-border);
  border-radius: var(--radius-inner);
  margin-bottom: 12px;
  background: var(--tl-white);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--tl-navy);
  gap: 16px;
  user-select: none;
}

.faq-question:hover {
  color: var(--tl-blue);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--tl-teal-light);
  color: var(--tl-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--tl-mid);
  line-height: 1.7;
  border-top: 1px solid var(--tl-border);
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--tl-navy) 0%, var(--tl-blue) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--tl-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- FORM STYLES ---- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--tl-navy);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--tl-border);
  border-radius: var(--radius-inner);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--tl-navy);
  background: var(--tl-white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--tl-blue);
  box-shadow: 0 0 0 3px rgba(21, 87, 160, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.required-star {
  color: var(--tl-teal);
  margin-left: 2px;
}

/* ---- PRICING TABLE ---- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pricing-table th {
  background: var(--tl-navy);
  color: var(--tl-white);
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.5px;
}

.pricing-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--tl-navy);
  border-bottom: 1px solid var(--tl-border);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:nth-child(even) td {
  background: var(--tl-off);
}

.pricing-table .price-highlight {
  font-weight: 700;
  color: var(--tl-blue);
  font-size: 15px;
}

/* ---- TABS ---- */
.tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--tl-border);
  background: var(--tl-white);
  color: var(--tl-mid);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--tl-navy);
  border-color: var(--tl-navy);
  color: var(--tl-white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ---- GENERAL ANIMATION ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

/* ---- RESPONSIVE ---- */
/* ---- FEATURED SERVICE CARD ---- */
.service-card.featured {
  border: 2px solid var(--tl-teal);
  background: linear-gradient(160deg, #fffdf5 0%, var(--tl-white) 100%);
  box-shadow: 0 4px 28px rgba(65, 181, 172, 0.18);
  position: relative;
}

.service-card.featured::after {
  content: 'POPULAR';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--tl-teal);
  color: var(--tl-navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 0 var(--radius-card) 0 var(--radius-inner);
}

.service-card.featured:hover {
  box-shadow: 0 8px 36px rgba(65, 181, 172, 0.3);
  transform: translateY(-4px);
}

/* ---- CLEANING SVG ICONS ---- */
.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--tl-off);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.svc-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--tl-blue);
}

.service-card.featured .svc-icon-wrap {
  background: var(--tl-teal-light);
}

.service-card.featured .svc-icon-wrap svg {
  color: var(--tl-teal);
}

/* ---- USP ICON (svg) ---- */
.usp-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--tl-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usp-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--tl-teal);
}

/* ---- CHECK LIST ICON ---- */
.ci-icon-svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--tl-sky);
  margin-top: 2px;
}

/* ---- PROP ICON (svg) ---- */
.prop-icon-svg {
  width: 36px;
  height: 36px;
  color: var(--tl-blue);
  margin: 0 auto 12px;
  display: block;
}

/* ---- TRUST ITEM ICON ---- */
.trust-icon-svg {
  width: 16px;
  height: 16px;
  color: var(--tl-teal);
  flex-shrink: 0;
}

/* ---- FOOTER CONTACT ICON ---- */
.fc-icon-svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- PROP GRID ---- */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  :root {
    --container-w: 95%;
    --section-py: 80px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .prop-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --container-w: 95%;
    --section-py: 60px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6 {
    grid-template-columns: 1fr;
  }

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

  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat-item .stat-num {
    font-size: 36px;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .hero-h1,
  .h1-hero {
    font-size: 38px;
  }
}

/* ---- SUB-424px (Small Phones: iPhone SE, Galaxy A series, etc.) ---- */
@media (max-width: 424px) {
  :root {
    --section-py: 48px;
    --container-w: 92%;
  }

  /* Hero */
  .hero-h1,
  .h1-hero {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.15;
  }

  .hero-section .hero-content {
    padding: 100px 0 56px;
  }

  /* Hero CTA buttons — stack vertically and go full-width */
  .hero-section div[style*="display:flex"][style*="gap:16px"],
  .hero-section [style*="flex-wrap:wrap"] {
    flex-direction: column;
  }

  .hero-section .btn-primary,
  .hero-section .btn-ghost-white {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 20px;
  }

  /* Badge text — allow wrapping */
  .badge-teal {
    font-size: 10px;
    padding: 5px 12px;
    letter-spacing: 0.3px;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }

  /* Trust bar — 2-column grid */
  .hero-trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin-top: 40px;
    padding-top: 20px;
  }

  .trust-item {
    font-size: 12px;
    gap: 6px;
  }

  /* Section headings */
  .section-h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .section-title {
    margin-bottom: 36px;
  }

  /* Services grid — 2-col on tiny phones */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Make service card images shorter */
  .service-card-img {
    height: 150px;
  }

  .service-card-content {
    padding: 20px 16px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  /* Prop grid — 2-col */
  .prop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .prop-tile {
    padding: 18px 10px;
  }

  .prop-tile h4 {
    font-size: 12px;
  }

  /* Stats bar */
  .stats-bar {
    padding: 40px 0;
  }

  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .stat-item .stat-num {
    font-size: 32px;
  }

  .stat-item .stat-label {
    font-size: 12px;
  }

  /* USP section why choose us — image height reduce */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Why choose us image */
  .grid-2 img[style*="height:520px"] {
    height: 280px !important;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 20px 16px;
  }

  .testimonial-card blockquote {
    font-size: 13.5px;
  }

  .testimonial-card .author {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .cta-banner .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner .btn-row a {
    text-align: center;
    justify-content: center;
  }

  /* Steps — single column */
  .step-num {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .step-item h3 {
    font-size: 16px;
  }

  /* Body text */
  .body-large {
    font-size: 14.5px;
  }

  /* Buttons */
  .btn-primary,
  .btn-secondary,
  .btn-ghost-navy {
    font-size: 14px;
    padding: 12px 24px;
  }

  /* Footer bottom */
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .footer-bottom p {
    font-size: 11px;
  }

  /* Section title p */
  .section-title p {
    font-size: 14px;
  }
}