*{ margin:0; padding:0; box-sizing:border-box; }

.header-left,
nav ul{
  margin-top: 0;
  display: flex;
  align-items: center;
}

#success-gif,
.benefit,
.dropdown-menu li,
.latest-projects,
.tinting-header h2,
footer {
    text-align: center;
}
.email p,
.phone-number p,
.quote-form-container h2,
body {
    font-family: Roboto, sans-serif;
}
.dropdown-menu li a:hover,
form button[type="submit"] {
    background-color: #1DA1F2;
    color: #fff;
}
.quote-form-container:hover{
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

body {
    background-color: #f9f9f9;
    color: #333;
    padding-top: 64px; /* adjust if needed */
}
header{
  position: fixed; /* stays put */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;

  display: flex;
  justify-content: space-between;
  align-items: center;

  /* smaller height */
  padding: 6px clamp(14px, 2.2vw, 24px);

  /* less “fog” so it feels shorter */
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.28);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* logo */
.header-logo .logo-icon {
  width: 3rem;
  height: auto;
}

/* phone + email text on dark header */
.phone-number,
.email {
  display: flex;
  align-items: center;
  gap: 6px;
}

.email p,
.phone-number p {
  margin: 0;
  font-size: 0.9rem;
  color: #e5e7eb; /* light gray on dark bg */
}

.email a,
.phone-number a {
  color: #e5e7eb;
  text-decoration: none;
}

.email a:hover,
.phone-number a:hover {
  color: #ffffff;
}

/* phone / email icons */
.phone-icon,
.email-icon {
  width: 1.2rem;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

/* SunTek banner reduced so it doesn’t dominate header */
.suntek {
  display: flex;
  align-items: center;
}

.suntek-icon {
  max-height: 50px;
  opacity: 0.9;
}

/* main nav list (desktop) */
nav .main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* push CTA to far right */
nav .main-nav .nav-cta {
  margin-left: auto;
}

/* nav links */
nav ul li {
  position: relative;
}

nav ul li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.18s ease;
}

/* underline “pill” on hover */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  transition: width 0.2s ease;
}

nav ul li a:hover {
  color: #ffffff;
}

nav ul li a:hover::after {
  width: 100%;
}

/* hidden on desktop */
.mobile-menu-toggle {
  display: none;
}

/* MOBILE ONLY STYLES */
@media (max-width: 768px) {
  header {
    padding: 10px 14px;
    justify-content: space-between;
  }

  .header-left {
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
  }

  /* hide extra stuff on small screens */
  .email,
  .suntek {
    display: none;
  }

  /* show the burger button only on mobile */
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(15,23,42,0.9);
    color: #e5e7eb;
    font-size: 1.4rem;
    padding: 4px 10px;
    border-radius: 999px;
    margin-left: auto;
  }

  /* mobile nav panel (hidden by default) */
  nav .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    padding: 12px 16px 16px;
    background: rgba(15,23,42,0.98);
    flex-direction: column;
    gap: 10px;
    display: none;
  }

  nav .main-nav.is-open {
    display: flex;
  }

  nav ul li a {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    width: 100%;
  }

  nav .main-nav .nav-cta .btn-book {
    display: block;
    text-align: center;
    width: 100%;
  }
}

/* Dropdown */
.dropdown-menu{
  display: none;
  position: absolute;
  top: calc(100%);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 14px;

  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(148,163,184,0.22);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);

  z-index: 99999;
}

.dropdown:hover .dropdown-menu{
  display: block;
}

.dropdown-menu li{
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu li a{
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 0.92rem;
  color: rgba(226,232,240,0.92);
}

.dropdown-menu li a::after{
  display:none;
}
.benefit,
.project-item,
.quote-form-container{
    transition: transform 0.3s, box-shadow 0.3s;
}
.dropdown:hover .arrow-down {
    transform: rotate(180deg);
}
.large-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    height: 25vh;
}
.large-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}
.large-logo-section,
.quote-form-container{
    position: relative;
    z-index: 1;
}
form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#car-brand-section,
#description-field,
.see-more {
    margin-top: 20px;
}
#description {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: vertical;
}
#description:focus,
form input:focus,
form select:focus {
    border-color: #f60;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.3);
}
form button[type="submit"] {
    border: none;
    padding: 12px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}
form button[type="submit"]:hover {
    background-color: #e65a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
#car-brand-search {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
#car-brand {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
#success-gif {
    display: none;
    margin-top: 10px;
}
#success-gif img {
    width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* ===== Hero Video Section (new) ===== */
.hero-video{
  position: relative;
  isolation: isolate;
  height: 100vh;          /* exactly one screen */
  display: grid;
  place-items: center;    /* center headline + form */
  overflow: hidden;       /* clip anything spilling */
}


.video-bg{
  position: sticky;
  top: 0;
  height: 100vh;      /* locks to first viewport */
  width: 100%;
  z-index: 0;         /* stays behind .hero-inner (z-index:1) */
  overflow: hidden;
  background: #000;
}

.video-bg video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;           /* desktop fill */
  object-position: 50% 35%;    /* keep subject high-ish */
  filter: saturate(1.05) contrast(1.05);
}
.video-bg video.portrait-src{
  object-fit: contain;  /* show full portrait video on phones (no heavy crop) */
  width: 100%; height: 100%;
  min-width: 0; min-height: 0;
}
.video-overlay{
  position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 75% 15%, rgba(255,255,255,.12), rgba(0,0,0,.55) 60%, rgba(0,0,0,.78) 80%);
  pointer-events: none;
}

/* Foreground grid (left text, right form) */
.hero-inner{
  position: absolute; inset: 0; z-index: 1;
  width: min(1200px, 96vw);
  margin: 0 auto;
  padding: clamp(16px, 2vw, 28px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(16px, 2.5vw, 28px);
  place-items: center;      /* vertical + horizontal center */
}


/* Left hero content for TCT Wraps */
.facts{
  color: #e5f1ff;
  text-shadow: 0 12px 30px rgba(0,0,0,.45);
  padding: clamp(8px, 1vw, 12px);
  max-width: 540px;
}

/* eyebrow line above title */
.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.6);
  color: #e5e7eb;
}


.hero-title {
  position: relative;
  overflow: hidden;
  min-height: 3.2em; /* keeps layout from jumping */
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
}

.hero-title-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* active line */
.hero-title-line.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}


/* supporting line */
.hero-subtitle{
  margin: 0;
  margin-top: 4px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(226,232,240,0.9);
  max-width: 34rem;
}

/* primary + secondary CTAs */
.hero-ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.hero-btn-primary{
  background: linear-gradient(90deg, var(--ct-primary-600), var(--ct-primary));
  color: #f9fafb;
  box-shadow: 0 10px 25px rgba(14,165,233,0.45);
  border-color: transparent;
}

.hero-btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(14,165,233,0.55);
}


.hero-btn-outline{
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(226,232,240,0.6);
  backdrop-filter: blur(4px);
}

.hero-btn-outline:hover{
  background: rgba(15,23,42,0.8);
}

/* small badges under buttons */
.hero-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-meta-item{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: rgba(226,232,240,0.9);
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.5);
}

/* tweak hero layout so content isn't under fixed header */
.hero-inner{
  position: absolute;
  inset: 0;
  z-index: 1;
  width: min(1200px, 96vw);
  margin: 0 auto;
  padding: clamp(16px, 2vw, 28px);
  padding-top: 90px; /* space under transparent header */
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(16px, 2.5vw, 28px);
  place-items: center;
}

/* mobile stacking */
@media (max-width: 980px){
  .hero-inner{
    grid-template-columns: 1fr;
    place-items: center;
    align-content: center;
  }

  .facts{
    text-align: center;
    align-items: center;
  }

  .hero-ctas{
    justify-content: center;
  }

  .hero-meta{
    justify-content: center;
  }
}

#quote-received {
    font-family: Roboto, sans-serif;
    font-size: 2.5rem;
    color: #1DA1F2;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.tinting-benefits {
    padding-top: 100px;
    padding: 3rem 1rem;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.tinting-header {
    text-align: center;
    margin-bottom: 1rem;
}

.tinting-header h2 {
    font-size: 2rem;
    color: #222;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: #444;
}

.shop-info {
    max-width: 800px;
    margin: 0 auto 2rem;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.shop-info ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.shop-info li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.shop-info .service-area {
    font-style: italic;
    color: #666;
    margin-top: 0.5rem;
}

/* Google Reviews Section */
.grw { 
  margin: 24px auto; 
  max-width: 980px; 
  text-align: center; 
  background: transparent;
}

/* Rating badge */
.grw-badge { 
  display: inline-block;
  text-decoration: none;
  margin: 20px auto;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFFFFF;
  background: transparent;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.grw-badge .grw-stars {
  color: #ffc107; /* bright yellow */
  margin-right: 6px;
  font-size: 2rem;
  vertical-align: middle;
  background: transparent;
}

.grw-rating {
  color: #000;
  margin: 0 6px;
}

.grw-count {
  font-size: 1.1rem;
  color: #666;
}

/* Reviews list */
.grw-list { 
  margin-top:14px; 
  display:grid; 
  gap:12px; 
}
.grw-review { 
  border:1px solid #eee; 
  border-radius:12px; 
  padding:14px; 
  background: transparent; 
  text-align:left; 
}
.grw-author { 
  font-weight:600; 
  margin-bottom:6px; 
}
.grw-text { 
  color:#333; 
}

/* Fancy "Read all reviews" button */
.grw-actions {
  margin-top: 20px;
}
.grw-actions a {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
  background: #0073e6; /* nice blue button */
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,115,230,0.2);
}
.grw-actions a:hover {
  background: #005bb5;
  box-shadow: 0 6px 14px rgba(0,115,230,0.3);
}


/* HERO reviews slider only */
#grw-hero .grw-list{
  position: relative;
  width: min(760px, 86vw);
  margin: 12px 0 0;
  overflow: hidden;
}

/* one card at a time; transparent bg + white text */
#grw-hero .grw-review{
  position: absolute; inset: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  padding: 14px;
  color: #fff;
  opacity: 0;
  transform: translateX(-40px);             /* slide in L→R */
  transition: transform .5s ease, opacity .5s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
#grw-hero .grw-review *{ color:#fff; }
#grw-hero .grw-review.is-active{
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

#grw-hero .grw-author{
  font-weight: 700;
  opacity: .9;
  margin-bottom: 6px;
}




.separator-line {
    border-top: 2px solid #ddd;
    margin: 2rem auto;
    width: 90%;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.benefit {
    flex: 1 1 250px;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.08);
    max-width: 320px;
}

.benefit h3 {
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 0.5rem;
}

.benefit p {
    font-size: 0.95rem;
    color: #444;
}


.shop-info {
    max-width: 800px;
    margin: 0 auto 2rem;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.shop-info ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.shop-info li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.shop-info .service-area {
    font-style: italic;
    color: #666;
    margin-top: 0.5rem;
}

.separator-line {
    border-top: 2px solid #ddd;
    margin: 2rem auto;
    width: 90%;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.benefit {
    flex: 1 1 250px;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.08);
    max-width: 320px;
}

.benefit h3 {
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 0.5rem;
}

.benefit p {
    font-size: 0.95rem;
    color: #444;
}


.latest-projects {
    padding: 5px; /* Adds a 30px gap between the content and the border */
    padding-bottom: 20px;
    background-color: #fff; /* Keeps the white background */
    border-radius: 10px; /* Optional: Adds rounded corners for a cleaner look */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow for better visual appeal */
    margin: 20px auto; /* Centers the section and adds spacing at the top and bottom */
    max-width: 1200px; /* Limits the width to avoid stretching across the full page */
}
.projects-header {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}
.projects-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.project-item {
    width: 250px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.project-item img {
    height: 100%;
    object-fit: cover;
}
.project-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.see-more-button {
    background-color: #1DA1F2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}
.see-more-button:hover {
    background-color: #e65a00;
}






/* Popup Overlay */
#clarity-popup-overlay {
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.5); 
    z-index: 9999;
    font-family: 'Roboto', sans-serif;
}

/* Popup Container */
#clarity-popup {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    background: url("/images/popupbg.png") no-repeat center center;  
    padding: 20px; 
    max-width: 300px; 
    width: 90%; 
    border-radius: 5px; 
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
}

/* Close Button */
#clarity-popup-close {
    background: none; 
    border: none; 
    font-size: 18px; 
    position: absolute; 
    right: 10px; 
    top: 10px; 
    cursor: pointer; 
    color: #333;
}

/* Logo */
#clarity-popup img {
    max-width: 100px; 
    margin-bottom: 20px;
}

/* Headlines and Text */
#clarity-popup h2 {
    margin: 10px 0; 
    font-size: 24px; 
    color: rgb(0, 255, 13);
}

#clarity-popup p {
    font-size: 16px; 
    color: #fff; 
    margin-bottom: 20px;
}

/* Initial State Styles */
#clarity-popup-initial input[type="email"] {
    width: 100%; 
    padding: 10px; 
    margin-bottom: 10px; 
    border: 1px solid #ccc; 
    border-radius: 3px; 
    font-size: 14px;
}

#clarity-popup-initial button[type="submit"] {
    width: 100%; 
    padding: 10px; 
    background: green; 
    color: #fff; 
    border: none; 
    border-radius: 3px; 
    cursor: pointer;
    font-size: 16px;
}

#clarity-popup-no-thanks {
    margin-top: 10px; 
    font-size: 14px; 
    color: #555; 
    cursor: pointer; 
    text-decoration: underline;
}

/* Success State Styles */
#clarity-popup-success {
    display: none;
}

#clarity-popup-success .discount-code-box {
    background: #eee; 
    padding: 10px; 
    margin-bottom: 10px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

#clarity-popup-success #clarity-discount-code {
    font-size: 16px; 
    color: #333; 
    word-break: break-all;
}

#clarity-popup-success #clarity-copy-code {
    background: #ccc; 
    border: none; 
    padding: 5px; 
    font-size: 14px; 
    cursor: pointer; 
    border-radius: 3px;
}

#clarity-popup-success #clarity-continue {
    width: 100%; 
    padding: 10px; 
    background: green; 
    color: #fff; 
    border: none; 
    border-radius: 3px; 
    cursor: pointer;
    font-size: 16px;
}


.quote-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 60px 30px;
    background: linear-gradient(135deg, #fff 0, #f1f1f1 100%);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 1;
}


/* Mobile: stack and center */
@media (max-width: 768px) {
    .hero-slideshow {
        padding-bottom: 60px;
    }

    .slideshow-container {
        height: auto;
    }

    .slide img {
        height: auto;
    }

    .prev-slide,
    .next-slide {
        top: 45%;
    }

    .slide-caption {
        font-size: 0.75rem;
    }
}




/* ========== Footer Styles ========== */

.site-footer {
  background-color: #222;        /* Dark background */
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 2em 1em;
}

.footer-top {
  display: flex;                 /* side-by-side columns */
  flex-wrap: wrap;               /* wrap on smaller screens */
  justify-content: space-between;
  margin-bottom: 2em;
}

/* Each column in the top section */
.footer-column {
  flex: 1 1 200px;               /* grow/shrink with min width */
  margin: 1em;
}

.footer-column h4 {
  margin-bottom: 0.5em;
}

.footer-logo {
  max-width: 180px;              /* Adjust as needed */
  margin-bottom: 1em;
}

/* Style the hours list */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Only change color for email and phone links */
.footer-column p a[href^="mailto:"], 
.footer-column p a[href^="tel:"] {
  color: #fff !important;  /* Force white */
  text-decoration: none;
}

/* Hover effect for email and phone */
.footer-column p a[href^="mailto:"]:hover, 
.footer-column p a[href^="tel:"]:hover {
  color: #ccc;
  text-decoration: underline;
}

.footer-column p strong {
  color: #fff;
  font-weight: bold;
}

/* Social links */
.social-links a {
  color: #fff;
  text-decoration: none;
}
.social-links a:hover {
  text-decoration: underline;
}

/* Bottom section */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1em;
  font-size: 0.875em;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #ccc;
}


/* Final hero overrides */
.hero-video .quote-form-overlay{
  position: static !important;
  transform: none !important;
  right: auto !important;
  top: auto !important;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 980px){
  .hero-video .quote-form-overlay{ justify-content: center; }
}


/* Optional responsive tweak */
@media (max-width: 480px){
  #grw-hero .grw-list{ height: 150px !important; }
}


@media (min-width: 481px) and (max-width: 980px){
  #grw-hero .grw-list{ height: 150px; }
}
@media (min-width: 981px){
  #grw-hero .grw-list{ height: 170px; }
}
@media (max-width: 480px) {
    .hero-inner .quote-form-container {
      max-width: 320px;     /* was ~380–500 */
      padding: 16px 18px;   /* was 40px 60px */
      border-radius: 12px;
    }
    .hero-inner .quote-form-container h2 {
      font-size: 1.4rem;    /* smaller title */
      margin-bottom: 12px;
    }
    #quote-form {
      gap: 10px;            /* tighter spacing */
    }
    #quote-form input,
    #quote-form select,
    #quote-form textarea {
      font-size: 0.95rem;
      padding: 10px;
    }
    #quote-form button[type="submit"] {
      padding: 10px 14px;
      font-size: 1rem;
      border-radius: 8px;
    }
  }
  

/* default desktop (your current layout is fine) */

/* when in the mobile slot it should span full width nicely */
#mobile-quote-slot .quote-form-overlay {
  position: static;
  transform: none;
  right: auto;
  top: auto;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  z-index: auto;
}

#mobile-quote-slot .quote-form-container {
  max-width: 420px;
  width: 90%;
}


/* Generic helpers */
.hidden { display: none; }
.center { text-align: center; }
.mt-20 { margin-top: 20px; }

/* Accessibility: visually hide but keep for screen readers/SEO */
.visually-hidden {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Spacing wrapper for conditional blocks */
.field-block { margin-top: 20px; }

/* Success state elements (moved from inline) */
.success-img { width: 150px; height: auto; }
.response-message { font-size: 1.2rem; color: #333; }



.email-toast{
  position: fixed; right: 16px; bottom: 16px; z-index: 9999;
  width: 320px; max-width: calc(100vw - 32px);
  padding: 14px 12px 12px; border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  background: #fff; color: #111; display: none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.email-toast.is-show{ display: block; animation: et-pop .15s ease-out; }
@keyframes et-pop{ from{ transform: translateY(8px); opacity:0; } to{ transform: translateY(0); opacity:1; } }

.email-toast .et-close{
  position:absolute; right:8px; top:6px; border:0; background:transparent;
  font-size:18px; line-height:1; cursor:pointer;
}
.email-toast .et-title{ font-weight:700; margin-bottom:8px; }
.email-toast .et-actions{ display:flex; gap:8px; margin-bottom:6px; }
.email-toast .et-gmail,
.email-toast .et-copy{
  display:inline-block; padding:8px 10px; border-radius:8px; border:0; cursor:pointer;
  text-decoration:none; font-weight:600; font-size:14px;
}
.email-toast .et-gmail{ background:#1a73e8; color:#fff; }
.email-toast .et-copy{ background:#f1f3f4; color:#111; }
.email-toast .et-note{ font-size:12px; color:#555; }

.fb-noscript-pixel{
  display:none;
  width:1px;
  height:1px;
}

/* =========================
   Clarity Tinting – Quote Form (v1.0)
   ========================= */

/* Brand variables (tweak if needed) */
:root{
  --ct-primary: #0ea5e9;     /* bright clarity blue */
  --ct-primary-600:#0284c7;
  --ct-dark:    #0b1220;     /* near-black */
  --ct-muted:   #6b7280;     /* gray text */
  --ct-panel:   #0f172a;     /* deep slate for contrast */
  --ct-border:  #1f2937;     /* panel border */
  --ct-bg:      #0b1220;     /* page background under hero */
  --ct-white:   #ffffff;
  --ring:       2px solid rgba(14,165,233,.35);
  --radius-lg:  16px;
  --radius-sm:  10px;
  --shadow-md:  0 12px 30px rgba(0,0,0,.35);
  --shadow-sm:  0 6px 18px rgba(0,0,0,.25);
  --transition: .18s ease;
}

/* Positioning wrapper (keeps it right-aligned on desktop, centered on mobile) */
.quote-form-overlay{
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  padding: 32px 24px;
  pointer-events: none; /* let hero clicks pass through except the card */
}
@media (max-width: 1024px){
  .quote-form-overlay{ justify-content: center; padding: 24px 16px; }
}

/* Glassy/modern card */
.quote-form-container{
  pointer-events: auto;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15,23,42,.86), rgba(15,23,42,.92));
  border: 1px solid var(--ct-border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 28px 26px;
}

/* Title */
#quote-title{
  margin: 0 0 18px 0;
  font-size: clamp(20px, 3.1vw, 26px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .4px;
  color: var(--ct-white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
#quote-title::after{
  content: "";
  flex: 1 1 auto;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ct-primary), transparent 70%);
  opacity: .7;
}

/* Success block */
#success-gif.center{
  text-align: center;
  padding: 6px 0 10px;
}
.success-img{
  width: 120px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 8px 20px rgba(14,165,233,.3));
}
#quote-received,
.response-message{
  color: var(--ct-white);
  margin: 8px 0 0 0;
  font-weight: 600;
}

/* Form layout */
#quote-form{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Inputs / selects / textarea */
#quote-form input[type="text"],
#quote-form input[type="email"],
#quote-form input[type="tel"],
#quote-form select,
#quote-form textarea{
  width: 100%;
  appearance: none;
  border: 1px solid var(--ct-border);
  background: rgba(2,6,23,.65);
  color: var(--ct-white);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

#quote-form textarea{
  min-height: 110px;
  resize: vertical;
}

/* Placeholder color */
#quote-form ::placeholder{ color: rgba(255,255,255,.6); }

/* Focus states */
#quote-form input:focus,
#quote-form select:focus,
#quote-form textarea:focus{
  border-color: var(--ct-primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,.18);
}

/* Valid/invalid quick hint (optional) */
#quote-form input:required:invalid{ border-color: #6b7280; }
#quote-form input:required:valid{ border-color: rgba(34,197,94,.6); }

/* Group blocks revealed by JS */
.field-block{ margin-top: 6px; }
.hidden{ display: none; }

/* Submit button */
#quote-form button[type="submit"]{
  margin-top: 6px;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--ct-primary-600), var(--ct-primary));
  color: var(--ct-white);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 10px 22px rgba(14,165,233,.28);
}
#quote-form button[type="submit"]:hover{
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 14px 28px rgba(14,165,233,.33);
}
#quote-form button[type="submit"]:active{
  transform: translateY(0);
}

/* Small helper spacing for the extra car fields that already include .mt-20 */
.mt-20{ margin-top: 16px !important; }

/* Put a thin divider above optional car details when shown */
#car-brand-field{
  border-top: 1px dashed rgba(148,163,184,.25);
  padding-top: 12px;
}

/* Mobile slot section spacing (when you move form outside hero on small screens) */
#mobile-quote-slot{
  padding: 24px 16px;
}

/* Subtle entrance animation */
@media (prefers-reduced-motion: no-preference){
  .quote-form-container{
    animation: ctFadeSlide .45s ease both;
  }
  @keyframes ctFadeSlide{
    from{ transform: translateY(6px); opacity: 0; }
    to{ transform: translateY(0); opacity: 1; }
  }
}


.input-error{
border-color:#ef4444 !important;
box-shadow:0 0 0 3px rgba(239,68,68,.15);
}

.input-error{
border-color:#ef4444 !important;
box-shadow:0 0 0 3px rgba(239,68,68,.15);
}
.form-error{
margin-top:.75rem;
font-size:.95rem;
color:#ef4444;
}

/* --- BOOK NOW CTA --- */
:root{
  --brand-primary: #2563eb;       /* blue-600 */
  --brand-primary-hover: #1e40af; /* blue-800 */
  --brand-shadow: rgba(37,99,235,0.35);
  --text-on-primary: #ffffff;
}

/* Ensure the nav lays out horizontally with space for CTA on the right */
@media (min-width: 769px) {
  nav .main-nav{
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    list-style: none;
    padding: 0;
    margin: 0;
  }
}

/* Push the CTA to the far right */
nav .main-nav .nav-cta{
  margin-left: auto;
}

/* Button look */
nav .btn-book{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 9999px;
  background: var(--brand-primary);
  color: var(--text-on-primary);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.4px;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  white-space: nowrap;
}

/* Hover / focus states */
nav .btn-book:hover{
  background: var(--brand-primary-hover);
  box-shadow: 0 8px 18px -6px var(--brand-shadow);
  transform: translateY(-1px);
}

nav .btn-book:focus-visible{
  outline: 3px solid color-mix(in srgb, var(--brand-primary) 60%, white);
  outline-offset: 3px;
}

/* Active click */
nav .btn-book:active{
  transform: translateY(0);
  box-shadow: 0 4px 10px -6px var(--brand-shadow);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  nav .btn-book{
    transition: none;
  }
}

/* Mobile: make CTA easy to tap */
@media (max-width: 640px){
  nav .main-nav{
    gap: 10px;
  }
  nav .btn-book{
    padding: 0.65rem 0.95rem;
    font-weight: 700;
  }
}




/* =========================
   TCT Wraps – Alternating Services Layout
   ========================= */

.services-alt {
  background: #ffffff;
  padding: 80px 16px 90px;
}

.services-alt-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Header */
.services-alt-header {
  text-align: left;
  max-width: 640px;
  margin: 0 auto 50px;
}

.services-alt-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(15,23,42,0.92);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148,163,184,0.7);
}

.services-alt-header h2 {
  margin: 18px 0 10px;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #020617;
}

.services-alt-header p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Rows */
.services-alt-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 32px;
  border-radius: 22px;
  background: #f9fafb;
  box-shadow: 0 18px 55px rgba(15,23,42,0.12);
  margin-bottom: 30px;
}

/* Alternate image/text sides */
.services-alt-row:nth-of-type(even) {
  flex-direction: row-reverse;
}

.services-alt-image {
  flex: 0 0 46%;
  border-radius: 18px;
  overflow: hidden;
}

.services-alt-image img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

.services-alt-row:hover .services-alt-image img {
  transform: scale(1.07);
}

/* Text */
.services-alt-copy {
  flex: 1;
}

.services-alt-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}

.services-alt-copy h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #020617;
}

.services-alt-copy > p {
  margin: 0 0 10px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
}

.services-alt-copy ul {
  margin: 0 0 14px;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: #4b5563;
}

.services-alt-copy ul li + li {
  margin-top: 3px;
}

/* Button – use your submit blue */
.services-alt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: #1DA1F2;               /* your blue */
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(29,161,242,0.35);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.services-alt-btn:hover {
  background: #0f90e0;
  box-shadow: 0 14px 32px rgba(29,161,242,0.45);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .services-alt-row {
    flex-direction: column;
    padding: 24px 20px;
  }

  .services-alt-row:nth-of-type(even) {
    flex-direction: column; /* no alternation on mobile */
  }

  .services-alt-image {
    flex-basis: auto;
    width: 100%;
  }

  .services-alt-image img {
    max-height: 230px;
  }

  .services-alt-copy {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .services-alt {
    padding: 56px 14px 70px;
  }

  .services-alt-row {
    gap: 20px;
  }
}

/* Hard reset for the services heading so it scrolls normally */
#services .services-alt-header {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  z-index: auto !important;
}

.services-alt-image {
  flex: 0 0 46%;
  border-radius: 18px;
  overflow: hidden;
  position: relative; /* new so we can place the badge */
}

/* Brand badge (no "We use", larger logos, more visible) */
.service-brand-badge {
  position: absolute;
  left: 5px;
  bottom: 5px;
  padding: 5px 5px;
  border-radius: 5px;
  background: #FFFFFF; /* slightly darker for visibility */
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
}

/* Bigger logo */
.service-brand-badge img {
  height: 50px;   /* increased from ~20px */
  width: auto;
  display: block;
  opacity: 0.95;  /* crisp but not overpowering */
}

/* Mobile sizing */
@media (max-width: 640px) {
  .service-brand-badge {
    padding: 6px 10px;
    left: 12px;
    bottom: 12px;
  }
  .service-brand-badge img {
    height: 26px;
  }
}



/* =========================
   PORTFOLIO STRIP (LIGHT)
========================= */
.portfolio-strip{
  padding: clamp(48px, 6vw, 90px) 0;
  background: #ffffff; /* you removed bg, keep explicit */
  border-top: 1px solid rgba(15,23,42,0.10);
  border-bottom: 1px solid rgba(15,23,42,0.10);
}

.portfolio-strip-inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.portfolio-strip-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

/* Eyebrow pill now light */
.portfolio-strip-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(29,161,242,0.10);
  border: 1px solid rgba(29,161,242,0.25);
  color: rgba(15,23,42,0.92);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-strip-title{
  margin: 10px 0 6px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  font-weight: 800;
  color: rgba(15,23,42,0.95); /* was white */
}

.portfolio-strip-subtitle{
  margin: 0;
  color: rgba(15,23,42,0.72); /* was light */
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.55;
}

/* CTA button: still blue but works on white */
.portfolio-strip-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(15,23,42,0.95);
  background: rgba(29,161,242,0.12);
  border: 1px solid rgba(29,161,242,0.35);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.portfolio-strip-cta:hover{
  transform: translateY(-2px);
  background: rgba(29,161,242,0.18);
  border-color: rgba(29,161,242,0.55);
}

.portfolio-strip-cta-arrow{
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Grid on desktop */
.portfolio-strip-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* Card sizing pattern */
.portfolio-card:nth-child(1){ grid-column: span 6; }
.portfolio-card:nth-child(2){ grid-column: span 6; }
.portfolio-card:nth-child(3){ grid-column: span 4; }
.portfolio-card:nth-child(4){ grid-column: span 4; }
.portfolio-card:nth-child(5){ grid-column: span 4; }
.portfolio-card:nth-child(6){ grid-column: span 12; }

/* Card */
.portfolio-card{
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.10);
  transform: translateZ(0);
}

.portfolio-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  filter: saturate(1.03) contrast(1.03);
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Overlay fade stays (needed for readability on photos) */
.portfolio-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.00) 45%),
    linear-gradient(0deg, rgba(0,0,0,0.62), rgba(0,0,0,0.00) 62%);
  pointer-events: none;
}

.portfolio-card-overlay{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 6px;
}

/* Service pill stays blue */
.portfolio-card-pill{
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(29,161,242,0.85);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}

/* Overlay text remains white because it sits on dark fade */
.portfolio-card-title{
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  text-shadow: 0 10px 26px rgba(0,0,0,0.55);
}

.portfolio-card-meta{
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
  text-shadow: 0 10px 26px rgba(0,0,0,0.55);
}

/* Hover */
.portfolio-card:hover img{
  transform: scale(1.04);
  filter: saturate(1.10) contrast(1.06);
}

.portfolio-card:focus-visible{
  outline: 2px solid rgba(29,161,242,0.85);
  outline-offset: 3px;
}

@media (max-width: 980px){
  .portfolio-strip-head{
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-strip-cta{
    width: fit-content;
  }

  /* STACK VERTICALLY (no horizontal swipe) */
  .portfolio-strip-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .portfolio-card{
    width: 100%;
  }

  .portfolio-card img{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* nice full-width */
  }

  /* disable old nth-child column spans */
  .portfolio-card:nth-child(1),
  .portfolio-card:nth-child(2),
  .portfolio-card:nth-child(3),
  .portfolio-card:nth-child(4),
  .portfolio-card:nth-child(5),
  .portfolio-card:nth-child(6){
    grid-column: auto;
  }

  /* remove scrollbar styles (no longer needed) */
  .portfolio-strip-grid::-webkit-scrollbar{ height: 0; }
}



/* =========================
   SECTION HEAD (pill + title + subtitle)
========================= */
.section-head{
  margin-bottom: 22px;
  max-width: 900px;
}

.section-eyebrow{
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(29,161,242,0.12);
  border: 1px solid rgba(29,161,242,0.25);
  color: rgba(15,23,42,0.92);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title{
  margin: 12px 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
  font-weight: 900;
  color: rgba(15,23,42,0.95);
}

.section-subtitle{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(15,23,42,0.72);
  max-width: 680px;
}

/* Optional: center align on small screens */
@media (max-width: 720px){
  .section-head{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .section-subtitle{
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials{
  padding: clamp(48px, 6vw, 90px) 0;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff; /* you said background is white now */
}

.testimonials-inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Reuse your title format (same pattern as portfolio head) */
.section-head{
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.78);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title{
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  font-weight: 900;
  color: #0b1220; /* dark for white bg */
}

.section-subtitle{
  margin: 0;
  color: rgba(15, 23, 42, 0.70);
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid */
.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 18px;
}

/* Card placement (premium layout) */
.review-card:nth-child(1){ grid-column: span 6; }
.review-card:nth-child(2){ grid-column: span 6; }
.review-card:nth-child(3){ grid-column: span 4; }
.review-card:nth-child(4){ grid-column: span 4; }
.review-card:nth-child(5){ grid-column: span 8; }
.review-card:nth-child(6){ grid-column: span 4; }

.review-card{
  position: relative;
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 14px 32px rgba(0,0,0,0.10);
}

.review-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(600px 200px at 20% -10%, rgba(29,161,242,0.12), rgba(29,161,242,0.00) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.00));
  opacity: 0.9;
}

.review-card > *{ position: relative; }

.review-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.review-stars{
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: rgba(29,161,242,0.95); /* your submit blue */
  white-space: nowrap;
}

.review-source{
  font-size: 0.78rem;
  color: rgba(15, 23, 42, 0.62);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.10);
}

.review-quote{
  margin: 0;
  color: rgba(15, 23, 42, 0.86);
  font-size: 1.02rem;
  line-height: 1.65;
}

.review-footer{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
}

.review-name{
  display:block;
  font-weight: 900;
  color: #0b1220;
  line-height: 1.2;
}

.review-meta{
  display:block;
  margin-top: 3px;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.62);
}

/* Hover */
.review-card{
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.review-card:hover{
  transform: translateY(-3px);
  border-color: rgba(29,161,242,0.25);
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}

/* Bottom CTA */
.testimonials-bottom{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.testimonials-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #0b1220;
  background: rgba(29,161,242,0.10);
  border: 1px solid rgba(29,161,242,0.25);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  font-weight: 800;
}

.testimonials-cta:hover{
  transform: translateY(-2px);
  background: rgba(29,161,242,0.14);
  border-color: rgba(29,161,242,0.40);
}

.testimonials-cta-arrow{
  font-size: 1.1rem;
  opacity: 0.9;
}

.testimonials-note{
  margin: 0;
  color: rgba(15, 23, 42, 0.65);
}

/* Responsive: horizontal swipe on mobile */
@media (max-width: 980px){
  .testimonials-grid{
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .review-card{
    scroll-snap-align: start;
  }

  /* remove desktop spans */
  .review-card:nth-child(1),
  .review-card:nth-child(2),
  .review-card:nth-child(3),
  .review-card:nth-child(4),
  .review-card:nth-child(5),
  .review-card:nth-child(6){
    grid-column: auto;
  }

  .testimonials-grid::-webkit-scrollbar{ height: 8px; }
  .testimonials-grid::-webkit-scrollbar-thumb{
    background: rgba(15, 23, 42, 0.18);
    border-radius: 999px;
  }
}

@media (max-width: 420px){
  .testimonials-grid{ grid-auto-columns: 92%; }
}

/* Actions row */
.testimonials-actions{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Secondary / outline style */
.testimonials-cta--outline{
  background: transparent;
  color: rgba(15,23,42,0.92);
  border: 1px solid rgba(15,23,42,0.25);
  box-shadow: none;
}

.testimonials-cta--outline:hover{
  background: rgba(15,23,42,0.05);
  border-color: rgba(15,23,42,0.45);
}

/* Small screens */
@media (max-width: 720px){
  .testimonials-actions{
    width: 100%;
    justify-content: center;
  }

  .testimonials-note{
    text-align: center;
    width: 100%;
  }
}

/* =========================
   HOW IT WORKS (4 steps)
========================= */
.howitworks{
  padding: clamp(56px, 6vw, 96px) 0;
  border-top: 1px solid rgba(15,23,42,0.10);
}

.howitworks-inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.howitworks-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.howitworks-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15,23,42,0.12);
  color: rgba(15,23,42,0.85);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.howitworks-title{
  margin: 10px 0 6px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  font-weight: 900;
  color: rgba(15,23,42,0.95);
}

.howitworks-subtitle{
  margin: 0;
  color: rgba(15,23,42,0.70);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.55;
}

/* CTA (matches your blue style, adapted for white bg) */
.howitworks-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(15,23,42,0.95);
  background: rgba(29,161,242,0.14);
  border: 1px solid rgba(29,161,242,0.35);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.howitworks-cta:hover{
  transform: translateY(-2px);
  background: rgba(29,161,242,0.20);
  border-color: rgba(29,161,242,0.55);
}

.howitworks-cta-arrow{
  font-size: 1.05rem;
  opacity: 0.9;
}

/* Steps grid */
.howitworks-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.how-step{
  grid-column: span 3;
  border-radius: 18px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  padding: 16px 16px 14px;
  position: relative;
  overflow: hidden;
}

.how-step::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(29,161,242,0.16), rgba(255,255,255,0) 55%),
    radial-gradient(900px 400px at 120% 20%, rgba(15,23,42,0.08), rgba(255,255,255,0) 60%);
  pointer-events: none;
}

.how-step-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.how-step-num{
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: rgba(15,23,42,0.55);
  background: rgba(15,23,42,0.06);
  border: 1px solid rgba(15,23,42,0.12);
  padding: 6px 10px;
  border-radius: 999px;
}

.how-step-icon{
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(29,161,242,0.14);
  border: 1px solid rgba(29,161,242,0.28);
  font-size: 1.1rem;
}

.how-step-title{
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 900;
  color: rgba(15,23,42,0.95);
  position: relative;
  z-index: 1;
}

.how-step-text{
  margin: 0 0 12px;
  color: rgba(15,23,42,0.70);
  line-height: 1.55;
  font-size: 0.98rem;
  position: relative;
  z-index: 1;
}

.how-step-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.how-tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: rgba(15,23,42,0.75);
  background: rgba(15,23,42,0.06);
  border: 1px solid rgba(15,23,42,0.10);
}

/* Bottom row */
.howitworks-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,0.10);
}

.howitworks-mini{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 680px;
}

.howitworks-mini-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(29,161,242,0.85);
  margin-top: 6px;
  flex: 0 0 auto;
}

.howitworks-mini-text{
  margin: 0;
  color: rgba(15,23,42,0.70);
  line-height: 1.55;
}

.howitworks-actions{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Secondary CTA */
.howitworks-cta--outline{
  background: transparent;
  color: rgba(15,23,42,0.92);
  border: 1px solid rgba(15,23,42,0.25);
  box-shadow: none;
}

.howitworks-cta--outline:hover{
  background: rgba(15,23,42,0.05);
  border-color: rgba(15,23,42,0.45);
}

/* Responsive */
@media (max-width: 980px){
  .howitworks-head{
    align-items: flex-start;
    flex-direction: column;
  }

  .howitworks-grid{
    grid-template-columns: repeat(6, 1fr);
  }

  .how-step{
    grid-column: span 3;
  }

  .howitworks-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px){
  .howitworks-grid{
    grid-template-columns: 1fr;
  }

  .how-step{
    grid-column: span 1;
  }

  .howitworks-actions{
    width: 100%;
  }
}


/* =========================
   MAP LITE
========================= */
.ct-map{ padding: 16px; }

.map-head{
  padding: 6px 6px 12px;
}
.map-sub{
  margin-top: 4px;
  color: rgba(15,23,42,.68);
  line-height: 1.5;
  font-size: .95rem;
}

.map-lite{
  position: relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.12);
  background: #fff;
  box-shadow: 0 14px 32px rgba(2,6,23,0.10);
}

.map-lite img{
  width: 100%;
  height: auto;
  display:block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.map-lite iframe{
  width: 100%;
  height: 380px;
  border: 0;
  display:block;
}

.map-load-btn{
  position:absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(15,23,42,.70);
  color:#fff;
  font-weight: 850;
  cursor:pointer;
  backdrop-filter: blur(10px);
}

/* =========================
   FOOTER (updated)
========================= */
.site-footer{
  background-color:#222;
  color:#fff;
  font-family: Arial, sans-serif;
  padding: 2em 1em;
}

.footer-top{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  margin-bottom:2em;
}

.footer-column{
  flex: 1 1 200px;
  margin: 1em;
}

.footer-column h4{ margin-bottom:.5em; }

.footer-logo{
  max-width:180px;
  margin-bottom:1em;
}

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

.footer-column p a[href^="mailto:"],
.footer-column p a[href^="tel:"]{
  color:#fff !important;
  text-decoration:none;
}

.footer-column p a[href^="mailto:"]:hover,
.footer-column p a[href^="tel:"]:hover{
  color:#ccc;
  text-decoration:underline;
}

.social-links a{
  color:#fff;
  text-decoration:none;
}
.social-links a:hover{ text-decoration:underline; }

.footer-bottom{
  text-align:center;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top:1em;
  font-size:.875em;
}

.footer-bottom a{
  color:#fff;
  text-decoration:underline;
}
.footer-bottom a:hover{ color:#ccc; }


/* ===== Quote form: services + vehicle layout ===== */
.qf-labelrow{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  margin: 2px 0 10px;
}

.qf-label{
  font-weight: 800;
  color: rgba(255,255,255,.92);
  font-size: 0.95rem;
}

.qf-hint{
  font-size: 0.82rem;
  color: rgba(255,255,255,.60);
}

.qf-services{
  border: 1px solid rgba(31,41,55,.9);
  background: rgba(2,6,23,.35);
  border-radius: 12px;
  padding: 12px;
}

.qf-services-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 420px){
  .qf-services-grid{ grid-template-columns: 1fr; }
}

.qf-chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.20);
  background: rgba(15,23,42,.55);
  cursor: pointer;
  user-select: none;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.qf-chip:hover{
  transform: translateY(-1px);
  border-color: rgba(14,165,233,.55);
}

.qf-chip input{
  width: 18px;
  height: 18px;
  accent-color: var(--ct-primary);
}

.qf-chip span{
  color: rgba(255,255,255,.90);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
}

.qf-vehicle-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

@media (max-width: 560px){
  .qf-vehicle-grid{ grid-template-columns: 1fr; }
}


/* ===== Services dropdown ===== */
.qf-services{
  border: 1px solid rgba(31,41,55,.9);
  background: rgba(2,6,23,.35);
  border-radius: 12px;
  padding: 10px;
}

.qf-dropdown{
  position: relative;
}

.qf-dropdown summary{
  list-style: none;
  cursor: pointer;
}
.qf-dropdown summary::-webkit-details-marker{ display:none; }

.qf-dropdown-summary{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.20);
  background: rgba(15,23,42,.55);
}

.qf-dropdown-title{
  font-weight: 800;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}

.qf-dropdown-value{
  margin-left: auto;
  color: rgba(255,255,255,.65);
  font-weight: 700;
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 50%;
}

.qf-dropdown-caret{
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,.65);
  border-bottom: 2px solid rgba(255,255,255,.65);
  transform: rotate(45deg);
  transition: transform .18s ease;
}

.qf-dropdown[open] .qf-dropdown-caret{
  transform: rotate(-135deg);
}

.qf-dropdown-panel{
  margin-top: 10px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 420px){
  .qf-dropdown-panel{ grid-template-columns: 1fr; }
}

.form-success{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.12);   /* soft green */
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.45;
}

.form-success strong{
  font-weight: 800;
  color: ;#ffffff;
}

/* Utility: hidden elements */
.is-hidden {
  display: none !important;
}

/* Optional: visually hidden but accessible (if needed elsewhere) */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


