:root{
  --blue:#1DA1F2;
  --ink:#0b1220;
  --muted:rgba(15,23,42,.72);
  --line:rgba(15,23,42,.12);
  --card:#ffffff;
  --radius:18px;
  --shadow:0 18px 40px rgba(2,6,23,.10);
}

*{ 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;

  padding: 6px clamp(14px, 2.2vw, 24px);

  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;
}

.header-logo .logo-icon {
  width: 3rem;
  height: auto;
}

.phone-number,
.email {
  display: flex;
  align-items: center;
  gap: 6px;
}

.email p,
.phone-number p {
  margin: 0;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.email a,
.phone-number a {
  color: #e5e7eb;
  text-decoration: none;
}

.email a:hover,
.phone-number a:hover {
  color: #ffffff;
}

.phone-icon,
.email-icon {
  width: 1.2rem;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.suntek {
  display: flex;
  align-items: center;
}

.suntek-icon {
  max-height: 50px;
  opacity: 0.9;
}


nav .main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
}

nav .main-nav .nav-cta {
  margin-left: auto;
}

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;
}

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%;
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  header {
    padding: 10px 14px;
    justify-content: space-between;
  }

  .header-left {
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
  }

  .email,
  .suntek {
    display: none;
  }

  .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;
  }

  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-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;
}


body{
  margin:0;
  font-family:Roboto, system-ui, sans-serif;
  color:var(--ink);
  background:#fff;
}


.section-eyebrow{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(29,161,242,.12);
  border:1px solid rgba(29,161,242,.35);
  font-size:.75rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.section-title{
  margin:0 0 12px;
  line-height:1.12;
  font-size:clamp(1.55rem,2.6vw,2.2rem);
  font-weight:900;
}

.section-subtitle{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  max-width: 66ch;
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  background:var(--blue);
  color:#fff;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(29,161,242,.0);
  transition: transform .15s ease, filter .15s ease;
}

.btn-primary:hover{
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border:1px solid var(--line);
  border-radius:14px;
  text-decoration:none;
  font-weight:750;
  color: var(--ink);
  background: #fff;
  transition: transform .15s ease, border-color .15s ease;
}

.btn-outline:hover{
  transform: translateY(-1px);
  border-color: rgba(15,23,42,.22);
}

.tint-hero{
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border-bottom:1px solid var(--line);
  padding-top: 60px;
  padding-bottom: 60px;
}

.tint-hero-inner{
  width:min(1100px,92vw);
  margin:0 auto;
  text-align:center;
}

.tint-hero-title{
  margin: 6px 0 10px;
  font-size: clamp(1.9rem, 3.4vw, 3.05rem);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.tint-hero-subtitle{
  margin: 0 auto;
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.tint-hero-actions{
  margin-top: 18px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.tint-hero-badges{
  margin-top: 20px;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.mini-badge{
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(2,6,23,.03);
  border: 1px solid rgba(15,23,42,.10);
  color: rgba(15,23,42,.78);
  font-weight: 700;
  font-size: .86rem;
}

.tint-why-inner{
  width:min(1100px,92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.why-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.why-tile{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: 0 10px 26px rgba(2,6,23,.07);
}

.why-tile h3{
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 900;
}

.why-tile p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tint-note{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(29,161,242,.08);
  border: 1px solid rgba(29,161,242,.18);
}

.tint-note .dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 6px;
  flex: 0 0 auto;
}

.tint-note p{
  margin: 0;
  color: rgba(15,23,42,.78);
  line-height: 1.6;
}

.tint-why-media{
  display:grid;
  gap: 14px;
}

.xpel-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.xpel-logo{
  width: 100%;
  height: auto;
  display:block;
  object-fit: contain;
}

.xpel-card-caption{
  margin-top: 10px;
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: rgba(15,23,42,.78);
}

.xpel-card-caption strong{
  font-weight: 950;
}

.xpel-card-caption span{
  color: rgba(15,23,42,.62);
  font-weight: 700;
  font-size: .95rem;
}

.media-panel{
  background: rgba(2,6,23,.03);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  padding: 16px;
}

.media-panel-title{
  font-weight: 950;
  margin-bottom: 10px;
}

.checklist{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,.72);
  line-height: 1.75;
}

.tint-films{
  padding-top: 60px;
  padding-bottom: 60px;
}
.tint-films-inner{
  width:min(1100px,92vw);
  margin:0 auto;
}

.film-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:24px;
}

.film-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}

.featured{
  border-color: rgba(29,161,242,.40);
  box-shadow: 0 22px 55px rgba(29,161,242,.14);
}

.film-badge{
  display:inline-block;
  margin-bottom:10px;
  font-size:.7rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: #0b1220;
  background: rgba(29,161,242,.14);
  border: 1px solid rgba(29,161,242,.28);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
}

.film-title{
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 950;
}

.film-desc{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.film-list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(15,23,42,.72);
  line-height: 1.75;
}

.compare-wrap{
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.compare-head{
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(2,6,23,.02);
}

.compare-title{
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 950;
}

.compare-sub{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.compare-table{
  display: grid;
}

.c-row{
  display:grid;
  grid-template-columns: 1.1fr 1.8fr .9fr 1.1fr .9fr;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  align-items: center;
}

.c-head{
  font-weight: 950;
  background: rgba(2,6,23,.02);
}

.c-film{
  font-weight: 950;
}
  
.c-featured{
  background: rgba(29,161,242,.06);
}

.compare-note{
  margin: 0;
  padding: 12px 18px 16px;
  color: rgba(15,23,42,.60);
  font-size: .92rem;
}

.tint-quality{
  background: #f7fbff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 60px;
  padding-bottom: 60px;
}

.tint-quality-inner{
  width:min(1100px,92vw);
  margin:0 auto;
}

.quality-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quality-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(2,6,23,.08);
}

.quality-card h3{
  margin: 0 0 8px;
  font-weight: 950;
}

.quality-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tint-cta{
  text-align:center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.tint-cta-inner{
  width:min(900px,92vw);
  margin:0 auto;
}

.cta-title{
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 950;
}

.cta-sub{
  margin: 0 auto;
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.7;
}

.cta-actions{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tint-hero-actions{
  width: 100%;
  display: flex;
  justify-content: center;
}


.tint-hero{
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-bottom: 1px solid var(--line);

  /* THIS is what makes it feel bigger */
  min-height: 70vh;
  display: flex;
  align-items: center;

  padding-top: 30px;
  padding-bottom: 60px;
}

.tint-hero-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.tint-hero-title{
  margin: 10px 0 14px;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.tint-hero-subtitle{
  margin: 0 auto;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.08rem;
}

.tint-hero-actions{
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.tint-hero-badges{
  margin-top: 30px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.mini-badge{
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(2,6,23,.03);
  border: 1px solid rgba(15,23,42,.12);
  color: rgba(15,23,42,.8);
  font-weight: 750;
  font-size: .85rem;
}

.tint-hero-footnote{
  margin-top: 34px;
  font-size: .95rem;
  color: rgba(15,23,42,.55);
}

.tint-packages{
  border-top: 1px solid var(--line);
  padding-top: 60px;
  padding-bottom: 60px;
}

.tint-packages-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.package-grid{
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.package-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.package-card.featured{
  border-color: rgba(29,161,242,.45);
  box-shadow: 0 26px 60px rgba(29,161,242,.18);
}

.package-image{
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.package-image img{
  width: 100%;
  height: auto;
  object-fit: contain;
}

.package-content{
  padding: 20px;
}

.package-content h3{
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 900;
}

.package-content p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.package-badge{
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(29,161,242,.15);
  border: 1px solid rgba(29,161,242,.35);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}

.tint-addons{
  margin-top: 44px;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(2,6,23,.03);
  border: 1px solid var(--line);
}

.addons-title{
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 900;
}

.addons-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.addon-pill{
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: .9rem;
  color: rgba(15,23,42,.8);
}

.addons-note{
  margin-top: 14px;
  font-size: .9rem;
  color: rgba(15,23,42,.6);
}

@media (max-width: 900px){
  .package-grid{
    grid-template-columns: 1fr;
  }
}

/* Right-side visual image */
.tint-visual{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.tint-visual img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.install-visual{
  margin-top: 36px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.install-visual img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 6; 
}
@media (max-width: 768px){
  .install-visual img{
    aspect-ratio: 16 / 9;
  }
}


/* =========================
   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; }


.hero-logo{
  width: 300px;      
  max-width: 40vw;      
  margin: 0 auto 18px;  
  display: block;
}
.hero-logo{
  filter: drop-shadow(0 10px 24px rgba(2,6,23,.15));
}

/* =========================
   TINT WHY — mobile layout like Ceramic
   (stack copy + media, keep 2x2 tiles)
========================= */
@media (max-width: 1000px){
  .tint-why-inner{
    grid-template-columns: 1fr;   /* stack like ceramic */
    gap: 22px;
  }

  .why-grid{
    grid-template-columns: repeat(2, 1fr); /* ✅ 2 and 2 */
    gap: 14px;
  }
}

/* Only go 1-column tiles on very small screens */
@media (max-width: 520px){
  .why-grid{
    grid-template-columns: 1fr;
  }
}

