/* ============================================================
   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: #0B1F3A;
  --tl-blue: #1557A0;
  --tl-sky: #2E9CCA;
  --tl-gold: #C8973A;
  --tl-gold-light: #F5E6C8;
  --tl-mint: #E8F5F0;
  --tl-white: #FFFFFF;
  --tl-off: #F7F8FC;
  --tl-border: #E2E6EF;
  --tl-mid: #5A6478;
  --tl-dark: #0B1F3A;

  --shadow-card: 0 2px 12px rgba(11, 31, 58, 0.08);
  --shadow-elevated: 0 8px 32px rgba(11, 31, 58, 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 ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tl-gold);
  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-gold);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}

.btn-primary:hover {
  background: #b5852f;
  border-color: #b5852f;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 151, 58, 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: #0a1829;
  border-color: #0a1829;
  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-gold);
  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-gold {
  background: var(--tl-gold-light);
  color: var(--tl-gold);
  border: 1px solid rgba(200, 151, 58, 0.25);
}

.badge-navy {
  background: rgba(11, 31, 58, 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-gold);
}

.breadcrumb span {
  color: var(--tl-gold);
}

.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-gold {
  background: var(--tl-gold);
}

/* ---- STAR RATING ---- */
.stars {
  display: flex;
  gap: 2px;
  color: var(--tl-gold);
  font-size: 16px;
}

/* ---- TEXT UTILITIES ---- */
.text-white {
  color: var(--tl-white);
}

.text-navy {
  color: var(--tl-navy);
}

.text-gold {
  color: var(--tl-gold);
}

.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-gold);
  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-gold);
  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-gold-light);
  color: var(--tl-gold);
  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-gold);
  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-gold);
  background: linear-gradient(160deg, #fffdf5 0%, var(--tl-white) 100%);
  box-shadow: 0 4px 28px rgba(200, 151, 58, 0.18);
  position: relative;
}

.service-card.featured::after {
  content: 'POPULAR';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--tl-gold);
  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(200, 151, 58, 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-gold-light);
}

.service-card.featured .svc-icon-wrap svg {
  color: var(--tl-gold);
}

/* ---- USP ICON (svg) ---- */
.usp-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--tl-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usp-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--tl-gold);
}

/* ---- 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-gold);
  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;
}

@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);
  }
}

@media (max-width: 768px) {
  :root {
    --container-w: 95%;
    --section-py: 60px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6 {
    grid-template-columns: 1fr;
  }

  .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;
  }
}