/*
Theme Name: Elite Shine Cleaning | Commercial · Denver CO
Theme URI: https://produx.cloud
Author: Produx Cloud
Author URI: https://produx.cloud
Description: Elite Shine Group Cleaning. Commercial, residential, post-construction, move-in/out, high-end restaurant kitchens and event cleaning in Denver, CO. Detail-first work for clients who expect excellence. Call (786) 721-8343.
Version: 1.0.187
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eliteshine
Tags: cleaning, business, responsive, professional
Copyright: 2026 Produx Cloud

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

:root {
  /* =====================================================
     BRAND TOKENS — edit ONLY these to re-skin the site.
     Pulled from the Elite Shine logo: deep teal-navy text,
     gold center accent, forest green motif. The rest of
     the stylesheet references the legacy aliases below.
     ===================================================== */
  --brand-primary:        #0E3D52;  /* deep teal-navy — main color */
  --brand-primary-dark:   #082A3B;
  --brand-primary-darker: #051E2B;
  --brand-accent:         #C2A856;  /* gold from logo center */
  --brand-accent-bright:  #DDC983;
  --brand-cta:            #3D8B5A;  /* forest green CTA */
  --brand-cta-hover:      #2F6C45;
  --brand-bg-soft:        #F2F6F8;  /* very light blue-tinted bg */
  --brand-font:           'Inter', system-ui, -apple-system, sans-serif;

  /* =====================================================
     Legacy aliases — DO NOT EDIT. Derived from brand.
     ===================================================== */
  --navy:          var(--brand-primary);
  --navy-dark:     var(--brand-primary-dark);
  --navy-darker:   var(--brand-primary-darker);
  --red:           var(--brand-cta);
  --red-hover:     var(--brand-cta-hover);
  --yellow:        var(--brand-accent);
  --yellow-bright: var(--brand-accent-bright);
  --white:         #FFFFFF;
  --gray-50:       var(--brand-bg-soft);
  --gray-100:      #ECE7DC;
  --gray-200:      #D9D5CC;
  --gray-300:      #c4c0b8;
  --gray-400:      #94908a;
  --gray-500:      #6b6862;
  --gray-600:      #4A4A48;
  --gray-700:      #4A4A48;
  --gray-800:      #2a2a28;
  --font:          var(--brand-font);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-yellow { color: var(--yellow-bright); }

.promo-bar {
  background: var(--brand-primary);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.promo-bar a { color: var(--brand-accent-bright); font-weight: 700; text-decoration: none; white-space: nowrap; }
.promo-bar a:hover { text-decoration: underline; }
.promo-bar strong { color: var(--white); }
.promo-bar { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.navbar.is-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  box-shadow: 0 6px 24px rgba(14,61,82,0.10);
}
.navbar.is-scrolled .navbar__inner {
  height: 84px;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
  gap: 32px;
  transition: height 0.35s ease;
}
.navbar__logo { display: flex; align-items: center; max-height: 100%; overflow: hidden; }
.navbar__logo img { height: 88px; width: auto; display: block; max-height: 100%; transition: height 0.35s ease; }
.navbar.is-scrolled .navbar__logo img { height: 68px; }
.navbar__menu {
  display: flex;
  gap: 4px;
  align-items: center;
}
.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}
.navbar__link:hover { color: var(--navy); background: var(--gray-100); }
.navbar__link--active {
  color: var(--navy) !important;
  background: var(--yellow) !important;
  font-weight: 600;
}
.navbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.navbar__phone:hover { color: var(--navy); }
.navbar__cta {
  padding: 10px 24px;
  background: var(--brand-cta);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.navbar__cta:hover { background: var(--brand-cta-hover); transform: translateY(-1px); }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.navbar__burger span {
  width: 22px; height: 2.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.2s;
}
.navbar__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__burger.active span:nth-child(2) { opacity: 0; }
.navbar__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 53, 0.75);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 100px 24px 80px;
  box-sizing: border-box;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn--red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-hover); border-color: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,0,0,0.3); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--gray-300); }
.btn--outline:hover { border-color: var(--navy); }
.btn--yellow { background: var(--yellow-bright); color: #000; border-color: var(--yellow-bright); }
.btn--yellow:hover { background: #e6ad00; }
.btn--white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--white:hover { background: var(--gray-100); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

.trust-bar {
  padding: 28px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trust-bar__logos {
  display: flex;
  gap: 32px;
  align-items: center;
}
.trust-bar__logos img {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.trust-bar__logos img:hover { opacity: 1; filter: grayscale(0); }
.trust-bar__badges { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.trust-badge {
  padding: 6px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.checks-bar {
  padding: 14px 0;
  background: var(--red);
  color: var(--white);
}
.checks-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
.checks-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.feature-grid__text p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.7;
}
.feature-grid__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.feature-grid__img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.feature-grid__img > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.feature-grid__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: center;
}
.feature-grid__badge-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.feature-grid__badge-text {
  font-size: 0.7rem;
  opacity: 0.8;
}

.section__badge {
  display: inline-block;
  background: rgba(139,0,0,0.08);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.cta-overlay {
  position: relative;
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.cta-overlay__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay__dim {
  position: absolute;
  inset: 0;
  background: rgba(30,58,95,0.88);
}
.cta-overlay__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta-overlay h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-overlay p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 28px;
}
.cta-overlay__highlight {
  display: inline-block;
  background: var(--red);
  padding: 2px 12px;
  border-radius: 8px;
}
.cta-overlay__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.testimonial-card__stars {
  color: #facc15;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card__text {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonial-card__author {
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card__author strong {
  font-size: 0.92rem;
  color: var(--navy);
}
.testimonial-card__author span {
  font-size: 0.82rem;
  color: var(--gray-500);
}
.testimonial-card__location {
  font-size: 0.78rem !important;
  color: var(--red) !important;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.25s;
}
.why-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,0,0,0.06);
  border-radius: 12px;
  color: var(--red);
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,58,95,0.25); }

.stats-section {
  padding: 50px 0;
  background: var(--navy);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--yellow-bright);
  line-height: 1.1;
}
.stat__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-layout__text p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-layout__img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-layout__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.promise-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--red) 0%, #6b0000 100%);
  color: var(--white);
}
.promise-section__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.promise-section__icon {
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  margin: 0 auto 24px;
  color: var(--yellow-bright);
}
.promise-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.promise-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.faq-support {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(14,61,82,0.05);
}
.faq-support__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,61,82,0.06);
  border-radius: 12px;
  color: var(--navy);
  margin-bottom: 16px;
}
.faq-support h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.faq-support > p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 20px;
}
.faq-support__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.faq-support__actions .btn {
  justify-content: center;
  width: 100%;
}
.faq-support__phone {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  padding: 8px 0;
}
.faq-support__phone:hover { color: var(--red); }
.faq-support__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.faq-support__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-cta);
  box-shadow: 0 0 0 3px rgba(61,139,90,0.15);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.faq-item[open] {
  border-color: var(--navy);
  box-shadow: 0 6px 20px rgba(14,61,82,0.08);
}
.faq-item[open]::before { transform: scaleY(1); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--gray-50); }
.faq-item__cat {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 9px;
  background: rgba(14,61,82,0.07);
  border-radius: 999px;
  white-space: nowrap;
}
.faq-item__cat--trust {
  color: var(--brand-cta);
  background: rgba(61,139,90,0.09);
}
.faq-item__cat--contact {
  color: #8a6d1a;
  background: rgba(194,168,86,0.14);
}
.faq-item__q {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--gray-400);
  background: var(--gray-50);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.2s, color 0.2s;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--red);
  color: var(--white);
}
.faq-item p {
  padding: 4px 22px 22px 22px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item p a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.faq-item p a:hover { color: var(--red); }

.section { padding: 80px 0; }
.section--alt { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }

.section__header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.section__header--light .section__title { color: var(--white); }
.section__header--light .section__subtitle { color: rgba(255,255,255,0.6); }

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.section__subtitle {
  font-size: 1rem;
  color: var(--gray-500);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: transparent;
}
.service-card__img {
  height: 200px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card__img img { transform: scale(1.08); }
.service-card__body { padding: 24px; }
.service-card__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card__body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 14px;
  line-height: 1.5;
}
.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.feature { text-align: center; }
.feature__icon {
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  margin: 0 auto 16px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--yellow-bright);
}
.feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.feature p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 26px 24px 28px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.step:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.step:hover::before { transform: scaleX(1); }
.step__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.step__number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.step__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 26px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(14,61,82,0.08);
  border-color: var(--navy);
}
.area-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.area-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,61,82,0.06);
  border-radius: 10px;
  color: var(--navy);
}
.area-card__head h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  padding: 0;
  border: 0;
}
.area-card__head p {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: 2px 0 0;
  line-height: 1.3;
}
.area-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area-card__tags .tag {
  font-size: 0.78rem;
  padding: 4px 11px;
  background: var(--gray-50);
  border-color: var(--gray-100);
  color: var(--navy);
}
.areas-footer {
  text-align: center;
  margin-top: 36px;
  padding: 28px;
  background: var(--white);
  border: 1px dashed var(--gray-200);
  border-radius: 14px;
}
.areas-footer p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.cta-section {
  position: relative;
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 53, 0.82);
  z-index: 1;
}
.cta-section__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumb {
  padding: 14px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.82rem;
  color: var(--gray-400);
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

.service-page h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}
.service-page__intro {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 680px;
  margin-bottom: 32px;
}
.service-page h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 14px;
}
.service-page__cta {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--gray-600);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--red);
  font-weight: 800;
}
.check-list a { color: var(--navy); font-weight: 600; }
.check-list a:hover { text-decoration: underline; }

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
}
.tag--link { transition: all 0.2s; }
.tag--link:hover { border-color: var(--navy); color: var(--navy); background: rgba(30,58,95,0.05); }

.section--contact-hero {
  padding: 50px 0 36px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-darker) 100%);
  color: var(--white);
}
.section--contact-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.section--contact-hero p { font-size: 1rem; opacity: 0.75; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.92rem;
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  color: var(--gray-800);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}
.form-group textarea { resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info__card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 20px;
}
.contact-info__card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-info__value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.contact-info__value:hover { text-decoration: underline; }
.contact-info__card p { font-size: 0.88rem; color: var(--gray-600); }

.cta-banner { padding: 60px 0; background: var(--red); color: var(--white); }
.cta-banner__inner { text-align: center; }
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.cta-banner p { font-size: 1rem; opacity: 0.85; margin-bottom: 24px; }
.cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid--sm { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 26px 22px;
  transition: all 0.2s;
}
.card:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(30,58,95,0.1); transform: translateY(-2px); }
.card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.card p { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 12px; }
.card--sm { padding: 18px 16px; text-align: center; }
.card--sm h3 { margin-bottom: 0; font-size: 0.92rem; }

.footer {
  background: var(--navy-darker);
  color: rgba(255,255,255,0.55);
  padding: 60px 0 20px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo-img { max-width: 160px; margin-bottom: 14px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.6; }
.footer__col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a { font-size: 0.88rem; transition: all 0.2s; }
.footer__col a:hover { color: var(--yellow-bright); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 0.8rem;
  opacity: 0.4;
}

.hero-premium-gif {
  margin-bottom: 32px;
}
.hero-premium-gif img {
  max-width: min(500px, 80%);
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(215,170,91,0.5));
}

.time-back-section {
  padding: 110px 0 100px;
  background:
    radial-gradient(ellipse 60% 55% at 50% 42%, rgba(194,168,86,0.22) 0%, rgba(194,168,86,0.06) 45%, transparent 75%),
    linear-gradient(180deg, #FBF7EC 0%, #F5EFE0 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(194,168,86,0.35);
  border-bottom: 1px solid rgba(194,168,86,0.35);
}
.time-back-section::before,
.time-back-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--yellow) 50%, transparent 100%);
  opacity: 0.55;
  pointer-events: none;
}
.time-back-section::before { top: 0; }
.time-back-section::after { bottom: 0; }
.seals-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.seal-item {
  opacity: 0;
  transform: scale(0.8) rotateY(180deg);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.seal-item.visible {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
}
.seal-item:hover {
  transform: scale(1.1) rotateZ(5deg);
}
.seal-item img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  transition: all 0.4s ease;
}
.seal-item:hover img {
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25)) brightness(1.05);
}
.time-back-subtitle {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  text-align: center;
  color: var(--navy);
  font-weight: 700;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}
.time-back-subtitle span {
  color: var(--yellow);
  font-style: italic;
}

@media (max-width: 968px) {
  .navbar__menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 200;
    gap: 0;
  }
  .navbar__menu.active { right: 0; }
  .navbar__menu li { border-bottom: 1px solid var(--gray-100); }
  .navbar__link { display: block; padding: 14px 0; border-radius: 0; }
  .navbar__burger { display: flex; z-index: 201; }
  .navbar__right { gap: 8px; }
  .navbar__phone { font-size: 0; gap: 0; padding: 8px; }
  .navbar__phone svg { width: 20px; height: 20px; }
  .navbar__cta { font-size: 0.8rem; padding: 8px 14px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .areas-grid { grid-template-columns: 1fr; gap: 16px; }
  .faq-layout { grid-template-columns: 1fr; gap: 20px; }
  .faq-support { position: static; }
  .faq-support__actions { flex-direction: row; }
  .faq-support__actions .btn { width: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .time-back-section { padding: 60px 0; }
  .seals-wrapper { gap: 20px; }
  .seal-item img { width: 120px; height: 120px; }
  .time-back-subtitle { font-size: 1.2rem; padding: 0 20px; }
  .cta-overlay h2 { font-size: 1.5rem; }
  .cta-overlay p { font-size: 0.95rem; }
}

@media (max-width: 640px) {
  .promo-bar { font-size: 0.75rem; white-space: normal; padding: 6px 12px; }
  .navbar__inner { height: 84px; gap: 12px; }
  .navbar__logo img,
  .navbar.is-scrolled .navbar__logo img { height: 64px; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 1.6rem; }
  .hero__content { padding: 80px 20px 50px; }
  .hero__sub { font-size: 0.9rem; max-width: 100%; }
  .hero-premium-gif { margin-bottom: 20px; }
  .hero-premium-gif img { max-width: 65%; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .trust-bar { padding: 16px 0; }
  .trust-bar .container { flex-direction: column; gap: 8px; }
  .trust-bar__badges { justify-content: center; gap: 8px; }
  .trust-badge { font-size: 0.75rem; padding: 4px 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout__img img { height: 280px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-overlay { padding: 50px 0; }
  .cta-overlay__actions { flex-direction: column; align-items: center; }
  .cta-overlay__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .feature-grid__badge { display: none; }
  .feature-grid__actions { flex-direction: column; }
  .feature-grid__actions .btn { width: 100%; justify-content: center; }
  .checks-bar__inner { gap: 8px 16px; }
  .checks-bar__item { font-size: 0.78rem; }
  .section { padding: 50px 0; }
  .section__header { margin-bottom: 32px; }
  .section__title { font-size: 1.4rem; }
  .tag { font-size: 0.75rem; padding: 4px 10px; }
  .faq-item summary { padding: 14px 16px; gap: 10px; grid-template-columns: 1fr auto; }
  .faq-item__cat { grid-column: 1 / -1; justify-self: start; font-size: 0.6rem; }
  .faq-item__q { font-size: 0.9rem; grid-column: 1; }
  .faq-item__icon { grid-column: 2; grid-row: 2; }
  .faq-item p { padding: 4px 16px 16px; font-size: 0.85rem; }
  .faq-support__actions { flex-direction: column; }
  .faq-support__actions .btn { width: 100%; }
  .seals-wrapper { gap: 12px; }
  .seal-item img { width: 80px; height: 80px; }
  .time-back-subtitle { font-size: 1rem; padding: 0 16px; }
  .time-back-section { padding: 40px 0; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .service-page__cta { flex-direction: column; }
  .service-page__cta .btn { width: 100%; justify-content: center; }
}

/* =====================================================
   Wordmark logo — used until a real logo asset arrives.
   Swap with an <img> in the navbar/footer when ready.
   ===================================================== */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.3px;
  color: var(--brand-primary);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.wordmark__accent { color: var(--brand-accent); font-weight: 600; }
.wordmark__sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}
.navbar__logo .wordmark { font-size: 1.05rem; letter-spacing: 0.2px; }
.footer .wordmark { color: var(--white); font-size: 1.4rem; margin-bottom: 6px; }
.footer .wordmark__sub { color: rgba(255,255,255,0.5); }

/* "Meet [Owner]" portrait fallback when no photo is provided. */
.owner-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #2a2a2a 100%);
  color: var(--brand-accent);
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -2px;
}

/* =====================================================
   Gallery + Lightbox (grafted from Casabella, brand-tokenized)
   Items come from gallery-data.js → gallery.js renders.
   ===================================================== */
.gallery-section { padding: 90px 0; background: var(--white); }
.service-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.22); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-icon-svg { width: 46px; height: 46px; stroke: var(--brand-accent); filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5)); }
.gallery-hidden { display: none; }
.gallery-load-more { text-align: center; margin: 40px 0 0; }
.btn-load-more {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  font-family: var(--font); font-size: 0.95rem; font-weight: 600;
  color: var(--white); background: var(--brand-primary);
  border: 1px solid var(--brand-accent);
  border-radius: 4px;
  cursor: pointer; transition: all 0.25s ease;
}
.btn-load-more:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
  transform: translateY(-2px);
}
.btn-load-more svg { transition: transform 0.25s ease; }
.btn-load-more:hover svg { transform: translateY(2px); }
.btn-load-more.hidden { display: none; }

.gallery-modal {
  display: none; position: fixed; inset: 0;
  z-index: 10000;
  background-color: rgba(0,0,0,0.96);
  overflow: auto;
  animation: galleryFadeIn 0.3s ease;
}
.gallery-modal.active { display: flex; align-items: center; justify-content: center; }
@keyframes galleryFadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-close {
  position: absolute; top: 24px; right: 36px;
  color: #fff; font-size: 42px; font-weight: 300;
  cursor: pointer; transition: color 0.2s ease; z-index: 10001;
  line-height: 1;
}
.modal-close:hover { color: var(--brand-accent); }
.modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.10); color: #fff; border: none;
  padding: 14px; cursor: pointer; transition: all 0.25s ease;
  z-index: 10001; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.modal-nav:hover { background: rgba(201,163,90,0.4); }
.modal-prev { left: 24px; }
.modal-next { right: 24px; }
.modal-content-wrapper {
  position: relative; max-width: 90%; max-height: 85vh;
  margin: auto; display: flex; align-items: center; justify-content: center;
}
.modal-content { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 6px; box-shadow: 0 10px 50px rgba(0,0,0,0.6); }
.modal-video { display: none; width: 90vw; height: 50vw; max-width: 1200px; max-height: 675px; }
.modal-video.active { display: block; }
.modal-video-player { display: none; width: 90vw; height: auto; max-width: 1200px; max-height: 80vh; }
.modal-video-player.active { display: block; }
#modalImage { display: none; }
#modalImage.active { display: block; }
.modal-caption {
  position: absolute; bottom: 24px; left: 0; right: 0;
  text-align: center; color: #fff;
  padding: 0 24px; font-size: 1rem; opacity: 0.85;
}
@media (max-width: 640px) {
  .service-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .modal-nav { padding: 10px; }
  .modal-prev { left: 8px; }
  .modal-next { right: 8px; }
  .modal-close { top: 14px; right: 16px; font-size: 36px; }
}

/* Hero <img> (replaces .hero__bg div for SEO indexability + better LCP). */
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

