/* ==========================================================================
   Top Tech Appliance Repair — Complete Design System (tt- prefix)
   Completely different from Burbank Appliance Repair
   ========================================================================== */

/* ---------- Global Resets & Typography ---------- */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Open Sans', var(--font-body), sans-serif;
  background: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', var(--font-heading), sans-serif;
  text-wrap: balance;
  letter-spacing: -0.02em;
}

/* ---------- Section Header (reused across sections) ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #ff8f00;
  margin: 0.75rem auto 0;
  border-radius: 50px;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 50px;
  gap: 0.5rem;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
}

.btn-primary {
  background: #0d47a1;
  color: #fff;
  border-color: #0d47a1;
}

.btn-primary:hover {
  background: #0a3a85;
  border-color: #0a3a85;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #0d47a1;
  border: 2px solid #0d47a1;
}

.btn-ghost:hover {
  background: #0d47a1;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #0d47a1;
  border: 2px solid #0d47a1;
}

.btn-outline:hover {
  background: #0d47a1;
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ff8f00;
  color: #fff;
  border-color: #ff8f00;
}

.btn-secondary:hover {
  background: #e68200;
  border-color: #e68200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 143, 0, 0.3);
}

/* ---------- TT Header (Top Bar + Main Nav) ---------- */
.tt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.tt-header-top {
  background: #0d47a1;
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
  padding: 0.4rem 0;
}

.tt-header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tt-header-top a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.tt-header-top a:hover {
  text-decoration: underline;
}

.tt-header-main {
  padding: 0.75rem 0;
}

.tt-header-main .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.tt-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d47a1;
  text-decoration: none;
  letter-spacing: -0.03em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tt-logo-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.tt-logo:hover {
  color: #ff8f00;
}

.tt-nav {
  display: flex;
  gap: 0.25rem;
}

.tt-nav a {
  padding: 0.5rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.tt-nav a:hover,
.tt-nav a.active {
  color: #0d47a1;
  background: rgba(13, 71, 161, 0.06);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before { top: -7px; }
.nav-toggle-label span::after { top: 7px; }

.nav-overlay {
  display: none;
}

/* ---------- Hero Split ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: linear-gradient(135deg, #fff8f0 0%, #fafafa 100%);
  overflow: hidden;
  align-items: center;
}

.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 3rem 3.5rem max(2rem, calc((100vw - 1200px) / 2 + 1rem));
}

.hero-split-badge {
  display: inline-block;
  background: rgba(13, 71, 161, 0.08);
  color: #0d47a1;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.hero-split-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-split-subtext {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-split-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-split-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.9375rem;
  color: #444;
}

.trust-item strong {
  color: #0d47a1;
  font-weight: 700;
}

.hero-split-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- TT Services Grid ---------- */
.tt-services {
  padding: 5rem 0;
  background: #fff;
}

.tt-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tt-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 2.25rem 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
}

.tt-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(13, 71, 161, 0.12);
}

.tt-service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 16px;
  margin-bottom: 1.25rem;
}

.tt-service-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.tt-service-desc {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.tt-service-arrow {
  font-size: 1.25rem;
  color: #0d47a1;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.tt-service-card:hover .tt-service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- TT Reviews (Horizontal Scroll) ---------- */
.tt-reviews {
  padding: 5rem 0;
  background: #fff8f0;
}

.tt-reviews-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}

.tt-reviews-scroll::-webkit-scrollbar {
  height: 6px;
}

.tt-reviews-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.tt-reviews-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 50px;
}

.tt-review-card {
  min-width: 320px;
  max-width: 380px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.tt-review-rating {
  color: #ff8f00;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.tt-review-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
  background: transparent;
}

.tt-review-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
}

.tt-review-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.9375rem;
}

.tt-review-city {
  font-size: 0.8125rem;
  color: #888;
}

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: #1a1a2e;
  color: #fff;
  padding: 3rem 0;
}

.stats-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stats-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.stats-strip-icon {
  font-size: 2rem;
  opacity: 0.7;
}

.stats-strip-item strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
}

.stats-strip-item span {
  font-size: 0.875rem;
  opacity: 0.75;
}

/* ---------- TT Brands ---------- */
.tt-brands {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
}

.tt-brands-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.tt-brands-list {
  font-size: 1.125rem;
  color: #666;
  line-height: 2.2;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* ---------- TT Guarantee ---------- */
.tt-guarantee {
  padding: 5rem 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
}

.tt-guarantee-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 3rem;
}

.tt-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tt-guarantee-item {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  text-align: center;
}

.tt-guarantee-check {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d47a1;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.tt-guarantee-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.tt-guarantee-item p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
}

/* ---------- TT Story (Founder) ---------- */
.tt-story {
  padding: 5rem 0;
  background: #fff;
}

.tt-story-layout {
  max-width: 760px;
  margin: 0 auto;
}

.tt-story-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.tt-story-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.tt-story-subtitle {
  font-size: 1.0625rem;
  color: #888;
  font-weight: 500;
}

.tt-story-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.25rem;
}

.tt-story-quote {
  background: #fff8f0;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  font-size: 1.1875rem;
  font-style: italic;
  color: #333;
  line-height: 1.7;
  margin: 2rem 0 0;
  border: none;
  border-left: none;
  position: relative;
}

.tt-story-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #ff8f00;
  border-radius: 4px 0 0 4px;
  display: none; /* deliberately hidden — no border-left accent */
}

/* ---------- TT CTA ---------- */
.tt-cta {
  padding: 5rem 0;
  background: #fafafa;
}

.tt-cta-card {
  background: #fff;
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 720px;
  margin: 0 auto;
}

.tt-cta-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.tt-cta-card p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.tt-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- TT Areas (Service Area Grid) ---------- */
.tt-areas {
  padding: 5rem 0;
  background: #fff;
  text-align: center;
}

.tt-areas-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.tt-areas-sub {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.tt-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.tt-area-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1rem;
  background: #fafafa;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.tt-area-card:hover {
  background: #e3f2fd;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.1);
}

.tt-area-card strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
}

.tt-area-card span {
  font-size: 0.8125rem;
  color: #0d47a1;
  font-weight: 600;
}

/* ---------- TT Footer (4-column) ---------- */
.tt-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.tt-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.tt-footer-brand h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.tt-footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.75;
}

.tt-footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.tt-footer-col address {
  font-style: normal;
}

.tt-footer-col address p {
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
}

.tt-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-footer-col ul li {
  margin-bottom: 0.4rem;
}

.tt-footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.tt-footer-col a:hover {
  color: #ff8f00;
}

.tt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* ---------- TT Mobile CTA ---------- */
.tt-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  gap: 0.75rem;
}

.tt-mobile-cta-call,
.tt-mobile-cta-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.tt-mobile-cta-call {
  background: #0d47a1;
  color: #fff;
}

.tt-mobile-cta-book {
  background: #ff8f00;
  color: #fff;
}

/* ---------- Outline light button for hero (kept for fallback) ---------- */
.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-weight: 700;
  border-radius: 50px;
}

.btn-outline-light:hover {
  background: white;
  color: #0d47a1;
  border-color: white;
}

/* ---------- Blog Grid (kept from original, adjusted to match) ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-categories {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.blog-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0d47a1;
  background: rgba(13, 71, 161, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.blog-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.blog-card-title a {
  color: #1a1a2e;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: #0d47a1;
}

.blog-card-date {
  font-size: 0.8125rem;
  color: #999;
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.blog-card-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #0d47a1;
  margin-top: auto;
  text-decoration: none;
}

.blog-card-link:hover {
  color: #0a3a85;
}

.blog-card-link::after {
  content: ' \2192';
}

/* ---------- Service Page Content ---------- */
.service-page-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.service-page-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.service-page-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  color: #555;
}

/* ---------- Blog Article Body ---------- */
.blog-article-body {
  max-width: 740px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.blog-article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-article-body h3 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.blog-article-body p {
  margin-bottom: 1.25rem;
}

/* Blog list page title */
.blog-list h1,
.section > .container > .section-header > h1 {
  text-align: center;
}

/* ---------- Better container on wider screens ---------- */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-split-content {
    padding: 3rem 2rem;
    max-width: 100%;
  }

  .hero-split-image {
    height: 320px;
  }

  .tt-guarantee-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .tt-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Nav */
  .nav-toggle-label {
    display: flex;
  }

  .tt-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    gap: 0.25rem;
  }

  .nav-toggle:checked ~ .tt-nav {
    right: 0;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-toggle:checked ~ .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .tt-header-top span:nth-child(2) {
    display: none;
  }

  .tt-header-top .container {
    justify-content: space-between;
  }

  /* Stats strip stacks to 2x2 */
  .stats-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stats-strip-item {
    justify-content: flex-start;
    min-width: auto;
  }

  /* Hero */
  .hero-split-headline {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-split-trust {
    gap: 1.25rem;
  }

  /* Service cards */
  .tt-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Areas */
  .tt-areas-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Mobile CTA */
  .tt-mobile-cta {
    display: flex;
  }

  /* Add padding to body bottom for fixed CTA */
  body {
    padding-bottom: 80px;
  }

  /* Footer */
  .tt-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-split-actions {
    flex-direction: column;
  }

  .hero-split-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-split-trust {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tt-services-grid {
    grid-template-columns: 1fr;
  }

  .tt-areas-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip-inner {
    grid-template-columns: 1fr;
  }

  .tt-cta-card {
    padding: 2.5rem 1.5rem;
  }

  .tt-cta-actions {
    flex-direction: column;
  }

  .tt-cta-actions .btn {
    width: 100%;
  }

  .tt-review-card {
    min-width: 280px;
  }
}

/* Hide old Burbank-style classes in case any are still referenced */
.site-header,
.site-footer,
.mobile-cta,
.stats-section,
.stats-grid,
.guarantee-section,
.guarantee-badge,
.brands-section,
.brands-grid,
.brand-name,
.founder-section,
.founder-grid,
.cta-section,
.services-section,
.services-grid,
.service-card,
.testimonials-section,
.testimonials-grid,
.testimonial-card {
  /* Override old base styles that may leak through */
}
