/* ============================================
   AllTexCleaning Co. — Stylesheet
   alltexco.com
   ============================================ */

:root {
  --red:        #E24B4A;
  --red-dark:   #c73b3a;
  --red-light:  #fdeaea;
  --white:      #ffffff;
  --off-white:  #f9f9f9;
  --dark:       #1a1a1a;
  --gray:       #555555;
  --light-gray: #888888;
  --border:     #e8e8e8;
  --shadow:     0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:  0 10px 48px rgba(0,0,0,0.13);
  --radius:     14px;
  --transition: all 0.3s ease;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;
  --max-width:  1200px;
}

/* ─── Reset ─────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: #fff; line-height: 1.6; font-size: 16px; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ─── Layout ─────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 100px 0; }

/* ─── Typography ─────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
h4 { font-size: 1rem; }
p  { color: var(--gray); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  font-family: var(--font-head);
  margin-bottom: 12px;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.accent { color: var(--red); }

/* ─── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(226,75,74,0.38);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.75);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--red);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 42px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ─── Navbar ────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 12px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-right: 12px;
}
.logo-tex { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 12px; padding: 10px 22px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px 0 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  color: var(--dark); padding: 13px 28px;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--red); border-left-color: var(--red); background: var(--red-light);
}
.mobile-nav .btn { margin: 10px 28px 0; justify-content: center; }

.page-content { padding-top: 76px; }

/* ─── Page Hero (inner pages) ───────────── */
.page-hero {
  background: linear-gradient(135deg, #141414 0%, #2a1010 100%);
  padding: 88px 0 76px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(226,75,74,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ─── Home Hero ─────────────────────────── */
.hero {
  padding: 90px 0 80px;
  background: linear-gradient(150deg, #fff 0%, #fdf3f3 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 560px; height: 560px; border-radius: 50%;
  background: rgba(226,75,74,0.06); pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(226,75,74,0.04); pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: var(--red-light); color: var(--red);
  font-size: 0.78rem; font-weight: 700; font-family: var(--font-head);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 26px;
}

.hero h1 { margin-bottom: 22px; }

.hero-desc {
  font-size: 1.1rem; line-height: 1.75;
  color: var(--gray); margin-bottom: 38px; max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; gap: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat-number {
  display: block;
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--dark); line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.82rem; color: var(--light-gray); font-weight: 500; margin-top: 4px;
}

/* Hero visual card */
.hero-visual { position: relative; z-index: 1; }
.hero-card-stack { position: relative; height: 400px; }

.hero-main-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  position: absolute; inset: 0 0 36px 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 18px;
}

.hero-icon-circle {
  width: 92px; height: 92px;
  background: var(--red-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: var(--red);
}

.hero-card-name {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.35rem; color: var(--dark);
}
.hero-card-sub { font-size: 0.9rem; color: var(--gray); }

.float-badge {
  position: absolute;
  background: var(--red); color: #fff;
  border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(226,75,74,0.38);
  display: flex; align-items: center; gap: 11px;
  animation: float 3s ease-in-out infinite;
}
.float-badge.pos-tl { top: 24px; left: -32px; animation-delay: 0s; }
.float-badge.pos-br { bottom: 16px; right: -22px; animation-delay: 1.5s; }
.float-badge i { font-size: 1.3rem; }
.float-badge-text { display: flex; flex-direction: column; gap: 1px; }
.float-badge-num { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; line-height: 1; }
.float-badge-lbl { font-size: 0.72rem; opacity: 0.85; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transition: var(--transition);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 58px; height: 58px;
  background: var(--red-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; color: var(--red);
  margin-bottom: 22px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--red); color: #fff; }

.service-card h3 { margin-bottom: 10px; font-size: 1.12rem; }
.service-card p  { font-size: 0.91rem; line-height: 1.65; }

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 700; font-size: 0.88rem;
  font-family: var(--font-head); margin-top: 20px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ─── Services Detail (services page) ──── */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 16px;
}
.service-detail-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 40px rgba(226,75,74,0.12);
}

.sdc-header { display: flex; align-items: center; gap: 18px; }
.sdc-icon {
  width: 56px; height: 56px;
  background: var(--red-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--red); flex-shrink: 0;
  transition: var(--transition);
}
.service-detail-card:hover .sdc-icon { background: var(--red); color: #fff; }
.sdc-header h3 { font-size: 1.2rem; }

.sdc-body { font-size: 0.93rem; line-height: 1.7; color: var(--gray); }

.sdc-includes {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 8px; border-top: 1px solid var(--border);
}
.sdc-includes-label {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--light-gray); margin-bottom: 4px;
}
.sdc-include-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--gray);
}
.sdc-include-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; }

/* ─── Why Choose Us ─────────────────────── */
.why-bg { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.why-items { display: flex; flex-direction: column; gap: 30px; }

.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--red-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--red);
}
.why-text h4 { margin-bottom: 5px; font-size: 1rem; }
.why-text p  { font-size: 0.91rem; line-height: 1.65; }

.guarantee-box {
  background: #fff; border-radius: 20px;
  padding: 36px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 20px;
}
.guarantee-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px; background: var(--off-white); border-radius: 12px;
}
.guarantee-row i { font-size: 1.7rem; color: var(--red); flex-shrink: 0; }
.guarantee-row strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.guarantee-row span  { font-size: 0.83rem; color: var(--gray); }

/* ─── Areas ─────────────────────────────── */
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.area-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 50px; padding: 10px 22px;
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 600;
  color: var(--dark); transition: var(--transition); cursor: default;
}
.area-chip:hover, .area-chip.primary {
  background: var(--red); border-color: var(--red); color: #fff;
}

/* ─── Reviews ───────────────────────────── */
.reviews-bg { background: var(--off-white); }

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

.review-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
  position: relative; transition: var(--transition);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 22px;
  font-size: 4.5rem; font-family: Georgia, serif;
  color: var(--red-light); line-height: 1; pointer-events: none;
}

.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars i { color: #FFB800; font-size: 0.88rem; }

.review-text { font-size: 0.91rem; line-height: 1.72; color: var(--gray); margin-bottom: 22px; }

.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red-light); color: var(--red);
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.author-info strong { display: block; font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.author-info span   { font-size: 0.78rem; color: var(--light-gray); }

/* Ratings Overview (reviews page) */
.ratings-bar-section { background: var(--dark); padding: 64px 0; }

.ratings-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 80px; flex-wrap: wrap;
}
.overall-block { text-align: center; }
.big-score {
  font-family: var(--font-head); font-size: 5.5rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.big-stars { display: flex; justify-content: center; gap: 5px; margin: 8px 0; }
.big-stars i { color: #FFB800; font-size: 1.25rem; }
.score-sub { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

.vdivider { width: 1px; height: 90px; background: rgba(255,255,255,0.12); }

.bar-rows { display: flex; flex-direction: column; gap: 10px; min-width: 260px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.55); width: 48px; text-align: right; white-space: nowrap; }
.bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.1); border-radius: 50px; overflow: hidden; }
.bar-fill  { height: 100%; background: var(--red); border-radius: 50px; }
.bar-cnt   { font-size: 0.82rem; color: rgba(255,255,255,0.45); width: 28px; }

/* ─── Pricing ───────────────────────────── */
.pricing-bg { background: var(--off-white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 26px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  border-color: var(--red);
  box-shadow: 0 10px 44px rgba(226,75,74,0.14);
  transform: translateY(-6px);
}
.pricing-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.featured-pill {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-size: 0.72rem; font-weight: 700; font-family: var(--font-head);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; white-space: nowrap;
}

.pricing-card h3 { font-size: 1.05rem; margin-bottom: 22px; }
.pricing-card.featured h3 { color: #fff; }

.price-icon { font-size: 1.8rem; margin-bottom: 14px; }

.price-num {
  font-family: var(--font-head); font-size: 3.2rem; font-weight: 800;
  color: var(--red); line-height: 1;
}
.price-unit { font-size: 0.85rem; color: var(--gray); font-family: var(--font-head); font-weight: 600; margin-top: 4px; }
.pricing-card.featured .price-unit { color: rgba(255,255,255,0.55); }

.price-note { font-size: 0.83rem; color: var(--gray); line-height: 1.5; margin-top: 18px; }
.pricing-card.featured .price-note { color: rgba(255,255,255,0.55); }

.pricing-btn { margin-top: 28px; width: 100%; justify-content: center; }

/* Deep clean card */
.deep-clean-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: var(--radius); padding: 36px 40px;
  display: flex; align-items: center; gap: 32px;
  transition: var(--transition);
}
.deep-clean-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 40px rgba(226,75,74,0.12);
}
.dc-icon { font-size: 2.6rem; color: var(--red); flex-shrink: 0; }
.dc-body { flex: 1; }
.dc-body h3 { margin-bottom: 8px; }
.dc-body p  { font-size: 0.91rem; line-height: 1.65; }

/* Included section */
.included-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.included-list { display: flex; flex-direction: column; gap: 13px; }
.included-item { display: flex; align-items: center; gap: 13px; font-size: 0.93rem; color: var(--gray); }
.included-item i { color: var(--red); font-size: 0.95rem; flex-shrink: 0; }

/* ─── FAQ ───────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  color: var(--dark); transition: var(--transition); gap: 16px;
}
.faq-q:hover { color: var(--red); }
.faq-q i { color: var(--red); font-size: 0.85rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  font-size: 0.93rem; color: var(--gray); line-height: 1.7;
  padding: 0 0 20px; display: none;
}
.faq-item.open .faq-a { display: block; }

/* ─── CTA Banner ────────────────────────── */
.cta-section {
  background: var(--red); padding: 86px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; margin-bottom: 14px; }
.cta-inner p  { color: rgba(255,255,255,0.82); font-size: 1.08rem; max-width: 540px; margin: 0 auto 38px; }
.cta-actions  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Contact ───────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info-list { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; }
.ci-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--red-light); border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--red);
}
.ci-body strong {
  display: block; font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--light-gray); margin-bottom: 5px;
}
.ci-body a, .ci-body p {
  font-size: 0.98rem; color: var(--dark); font-weight: 500;
  transition: var(--transition);
}
.ci-body a:hover { color: var(--red); }

.contact-hours { margin-top: 8px; display: flex; flex-direction: column; gap: 5px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; }
.hours-row span:first-child { color: var(--gray); }
.hours-row span:last-child  { color: var(--dark); font-weight: 600; }

/* Contact form */
.contact-form-box {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 44px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { margin-bottom: 6px; }
.contact-form-box > p { font-size: 0.91rem; margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.span2 { grid-column: 1 / -1; }

.form-group label { font-family: var(--font-head); font-size: 0.83rem; font-weight: 700; color: var(--dark); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 17px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body); font-size: 0.93rem; color: var(--dark);
  background: #fff; outline: none; transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226,75,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { margin-top: 6px; width: 100%; justify-content: center; }

.form-success {
  display: none; background: #e8f5e9; border: 1px solid #a5d6a7;
  border-radius: 10px; padding: 16px 20px; color: #2e7d32;
  font-weight: 500; margin-top: 18px; align-items: center; gap: 10px;
  font-size: 0.95rem;
}
.form-success.show { display: flex; }

/* ─── Footer ────────────────────────────── */
.footer { background: #111; color: #fff; padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; }
.footer-brand .logo-tex { color: var(--red); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.72; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: rgba(255,255,255,0.68); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--red); }

.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-ci { display: flex; align-items: center; gap: 11px; font-size: 0.88rem; color: rgba(255,255,255,0.68); }
.footer-ci i { color: var(--red); width: 15px; flex-shrink: 0; }
.footer-ci a { color: rgba(255,255,255,0.68); transition: var(--transition); }
.footer-ci a:hover { color: var(--red); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; padding: 24px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.83rem; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.83rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--red); }

/* ─── Scroll Animations ─────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

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

@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-actions     { justify-content: center; }
  .hero-stats       { justify-content: center; }
  .hero-visual      { display: none; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid     { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 48px; }
  .included-cols    { grid-template-columns: 1fr; gap: 32px; }
  .deep-clean-card  { flex-direction: column; text-align: center; }
  .ratings-inner    { flex-direction: column; gap: 36px; }
  .vdivider         { width: 100%; height: 1px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 540px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .form-grid    { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 22px; }
  .hero-stats   { flex-wrap: wrap; gap: 22px; }
  .cta-actions  { flex-direction: column; align-items: center; }
}
