/* ═══════════════════════════════════════════════════════════════
   THANET ELECTRICAL — MAIN SITE PREMIUM REDESIGN
   thanet-electrical.co.uk · main-premium.css
   Theme: Modern Premium · Deep Charcoal / Electric Yellow / White
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Font ── Barlow Condensed for impact headings */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ══════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════════════════════════════ */
:root {
  --te-c:        #1A1A1B;    /* charcoal   */
  --te-c2:       #222226;    /* charcoal 2 */
  --te-c3:       #2D2D32;    /* charcoal 3 */
  --te-y:        #FFD700;    /* yellow     */
  --te-y2:       #FFE84D;    /* yellow hover */
  --te-y-dim:    rgba(255,215,0,0.12);
  --te-y-glow:   rgba(255,215,0,0.25);
  --te-white:    #FFFFFF;
  --te-off:      #F5F5F3;
  --te-lt:       #E8E8E6;
  --te-muted:    #8C8C8C;
  --te-font-hd:  'Barlow Condensed', 'Arial Black', sans-serif;
  --te-font-body:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --te-radius:   12px;
  --te-radius-sm:8px;
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL BODY RESET FOR PREMIUM FEEL
   ══════════════════════════════════════════════════════════════ */
body {
  background: var(--te-c) !important;
  font-family: var(--te-font-body);
}

/* ══════════════════════════════════════════════════════════════
   1 · HERO — "Premier Electrical Contractor"
   ══════════════════════════════════════════════════════════════ */
.te-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* background is supplied by the hero-bg class from style.css */
}

/* Dark hero overlay */
.te-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(255,215,0,0.07), transparent 60%),
    linear-gradient(180deg, rgba(26,26,27,0.65) 0%, rgba(26,26,27,0.90) 60%, rgba(26,26,27,0.98) 100%);
  z-index: 1;
}

/* Keep existing hero-bg image, add z-index for content */
.te-hero .te-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Hero accents */
.te-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--te-font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--te-y);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}
.te-hero__eyebrow::before,
.te-hero__eyebrow::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--te-y);
  opacity: 0.5;
}

.te-hero__title {
  font-family: var(--te-font-hd);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--te-white);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.te-hero__title .te-y { color: var(--te-y); }

.te-hero__sub {
  font-family: var(--te-font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.te-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--te-y);
  color: var(--te-c);
  font-family: var(--te-font-body);
  font-size: 1rem;
  font-weight: 800;
  padding: 1rem 2.25rem;
  border-radius: var(--te-radius-sm);
  text-decoration: none;
  border: 2px solid var(--te-y);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.te-btn-primary:hover {
  background: var(--te-y2);
  border-color: var(--te-y2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--te-y-glow);
}

.te-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--te-white);
  font-family: var(--te-font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.25rem;
  border-radius: var(--te-radius-sm);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
  white-space: nowrap;
}
.te-btn-outline:hover {
  border-color: var(--te-y);
  color: var(--te-y);
  background: rgba(255,215,0,0.06);
}

.te-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* Trust badges row */
.te-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}
.te-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--te-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.te-badge i { color: var(--te-y); font-size: 0.75rem; }
.te-badge.te-badge--stars { color: var(--te-y); background: rgba(255,215,0,0.1); border-color: rgba(255,215,0,0.25); }

/* Scroll hint */
.te-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  animation: te-bounce 2s infinite;
}
.te-hero__scroll i { font-size: 1rem; color: rgba(255,215,0,0.4); }
@keyframes te-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════════════════════
   2 · TRUST TICKER — Infinite scrolling bar
   ══════════════════════════════════════════════════════════════ */
.te-ticker {
  background: #111112;
  border-top: 1px solid rgba(255,215,0,0.15);
  border-bottom: 1px solid rgba(255,215,0,0.15);
  overflow: hidden;
  padding: 0.75rem 0;
}
.te-ticker__track {
  display: flex;
  gap: 3rem;
  align-items: center;
  width: max-content;
  animation: te-ticker-scroll 30s linear infinite;
}
.te-ticker:hover .te-ticker__track { animation-play-state: paused; }
@keyframes te-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.te-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--te-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.te-ticker__item i { color: var(--te-y); font-size: 0.8rem; }
.te-ticker__item strong { color: var(--te-white); }
.te-ticker__sep { color: rgba(255,215,0,0.25); font-size: 1rem; line-height: 1; }

/* ══════════════════════════════════════════════════════════════
   3 · SECTION WRAPPER
   ══════════════════════════════════════════════════════════════ */
.te-section {
  padding: 5rem 1rem;
}
.te-section--dark { background: var(--te-c2); }
.te-section--darker { background: var(--te-c); }
.te-section--light { background: var(--te-off); }
.te-section--white { background: var(--te-white); }
.te-section--yellow { background: var(--te-y); }

.te-container {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.te-container--narrow { max-width: 56rem; margin: 0 auto; padding: 0 1.25rem; }

.te-section-hd {
  text-align: center;
  margin-bottom: 3rem;
}
.te-section-hd__eyebrow {
  font-family: var(--te-font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--te-y);
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.te-section-hd__eyebrow::before,
.te-section-hd__eyebrow::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--te-y);
  opacity: 0.4;
}
.te-section-hd__title {
  font-family: var(--te-font-hd);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.te-section-hd__title--dark { color: var(--te-c); }
.te-section-hd__title--light { color: var(--te-white); }
.te-section-hd__body {
  font-size: 1.0625rem;
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.65;
}
.te-section-hd__body--dark { color: #555558; }
.te-section-hd__body--light { color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════════════════════════
   4 · SERVICE CARDS — Premium dark style
   ══════════════════════════════════════════════════════════════ */
.te-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.te-service-card {
  position: relative;
  background: var(--te-c3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--te-radius);
  padding: 1.75rem;
  text-decoration: none;
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.te-service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--te-y);
  opacity: 0;
  transition: opacity 0.2s;
}
.te-service-card:hover {
  border-color: rgba(255,215,0,0.3);
  background: #333338;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.te-service-card:hover::before { opacity: 1; }

.te-service-card__icon {
  font-size: 2rem;
  color: var(--te-y);
  margin-bottom: 1rem;
  transition: transform 0.2s;
}
.te-service-card:hover .te-service-card__icon { transform: scale(1.1); }

.te-service-card__title {
  font-family: var(--te-font-hd);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--te-white);
  letter-spacing: 0.01em;
  margin-bottom: 0.625rem;
  transition: color 0.15s;
}
.te-service-card:hover .te-service-card__title { color: var(--te-y); }

.te-service-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0.875rem;
}

.te-service-card__hub-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,215,0,0.5);
  text-decoration: none;
  transition: color 0.15s;
  margin-top: auto;
  padding-top: 0.625rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.te-service-card__hub-link:hover { color: var(--te-y); }
.te-service-card__hub-link i { font-size: 0.7rem; }

/* ══════════════════════════════════════════════════════════════
   5 · EICR QUICK QUOTE CALCULATOR
   ══════════════════════════════════════════════════════════════ */
.te-calc-wrap {
  background: var(--te-c2);
  border: 1px solid rgba(255,215,0,0.18);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.te-calc-title {
  font-family: var(--te-font-hd);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--te-white);
  margin-bottom: 0.5rem;
}
.te-calc-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.te-calc-row { margin-bottom: 1.375rem; }
.te-calc-label {
  display: block;
  font-family: var(--te-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

/* Bedroom selector buttons */
.te-calc-beds {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.te-calc-bed-btn {
  flex: 1;
  min-width: 52px;
  padding: 0.6rem 0.5rem;
  background: var(--te-c3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--te-radius-sm);
  color: rgba(255,255,255,0.55);
  font-family: var(--te-font-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.te-calc-bed-btn:hover { border-color: rgba(255,215,0,0.4); color: var(--te-y); }
.te-calc-bed-btn.active {
  background: var(--te-y-dim);
  border-color: var(--te-y);
  color: var(--te-y);
}

/* Property type select */
.te-calc-select {
  width: 100%;
  background: var(--te-c3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--te-radius-sm);
  color: var(--te-white);
  font-family: var(--te-font-body);
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23FFD700' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19 9-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 1.125rem;
  padding-right: 2.5rem;
}
.te-calc-select:focus { border-color: rgba(255,215,0,0.5); }

/* Price result */
.te-calc-result {
  background: linear-gradient(135deg, var(--te-c3), var(--te-c2));
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: var(--te-radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.te-calc-result__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.te-calc-result__price {
  font-family: var(--te-font-hd);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--te-y);
  line-height: 1;
}
.te-calc-result__note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.2rem;
}
.te-calc-result__cta {
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   6 · ABOUT — Premium split layout
   ══════════════════════════════════════════════════════════════ */
.te-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.te-about-img-wrap {
  position: relative;
}
.te-about-img-wrap img {
  border-radius: var(--te-radius);
  width: 100%;
  display: block;
}
.te-about-img-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255,215,0,0.2);
  border-radius: calc(var(--te-radius) + 8px);
  pointer-events: none;
}
.te-about__eyebrow {
  font-family: var(--te-font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--te-y);
  margin-bottom: 0.75rem;
}
.te-about__title {
  font-family: var(--te-font-hd);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--te-white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.te-about__text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.te-about__checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin: 1.5rem 0;
  list-style: none;
  padding: 0;
}
.te-about__checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.te-about__checklist li i { color: var(--te-y); font-size: 0.8rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   7 · TESTIMONIALS RIBBON — Auto-scrolling
   ══════════════════════════════════════════════════════════════ */
.te-testimonials {
  overflow: hidden;
  padding: 0.5rem 0 1rem;
}
.te-testimonials__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: te-testimonial-scroll 40s linear infinite;
}
.te-testimonials:hover .te-testimonials__track { animation-play-state: paused; }
@keyframes te-testimonial-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.te-review-card {
  background: var(--te-c3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--te-radius);
  padding: 1.5rem 1.75rem;
  width: 320px;
  flex-shrink: 0;
}
.te-review-card__stars { color: var(--te-y); font-size: 0.8rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.te-review-card__text {
  font-family: var(--te-font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.te-review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.te-review-card__author { font-size: 0.78rem; font-weight: 700; color: var(--te-white); }
.te-review-card__platform {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Platform badges in header */
.te-review-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.te-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid;
}
.te-platform-badge.google   { color: #4285F4; border-color: rgba(66,133,244,0.3); background: rgba(66,133,244,0.07); }
.te-platform-badge.checkatrade { color: #00B0F0; border-color: rgba(0,176,240,0.3); background: rgba(0,176,240,0.07); }
.te-platform-badge.napit    { color: #FFD700; border-color: rgba(255,215,0,0.3); background: rgba(255,215,0,0.07); }

/* ══════════════════════════════════════════════════════════════
   8 · ACCREDITATIONS STRIP — Monochrome logos
   ══════════════════════════════════════════════════════════════ */
.te-accred {
  background: var(--te-c2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 1.25rem;
}
.te-accred__label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-bottom: 1.25rem;
}
.te-accred__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3.5rem;
}
.te-accred__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  opacity: 0.45;
  filter: grayscale(1) brightness(1.4);
  transition: opacity 0.2s, filter 0.2s;
}
.te-accred__item:hover { opacity: 0.75; filter: grayscale(0.5) brightness(1.2); }
.te-accred__item img { height: 38px; width: auto; display: block; }
.te-accred__item span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════════════════════════════
   9 · TE NETWORK BRIDGE
   ══════════════════════════════════════════════════════════════ */
.te-network-section {
  background: var(--te-c);
  border-top: 1px solid rgba(255,215,0,0.1);
  padding: 4rem 1.25rem;
}
.te-network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.te-network-card {
  position: relative;
  background: var(--te-c2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--te-radius);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  transition: all 0.22s;
  overflow: hidden;
}
.te-network-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--te-y);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.te-network-card:hover { border-color: rgba(255,215,0,0.25); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.te-network-card:hover::after { transform: scaleX(1); }
.te-network-card.active { border-color: rgba(255,215,0,0.35); background: var(--te-c3); }
.te-network-card.active::after { transform: scaleX(1); }

.te-network-card__badge {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.875rem;
  display: inline-block;
}
.te-network-card.active .te-network-card__badge { background: var(--te-y-dim); color: var(--te-y); border: 1px solid rgba(255,215,0,0.2); }
.te-network-card:not(.active) .te-network-card__badge { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }

.te-network-card__icon { font-size: 1.75rem; color: var(--te-y); margin-bottom: 0.75rem; }
.te-network-card__title {
  font-family: var(--te-font-hd);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--te-white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.te-network-card__desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.55; margin-bottom: 0.875rem; }
.te-network-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,215,0,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.te-network-card:hover .te-network-card__link { color: var(--te-y); }

/* ══════════════════════════════════════════════════════════════
   10 · LEAD FORM — 4-field quick quote
   ══════════════════════════════════════════════════════════════ */
.te-lead-form-wrap {
  background: var(--te-c2);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 660px;
  margin: 0 auto;
}
.te-lead-title {
  font-family: var(--te-font-hd);
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--te-white);
  margin-bottom: 0.375rem;
}
.te-lead-sub { font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-bottom: 1.75rem; line-height: 1.5; }

.te-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.te-form-full { grid-column: 1 / -1; }

.te-form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
}
.te-form-group input,
.te-form-group select,
.te-form-group textarea {
  width: 100%;
  background: var(--te-c3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--te-radius-sm);
  color: var(--te-white);
  font-family: var(--te-font-body);
  font-size: 0.9375rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.te-form-group input::placeholder,
.te-form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.te-form-group input:focus,
.te-form-group select:focus,
.te-form-group textarea:focus {
  border-color: rgba(255,215,0,0.45);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
}
.te-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23FFD700' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19 9-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
.te-form-group select option { background: var(--te-c2); }

.te-form-submit-row {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.te-form-note { font-size: 0.7rem; color: rgba(255,255,255,0.3); }

.te-form-success {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--te-radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #4ade80;
  text-align: center;
}
.te-form-success.show { display: block; }

/* ══════════════════════════════════════════════════════════════
   11 · FAQ — Premium dark style
   ══════════════════════════════════════════════════════════════ */
.te-faq-list { display: flex; flex-direction: column; gap: 0.625rem; }
.te-faq-item {
  background: var(--te-c3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--te-radius-sm);
  overflow: hidden;
  transition: border-color 0.15s;
}
.te-faq-item.open { border-color: rgba(255,215,0,0.25); }
.te-faq-question {
  width: 100%;
  padding: 1.125rem 1.375rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.te-faq-question:hover { background: rgba(255,255,255,0.03); }
.te-faq-question__text {
  font-family: var(--te-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--te-white);
  line-height: 1.4;
}
.te-faq-question__icon {
  color: var(--te-y);
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.te-faq-item.open .te-faq-question__icon { transform: rotate(180deg); }
.te-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.te-faq-answer__inner {
  padding: 0 1.375rem 1.125rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.te-faq-answer__inner a { color: var(--te-y); text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   12 · FLOATING ACTION BUTTON (FAB) — Mobile only
   ══════════════════════════════════════════════════════════════ */
.te-fab {
  display: none;
  position: fixed;
  bottom: 5.5rem; /* above mobile sticky footer */
  right: 1.25rem;
  width: 56px;
  height: 56px;
  background: var(--te-y);
  color: var(--te-c);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 88;
  box-shadow: 0 4px 20px rgba(255,215,0,0.45), 0 2px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: te-fab-pulse 3s ease-in-out infinite;
}
@keyframes te-fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,215,0,0.45), 0 2px 8px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 4px 32px rgba(255,215,0,0.7), 0 2px 8px rgba(0,0,0,0.3); }
}
.te-fab:hover { transform: scale(1.1); }
@media (max-width: 767px) { .te-fab { display: flex; } }

/* ══════════════════════════════════════════════════════════════
   13 · FINAL CTA BAND
   ══════════════════════════════════════════════════════════════ */
.te-final-cta {
  background: var(--te-y);
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.te-final-cta__title {
  font-family: var(--te-font-hd);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--te-c);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.05;
}
.te-final-cta__sub { font-size: 1.0625rem; color: rgba(26,26,27,0.65); margin-bottom: 2rem; }
.te-final-cta__btns { display: flex; flex-wrap: wrap; gap: 0.875rem; justify-content: center; }
.te-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--te-c);
  color: var(--te-y);
  font-family: var(--te-font-body);
  font-size: 1rem;
  font-weight: 800;
  padding: 1rem 2.25rem;
  border-radius: var(--te-radius-sm);
  text-decoration: none;
  border: 2px solid var(--te-c);
  transition: all 0.2s;
  white-space: nowrap;
}
.te-btn-dark:hover { background: #111112; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.te-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--te-c);
  font-family: var(--te-font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.25rem;
  border-radius: var(--te-radius-sm);
  text-decoration: none;
  border: 2px solid rgba(26,26,27,0.35);
  transition: all 0.2s;
  white-space: nowrap;
}
.te-btn-white:hover { background: rgba(26,26,27,0.08); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .te-about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .te-about-img-wrap { order: -1; }
  .te-network-grid { grid-template-columns: 1fr; }
  .te-form-grid { grid-template-columns: 1fr; }
  .te-calc-wrap { padding: 1.5rem; }
  .te-lead-form-wrap { padding: 1.5rem; }
  .te-section { padding: 3rem 1rem; }
  .te-calc-beds { gap: 0.375rem; }
}

@media (max-width: 480px) {
  .te-hero__ctas { flex-direction: column; align-items: stretch; }
  .te-btn-primary, .te-btn-outline { justify-content: center; }
  .te-final-cta__btns { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════════════════
   ACCESSIBILITY — Reduced motion
   ══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .te-ticker__track,
  .te-testimonials__track { animation: none; }
  .te-fab { animation: none; }
  .te-hero__scroll { animation: none; }
}
