:root{
  --bg: #0b0d10;
  --panel: #111418;
  --muted: #8a94a6;
  --text: #e6ebf5;
  --brand: #6dd3fb;           /* tweak to your brand primary */
  --brand-2: #00a3ff;         /* accent gradient end */
  --success-bg: #13281a;
  --success-br: #2ecc71;
  --error: #ff6b6b;
  --ring: rgba(109,211,251,.4);
  --border: #1b212a;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 16px;
  --radius-sm: 10px;
}

*{box-sizing:border-box}
.header-left,
nav ul {
    margin-top: 10px;
    display: flex;
}
#success-gif,
.benefit,
.dropdown-menu li,
.latest-projects,
.service-description,
.services-section,
.tinting-header h2,
footer {
    text-align: center;
}
.email p,
.phone-number p,
.quote-form-container h2,
.service-description h2,
body {
    font-family: Roboto, sans-serif;
}
.dropdown-menu li a:hover,
form button[type="submit"] {
    background-color: #1DA1F2;
    color: #fff;
}
.service-item:hover,
.quote-form-container:hover,
.service-item:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}
* {
    margin: 0;
    box-sizing: border-box;
}
body {
    background-color: #f9f9f9;
    color: #333;
}
header {
  position: relative;          /* NEW */
  z-index: 2;                  /* NEW */
  display: flex;
  opacity: 1;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-left {
    align-items: center;
    gap: 20px;
}
.email,
.header-logo,
.phone-number {
    display: flex;
    align-items: center;
}
.email p,
.phone-number p {
    font-size: 1rem;
    color: #333;
    margin-left: 8px;
}
.email-icon,
.phone-icon {
    width: 1.5rem;
    height: auto;
}
.logo-icon {
    width: 3.5rem;
    height: auto;
}
.suntek {
    flex: 1;
    display: flex;
    justify-content: center;
}

.suntek-icon {
  max-height: 30px;;
}

@media (max-width: 768px) {

  .suntek-icon {
    max-width: 100%; /* prevents overflow on small screens */
    height: auto;
  }
  
  .email p,
  .phone-number p {
    font-size: 0.5rem;
    color: #333;
    margin-left: 8px;
}
}

.promo-banner,
.warranty-banner {
    background-color: #666;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.promo-banner p,
.warranty-banner p {
    margin: 0;
}
nav ul {
    list-style: none;
}
nav ul li {
    position: relative;
    margin-right: 20px;
}
nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    padding: 10px;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #1DA1F2;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    .header-left {
        justify-content: center;
        margin-bottom: 15px;
    }
    nav ul {
        flex-direction: row;
        gap: 10px;
    }
}
.dropdown-menu,
.dropdown-menu li {
    margin: 0;
    padding: 0;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
    pointer-events: auto;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.arrow-down {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s;
}
.benefit,
.project-item,
.quote-form-container,
.service-item {
    transition: transform 0.3s, box-shadow 0.3s;
}
.dropdown:hover .arrow-down {
    transform: rotate(180deg);
}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #0a0e13 0%, #0b0d10 100%);
  color: var(--text);
}

.bk-container {
  min-height: 100vh;             /* take full screen height */
  display: flex;                 /* center horizontally + vertically */
  align-items: center;
  justify-content: center;
  padding: 32px;                 /* breathing room on small screens */
}

.bk-card{
  width: 100%;
  max-width: 1120px; 
  background: var(--panel);
  border-radius: 16px;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow:hidden;
  padding: 28px;                 /* inner padding */
  margin: 0 auto;
}

.bk-header1{
  padding: 24px clamp(20px, 3vw, 32px);
  border-bottom:1px solid var(--border);
  background:
    radial-gradient(1200px 400px at -10% -60%, rgba(109,211,251,.12), transparent 60%),
    radial-gradient(900px 400px at 120% -60%, rgba(0,163,255,.10), transparent 60%);
}
.bk-header1 h1{
  margin:0 0 6px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: .3px;
}
.bk-sub{ margin:0; color:var(--muted); }

.bk-tabs{
  display:flex; gap:6px;
  padding:10px clamp(12px, 2vw, 16px);
  border-bottom:1px solid var(--border);
  overflow:auto;
}
.bk-tab{
  appearance:none; border:1px solid var(--border);
  background:#0f1318; color:var(--muted);
  padding:10px 14px; border-radius: 999px;
  font-weight:600; cursor:pointer; transition: .2s ease;
}
.bk-tab.is-active{ color:#081018; background: linear-gradient(135deg, var(--brand), var(--brand-2)); border-color: transparent; }
.bk-tab:disabled{ opacity:.5; cursor:not-allowed }

.bk-content{ padding: 22px clamp(18px, 3vw, 32px) 28px; }
.bk-step{ display:none; }
.bk-step.is-active{ display:block; }

.bk-grid{
  display:grid; gap:16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}
.bk-grid .bk-field{ grid-column: span 12; }
@media (min-width: 720px){
  .bk-grid .bk-field { grid-column: span 4; }
}

.bk-field{ display:flex; flex-direction:column; gap:8px; }
.bk-label{ font-size:.95rem; color:#c8d1df; }
.bk-field input,
.bk-field select{
  width:100%;
  height: 42px;
  border-radius: 10px;
  color: inherit;
  background:#0e1216; color:var(--text);
  border:1px solid var(--border); border-radius:10px;
  padding:12px 12px; outline:none;
  transition: border-color .15s, box-shadow .15s;
}
.bk-field input:focus,
.bk-field select:focus{ border-color: var(--brand); box-shadow: 0 0 0 4px var(--ring); }

.bk-section{ margin:16px 0 6px; }
.bk-h2{ margin:0 0 10px; font-size:1.05rem; color:#d7e2f2; }

.bk-options{ display:grid; gap:8px; grid-template-columns: repeat(12, 1fr); }
.bk-option{
  grid-column: span 12;
  display:flex; align-items:center; gap:10px;
  background:#0e1216; border:1px solid var(--border); border-radius:10px;
  padding:12px;
}
@media (max-width: 1024px) {
  .bk-card { max-width: 900px; }
  .bk-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .bk-card { padding: 20px; }
  .bk-grid { grid-template-columns: 1fr; }
}

.bk-btn.is-disabled,
.bk-btn[disabled]{
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}


.bk-note{ color: var(--muted); margin: 10px 0 0; }
.bk-price{ margin-top:10px; color:#8ff2b0; font-weight:600; }

.bk-slotwrap{ margin-top: 10px; }
.bk-slotwrap.is-hidden{ display:none; }
.bk-slots{ display:flex; flex-wrap:wrap; gap:8px; }
.bk-slot{
  appearance:none; border:1px solid var(--border);
  background:#0e1216; color:var(--text);
  padding:10px 12px; border-radius:10px; cursor:pointer;
}
.bk-slot.is-active,
.bk-slot:hover{ border-color: var(--brand); box-shadow: 0 0 0 4px var(--ring); }

.bk-error{ color: var(--error); margin: 6px 0 0; }

.bk-check{ display:flex; gap:10px; align-items:flex-start; }
.bk-check input{ margin-top:4px; transform: translateY(1px); }

.bk-micro{ color: var(--muted); font-size:.85rem; margin-top:6px; }

.bk-actions{
  display:flex; gap:10px; justify-content:flex-end;
  margin-top: 18px;
}
.bk-btn{
  appearance:none; border:1px solid var(--border);
  background:#0f1318; color:var(--text);
  padding:11px 14px; border-radius:12px; font-weight:600; cursor:pointer;
}
.bk-btn--primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#061019; border-color: transparent;
}

.bk-summary{ display:grid; gap:14px; }
.bk-summary-card{
  border:1px solid var(--border); border-radius: var(--radius-sm);
  background:#0e1216; padding:14px;
}
.bk-summary-card h3{ margin:0 0 10px; }
.bk-summary-card dl{ margin:0; display:grid; grid-template-columns: 180px 1fr; row-gap:8px; }
.bk-summary-card dt{ color:#9fb0c8; }
.bk-summary-card dd{ margin:0; }

.bk-flash{ display:block; margin:14px 0; padding:12px; border-radius:12px; border:1px solid transparent; }
.bk-flash.is-hidden{ display:none; }
.bk-flash--success{ background: var(--success-bg); border-color: var(--success-br); color:#aef0c6; }
.bk-flash--error{ background:#2a1414; border-color:#ff8a8a; color:#ffc5c5; }

.bk-stripe{
  margin-top:8px; border:1px dashed var(--border);
  border-radius: var(--radius-sm); padding:14px;
  background:#0f1419;
}
.bk-payment{ margin: 10px 0 12px; }

/* reduce motion for users */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; animation: none !important; }
}

/* --- Film option cards --- */
.film-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin-top: 12px;
}

.film-card {
  display: block;               /* label behaves like a card */
  cursor: pointer;
  user-select: none;
}

.film-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.film-body {
  height: 100%;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 12px;
  padding: 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.film-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.film-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.film-tier {
  font-size: .80rem;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  opacity: .9;
}

.film-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
  font-size: .95rem;
}

.film-card:hover .film-body {
  border-color: rgba(59,130,246,.55);
  box-shadow: 0 0 0 3px rgba(59,130,246,.22);
}

.film-card input:checked + .film-body {
  border-color: rgba(59,130,246,.85);
  box-shadow: 0 0 0 3px rgba(59,130,246,.35), 0 10px 20px rgba(0,0,0,.18);
  background: rgba(59,130,246,.06);
}

.film-note {
  margin-top: 10px;
  font-size: .9rem;
  opacity: .8;
}

/* Responsive */
@media (max-width: 1100px) {
  .film-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .film-grid { grid-template-columns: 1fr; }
}
.pkg-group { margin-bottom: 12px; }
.pkg-title { font-weight: 700; margin-bottom: 6px; opacity: .9; }

.bk-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.opt-price {
  opacity: .9;
  font-variant-numeric: tabular-nums;
}


/* --- Mini calendar --- */
.bk-visually-hidden{position:absolute!important;left:-9999px;width:1px;height:1px;overflow:hidden}

.bk-cal{background:#101419;border:1px solid #1e2630;border-radius:14px;padding:14px}
.bk-cal__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.bk-cal__label{font-weight:600;letter-spacing:.3px}
.bk-cal__nav{appearance:none;border:1px solid #273142;background:#141a22;border-radius:10px;padding:6px 10px;cursor:pointer}
.bk-cal__nav:hover{background:#18222c}

.bk-cal__weekdays{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;margin:6px 0 8px}
.bk-cal__weekdays>span{font-size:12px;color:#9fb0c6;text-align:center;letter-spacing:.3px}

.bk-cal__grid{display:grid;grid-template-columns:repeat(7,1fr);gap:6px}
.bk-cal__day{position:relative;display:flex;align-items:center;justify-content:center;
  height:40px;border:1px solid #1f2833;background:#121821;border-radius:10px;cursor:pointer}
.bk-cal__day:hover{background:#18212c}
.bk-cal__day.is-muted{opacity:.45}
.bk-cal__day.is-today{outline:2px solid rgba(65,160,255,.35)}
.bk-cal__day.is-selected{background:#0a62ff;border-color:#0a62ff;color:#fff}
.bk-cal__day.is-disabled{opacity:.3;cursor:not-allowed}
.bk-cal__day>span{font-size:14px}

/* Slots */
.bk-slots{display:flex;flex-wrap:wrap;gap:8px}
.bk-slot{border:1px solid #243042;background:#121a24;border-radius:999px;padding:8px 14px;cursor:pointer}
.bk-slot:hover{background:#172130}
.bk-slot.is-active{background:#0a62ff;border-color:#0a62ff;color:#fff}

/* Little note */
.bk-note.center{text-align:center}

/* --- Calendar visibility tweaks --- */
.bk-cal{background:#0f141b;border:1px solid #273142;border-radius:16px;padding:16px}
.bk-cal__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.bk-cal__label{font-weight:700;letter-spacing:.2px}
.bk-cal__nav{appearance:none;border:1px solid #2a3646;background:#131a23;border-radius:12px;padding:8px 12px;cursor:pointer}
.bk-cal__nav:hover{background:#182232}

.bk-cal__weekdays{display:grid;grid-template-columns:repeat(7,1fr);gap:8px;margin:6px 0 10px}
.bk-cal__weekdays>span{font-size:12px;color:#a7b6c9;text-align:center}

.bk-cal__grid{display:grid;grid-template-columns:repeat(7,1fr);gap:8px}
.bk-cal__day{
  position:relative;display:flex;align-items:center;justify-content:center;
  height:46px;border:1px solid #233044;background:#0e151e;border-radius:12px;
  cursor:pointer;color:#d7e2f0;transition:background .15s,border-color .15s,box-shadow .15s
}
.bk-cal__day:hover{background:#162235;border-color:#2a7fff33;box-shadow:inset 0 0 0 1px #2a7fff1f}
.bk-cal__day>span{font-size:14px;font-weight:600}
.bk-cal__day.is-muted{opacity:.45}
.bk-cal__day.is-today{outline:2px solid rgba(65,160,255,.30);outline-offset:2px}
.bk-cal__day.is-selected{background:#0a62ff;border-color:#0a62ff;color:#fff;box-shadow:none}
.bk-cal__day.is-disabled{opacity:.25;cursor:not-allowed}

/* Availability states */
.bk-cal__day.is-available{border-color:#2a7fff66;box-shadow:inset 0 0 0 1px #2a7fff33}
.bk-cal__day.is-unavailable{opacity:.35}

.bk-cal__day.is-available::after{
  content:"";position:absolute;bottom:6px;width:6px;height:6px;border-radius:50%;background:#49a2ff
}

/* Slots look a touch crisper too */
.bk-slots{display:flex;flex-wrap:wrap;gap:10px}
.bk-slot{border:1px solid #2a3646;background:#121a24;border-radius:999px;padding:10px 16px;cursor:pointer}
.bk-slot:hover{background:#172130}
.bk-slot.is-active{background:#0a62ff;border-color:#0a62ff;color:#fff}

/* ========== 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;
}

.map-lite { position: relative; display: inline-block; }
.map-lite img { display: block; border-radius: 8px; }
.map-load-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: rgba(0,0,0,.7); color: #fff; border: 0; padding: 10px 14px;
  border-radius: 8px; cursor: pointer; font-size: .95rem;
}
.map-load-btn:focus { outline: 2px solid #fff; outline-offset: 2px; }