/* Base page lock */
html,body{
  height:100%;
  overflow:hidden
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box
}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  background:#0e1210;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff
}

/* Full viewport container */
.slider-container{
  width:100vw;
  height:100vh;
  position:relative;
  overflow:hidden
}

#introVideoOverlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  opacity: 1;
  transition: opacity 1.0s ease;
}

#introVideo {
  width: 100%;
  height: 100%;
  object-fit:cover;

}


/* Bottom fixed bar */
.now-showing{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  height:32px;
  background:#1f1f1f;
  color:#9fff6b;
  font-size:13px;
  font-weight:600;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:8px;
  padding:0 14px;
  z-index:30;
  border-top:1px solid rgba(255,255,255,.08);
}
.now-left{
  display:flex;
  align-items:center;
  gap:8px;
  justify-content:flex-start
}
.now-center{
  text-align:center;
  color:#e6e6e6;
  letter-spacing:.02em
}
.about-link{
  justify-self:end;
  color:#e6e6e6;
  text-decoration:none;
  font-weight:600;
  opacity:.9
}
.about-link:hover{
  opacity:1;
  color:#9fff6b
}
.now-left .dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#9fff6b;
  box-shadow:0 0 0 2px rgba(159,255,107,.12)
}
.now-left .now-text{
  opacity:.9
}
.now-right{
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Slides */
.accordion-slider{
  display:flex;
  height:calc(100% - 80px);
  align-items:stretch
}
.slide{
  flex:1;
  position:relative;
  cursor:pointer;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transition:all .8s cubic-bezier(.4,0,.2,1);
  overflow:hidden;
  filter:grayscale(1);
  display:flex
}
.slide:hover{
  filter:grayscale(0)
}.slide.active{
  flex:2.5;
  filter:grayscale(0)
}
.slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.8) 80%)
}
.slide-content{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:30px;
  color:#fff;
  z-index:2;
  width:100%;
  min-height:0;
  height:100%
}

/* Prevent inactive inner elements from blocking activation */
.slide:not(.active) .slide-content{
  pointer-events:none
}

.slide:not(.active) .add-button{
  pointer-events:auto
}

/* Headings */
/* Default positioning */
.slide-number {
  position: absolute;
  bottom: 70px;   /* sits above the + button */
  right: 30px;    /* align with the + button on the right */
  left: auto;     /* remove left alignment */
  font-size: 64px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1;
  transition: all .8s cubic-bezier(.4,0,.2,1);
}

/* Expanded positioning: across from Solutions + presets */
.slide.active .slide-number {
  top: 140px;        /* near top of content */
  right: 30px;      /* aligned with preset buttons */
  bottom: auto;     /* remove bottom anchoring */
  left: auto;       /* remove left anchoring */
  font-size: 48px;  /* slightly smaller for balance */
}

.car-brand{
  font-size:16px;
  font-weight:600;
  color:rgba(255,255,255,.8);
  margin-bottom:5px;
  transform:rotate(-90deg);
  transform-origin:left bottom;
  position:absolute;
  bottom:100px;
  left:30px;
  white-space:nowrap;
  transition:all .8s cubic-bezier(.4,0,.2,1)
}
.slide.active .car-brand{
  transform:rotate(0);
  position:static;
  transform-origin:unset
 }
.car-name{
  font-size:28px;
  font-weight:700;
  margin-bottom:4px;
  opacity:0;
  transform:translateY(30px);
  transition:all .6s cubic-bezier(.4,0,.2,1)
}
.slide.active .car-name{
  opacity:1;
  transform:translateY(0);
  transition-delay:.2s
}
.car-subtitle{
  font-size:16px;
  color:rgba(255,255,255,.85);
  margin-bottom:4px;
  opacity:0;
  transform:translateY(30px);
  transition:all .6s cubic-bezier(.4,0,.2,1)
}
.slide.active .car-subtitle{
  opacity:1;
  transform:translateY(0);
  transition-delay:.3s
}

/* Presets (clickable even when inactive) */
.slide-presets{
  margin:6px 0 4px 0;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  opacity:0;
  transform:translateY(20px);
  transition:all .6s cubic-bezier(.4,0,.2,1)
}
.slide.active .slide-presets{
  opacity:1;
  transform:translateY(0);transition-delay:.32s
}
.slide-presets .preset-btn{
  border:1px solid rgba(255,255,255,.3);
  background:rgba(0,0,0,.35);
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  cursor:pointer;
  font-size:12px
}
.slide-presets .preset-btn:hover{
  background:rgba(255,255,255,.12)
}
.slide-presets .preset-btn.active{
  background:rgba(159,255,107,.2);
  border-color:#9fff6b
}

/* Service list with internal scrollbar */
.service-list{
  opacity:0;
  transform:translateY(30px);
  transition:all .6s cubic-bezier(.4,0,.2,1);
  flex:1;
  min-height:0;
  overflow:auto;
  padding-right:4px
}
.slide.active .service-list{
  opacity:1;
  transform:translateY(0);
  transition-delay:.35s
}

.service-item{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:12px;
  padding:10px 12px;
  margin-top:8px
}
.service-header{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:space-between;
  cursor:pointer
}
.service-left{
  display:flex;
  align-items:center;
  gap:10px
}
.service-title{
  font-weight:700
}
.service-sub{
  font-size:12px;
  color:rgba(255,255,255,.85)
}
.disclosure{
  width:18px;
  height:18px;
  border-radius:4px;
  border:1px solid rgba(255,255,255,.3);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  color:#9fff6b;
  transform:rotate(0);
  transition:transform .2s
}
.service-item.open .disclosure{
  transform:rotate(90deg)
}
.service-children{
  display:block;
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease
}
.service-item.open .service-children{
  max-height:800px
}

.option-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 6px;
  border-bottom:1px dashed rgba(255,255,255,.15)
}
.option-row:last-child{
  border-bottom:none
}
.option-left{
  display:flex;
  align-items:center;
  gap:8px
}
.option-right{
  display:flex;
  align-items:center;
  gap:10px
}
.price{
  font-weight:700
}
.price small{
  opacity:.8;
  font-weight:600
}
label.check{
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer
}

/* Qty input: smaller & right-aligned */
input[data-role="qty"]{
  width:72px;
  min-width:64px;
  text-align:right;
  padding:6px 8px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.25);color:#fff;
}

/* per-column total */
.column-total{
  position:sticky;
  bottom:0;
  margin-top:10px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(4px);
  padding:8px 10px;
  border-radius:10px;
  width:max-content;
  display:flex;
  align-items:center;
  gap:10px
}
.column-total-amount{
  color:#9fff6b
}

/* Logo behavior */

/* Floating Logo */
.logo-floater {
  position: absolute;
  z-index: 30;
  pointer-events: none;
  transition: all 0.35s ease;
}

/* Default centered size */
.logo-floater img {
  display: block;
  height: 64px;
  z-index: 30;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.45));
}

/* Enlarged when centered */
.logo-floater.centered img {
  height: 108px;
  z-index: 30;
}

/* Smaller when docked */
.logo-floater.docked img {
  height: 48px;
  z-index: 30;
}


/* Expand/collapse button */
.add-button{
  position:absolute;
  bottom:30px;
  right:30px;
  width:32px;
  height:32px;
  background:transparent;
  border:2px solid #9fff6b;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all .4s ease;
  z-index:3
}
.add-button::before,.add-button::after{
  content:"";
  position:absolute;
  background:#9fff6b;
  transition:all .4s ease
}
.add-button::before{
  width:12px;
  height:2px
}
.add-button::after{
  width:2px;
  height:12px;
  transform:rotate(0deg)
}
.slide.active .add-button::after{
  opacity:0;
  transform:scale(0)
}

/* Quote overlay (raise z-index so it's always clickable) */
.quote-slide{
  position:fixed;
  left:0;
  right:0;
  bottom:32px;
  color:#fff;
  transition:all .35s ease;
  overflow:hidden;
  padding:0 12px;
  z-index:150
}
.quote-slide.collapsed .quote-card{
  width:100% !important;
  height:48px !important;
  max-height: 48px !important;
  min-height: 48px !important;
  background: rgba(0,0,0,.75) !important;
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 10px 18px;

  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease;

}

.quote-slide.collapsed .quote-content,
.quote-slide.collapsed .quote-form,
.quote-slide.collapsed .quote-summary{
  display:none !important;
}

.quote-slide.collapsed .quote-header{
  display: flex !important;
}

.quote-slide.collapsed {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.quote-slide:not(.collapsed){
  top:0;
  bottom:32px;
  max-height:none
}
.quote-card{
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(6px);
  border-radius:12px;
  overflow:hidden
}
.quote-header{
  position:sticky;
  top:0;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:8px 12px;
  background:linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.35));
  border-bottom:1px solid rgba(255,255,255,.1)
}
.quote-toggle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  background:transparent;
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
  border-radius:8px;
  cursor:pointer
}
.quote-toggle:hover{
  background:rgba(255,255,255,.08)
}
.quote-toggle[aria-expanded="true"]{
  border-color:#9fff6b;
  color:#9fff6b
}
.quote-content{
  padding:12px;
  max-height:calc(100vh - 32px - 54px);
  overflow:auto
}
.quote-summary,.quote-form{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  padding:12px
}
.quote-summary .summary-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px
}
.quote-summary .summary-left h3{
  margin-bottom:6px
}
.quote-summary .summary-left .quote-total-line{
  margin:4px 0
}
.quote-summary .summary-right{
  display:flex;
  align-items:center
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-bottom:10px
}
.form-grid .message-span{
  grid-column:1/-1
}
.form-grid input,.form-grid textarea{
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(0,0,0,.25);
  color:#9fff6b
}


.form-actions{
  display:flex;
  gap:10px;
  justify-content:flex-end
}
.btn-primary{
  background:#9fff6b;
  border:none;
  color:#000;
  font-weight:800;
  padding:10px 14px;
  border-radius:10px;
  cursor:pointer
}

.btn-ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  cursor:pointer
}
.map-wrap{
  margin-top:6px
}
.map{
  height:240px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.15);

}
.map-help{
  font-size:12px;
  opacity:.85;
  margin-top:6px
}

.visually-hidden{
  position:absolute;
  left:-9999px;
  height:1px;
  width:1px;
  overflow:hidden
}

/* Scrollbar styling inside slides */
.slide .service-list::-webkit-scrollbar{
  width:8px
}
.slide .service-list::-webkit-scrollbar-track{
  background:rgba(255,255,255,.06);
  border-radius:8px
}
.slide .service-list::-webkit-scrollbar-thumb{
  background:rgba(159,255,107,.35);
  border-radius:8px
}
.slide .service-list{
  -ms-overflow-style:none;
  scrollbar-width:thin;
  scrollbar-color:rgba(159,255,107,.5) rgba(255,255,255,.06)
}

/* About modal */
.modal-backdrop[hidden]{
  display:none
}
.modal-backdrop{
  position:fixed;
  inset:0;
  z-index:100;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(2px);
  display:flex;
  align-items:center;
  justify-content:center
}
.modal-card{
  width:min(720px,90vw);
  max-height:80vh;
  overflow:auto;
  background:rgba(0,0,0,.6);
  border:1px solid rgba(255,255,255,.15);
  border-radius:12px;
  padding:12px
}
.modal-card::-webkit-scrollbar{
  width:10px
}
.modal-card::-webkit-scrollbar-thumb{
  background:rgba(159,255,107,.35);
  border-radius:10px
}
.modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px
}
.modal-header h3{
  font-size:16px;
  letter-spacing:.04em
}
.modal-close{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.3);
  border-radius:8px;
  padding:4px 8px;
  cursor:pointer
}
.modal-close:hover{
  background:rgba(255,255,255,.08)
}
.modal-body p{
  margin:8px 0
}
.modal-body ul{
  margin-left:18px
}






#map{
  width:100%;
  height:300px;
  min-height: 300px;
  display:block;
}


.collapsed-total {
  position: absolute;
  bottom: 70px;
  right: 30px;
  color: #9fff6b;
  font-weight: 700;
  font-size: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.slide:not(.active) .collapsed-total {
  opacity: 1;
}

.slide.active .collapsed-total {
  opacity: 0;
}

.slide:not(.active) .slide-reset{
  display: none !important;
}


/* CONTACT MODAL CARD */
.contact-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 32px 36px;
  border-radius: 16px;
  width: 360px;
  max-width: 90%;
  margin: 0 auto;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  text-align: center;
  color: #222;
  opacity: .8;
  animation: fadeInScale 0.25s ease;
}

.contact-title {
  margin: 0 0 14px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #45882e
}

.contact-logo {
  width: 200px;
  max-width: auto;
  margin: 10px auto 20px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(255,255,255,0.3));
}

.contact-info {
  margin-bottom: 12px;
}

.contact-pill {
  background: rgba(255,255,255,0);
  padding: 10px 14px;
  font-size: 1rem;
  font-weight: 500;
  word-break: break-all;
  display: inline-block;
}

.contact-sub {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.85;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#contactModal .modal-card {
  background: none !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

#contactModal .contact-card {
  position: relative;
}

#contactModal .contact-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0,0,0,0.1);
  color: #333;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-size: 16px;
  line-height: 26px;
  cursor: pointer;
  transition: 0.2s ease;
}

#contactModal .contact-close:hover {
  background: rgba(0,0,0,0.2);
}


/* Target the calendar icon in WebKit/Blink browsers (Chrome, Edge, Safari) */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(62%) sepia(92%) saturate(356%) hue-rotate(56deg) brightness(95%) contrast(92%);
  /* optional: force size and cursor */
  cursor: pointer;
}

/* For Firefox, the icon inherits the text color */
input[type="date"] {
  color: #9fff6b;
}

.contact-phone {
  display: block;       /* forces it onto its own line */
  text-align: center;   /* centers the text */
  font-weight: bold;     /* makes it bold */
  font-size: large;     /* increases font size */
  margin-top: 8px;      /* optional spacing above */
  color: #242424;       /* optional: match your green accent */
}




