:root{
  --bg1:#0b1024;
  --bg2:#0e1a3a;
  --card: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.12);
  --text:#1aea8c;
  --muted:#b5c0e0;
  --blue:#5ee7ff;
  --pink:#3bffdb;
  --green:#4dffb5;
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);

  /* Milkyway-ish lighter background */
  background:
    radial-gradient(1200px 700px at 15% 20%, rgba(94,231,255,0.20), transparent 60%),
    radial-gradient(900px 600px at 80% 15%, rgba(255,99,216,0.16), transparent 62%),
    radial-gradient(1000px 700px at 55% 90%, rgba(77,255,181,0.14), transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg1));
  position:relative;
  overflow-x:hidden;
}

/* star layer */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:0.55;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.9), transparent 55%),
    radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.85), transparent 55%),
    radial-gradient(1px 1px at 55% 40%, rgba(255,255,255,0.9), transparent 55%),
    radial-gradient(1px 1px at 75% 70%, rgba(255,255,255,0.8), transparent 55%),
    radial-gradient(1px 1px at 90% 25%, rgba(255,255,255,0.85), transparent 55%),
    radial-gradient(1px 1px at 20% 55%, rgba(255,255,255,0.8), transparent 55%),
    radial-gradient(1px 1px at 65% 15%, rgba(255,255,255,0.85), transparent 55%),
    radial-gradient(1px 1px at 45% 92%, rgba(255,255,255,0.75), transparent 55%);
  filter: blur(0.2px);
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

.section{
  padding: 72px 0;
}

.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin:0 0 6px;
  font-size: 2rem;
}
.section-head p{
  margin:0;
  color: var(--muted);
}

.muted{ color: var(--muted); }
.tiny{ font-size: 0.85rem; }

/* NAV */
.nav-shell{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: white;
  border-bottom: 1px solid black
  
}

.nav{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}
.brand-dot{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 0 18px rgba(94,231,255,0.45);
}

.brand-name{ 
    letter-spacing: 1px; 
    margin-left: 40px;
    font-size: 1.5em;
    color: #06101c;

    padding: 8px 18px;
    border: 1px solid rgba(13, 1, 1, 0.25);
    border-radius: 999px;

}

.nav-links{
  list-style:none;
  display:flex;
  gap:18px;
  padding:0;
  margin:0;
}

.nav-links a{
  text-decoration: none;
  color: rgba(0,0,0,0.65);
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 
    color 0.2s ease,
    background 0.2s ease,
    font-weight 0.2s ease;
}

/* ACTIVE LINK */
.nav-links a.active{
  color: #06101c;              /* strong dark color */
  font-weight: 800;            /* bold */
  background: rgba(0,0,0,0.08);
}

/* HOVER */
.nav-links a:hover{
  color: #06101c;
}

/* BUTTONS */


.btn{
  border:none;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary{
  color:#fffdfd;
  background: linear-gradient(135deg, #1a1a1a, #024963);
  box-shadow: 0 12px 40px rgba(255, 252, 252, 0.22);

  border: 2px solid rgba(0, 0, 0, 0.6); /* ← the line */
}
.btn-primary:hover{ transform: translateY(-1px); }
.btn:hover{
  box-shadow:
    0 16px 50px rgba(0,0,0,0.35);
}
.btn-ghost{
  color: var(--text);
  background: rgba(250, 250, 250, 0.08);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover{ transform: translateY(-1px); }
.btn-small{ padding: 8px 12px; font-size: 0.9rem; }
.full{ width:100%; }

.get-quote{
    margin-right: 10px ;
}

/* HERO */
.hero{
  padding-top: 84px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}
.eyebrow{
  color: var(--muted);
  margin:0 0 12px;
}
.title{
  margin:0 0 12px;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.05;
}
.grad{
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--green));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.subtitle{
  margin:0;
  color: rgba(238,243,255,0.84);
  max-width: 58ch;
}
.hero-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-row{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.mini-card{
  display:flex;
  gap:10px;
  align-items:center;
  padding: 12px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
}
.mini-ico{ font-size: 1.2rem; }
.mini-title{ font-weight:800; }
.mini-sub{ color: var(--muted); font-size: 0.9rem; }

.hero-panel{
  border-radius: 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  padding: 14px;
}
.hero-panel-top{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}
.pill{
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(238,243,255,0.86);
}
.hero-panel-card{
  border-radius: 20px;
  background: rgba(6,16,28,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 14px;
}
.hero-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.hero-panel-title{ font-weight:900; font-size: 1.1rem; }
.hero-panel-sub{ color: var(--muted); font-size: 0.9rem; }
.hero-panel-stats{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.stat{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.stat-num{ font-weight:900; font-size: 1.05rem; }
.stat-label{ color: var(--muted); font-size: 0.85rem; }
.hero-panel-note{ margin-top: 10px; color: var(--muted); font-size: 0.85rem; }

/* SLIDER */
.slider{
  margin-top: 16px;
  border-radius: 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.slide{
  display:grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}
.slide-media{
  background: rgba(0,0,0,0.10);
}
.slide-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.slide-body{
  padding: 18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 10px;
}
.badge{
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  background: rgba(94,231,255,0.14);
  border: 1px solid rgba(94,231,255,0.30);
}
.slide-meta{
  display:flex;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}
.slide-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.dots{
  display:flex;
  gap: 8px;
  justify-content:center;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.dot{
  width: 26px;
  height: 8px;
  border-radius: 999px;
  border: none;
  cursor:pointer;
  background: rgba(255,255,255,0.25);
  transition: width .2s ease, background .2s ease;
}
.dot.active{
  width: 34px;
  background: rgba(255,255,255,0.85);
}

/* FILTERS + GRID */
.filters{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin: 14px 0 18px;
}
.chip{
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text);
  font-weight: 750;
  cursor:pointer;
}
.chip.active{
  color:#06101c;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.card{
  overflow:hidden;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  display:flex;
  flex-direction:column;
}
.thumb{
  height: 150px;
  background: rgba(0,0,0,0.10);
}
.card-body{
  padding: 14px;
}
.card-body h3{
  margin:0 0 6px;
}
.card-body p{
  margin:0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}
.card-meta{
  display:flex;
  gap: 8px;
  color: rgba(238,243,255,0.86);
  font-weight: 700;
  margin-bottom: 12px;
}
.card-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}
.form{
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  padding: 14px;
}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field{ margin-bottom: 12px; }
label{ display:block; font-weight: 800; margin-bottom: 6px; }
input, textarea{
  width:100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10,18,40,0.55);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(94,231,255,0.55);
  box-shadow: 0 0 0 2px rgba(94,231,255,0.18);
}
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.info{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.info-ico{ font-size: 1.3rem; }
.info-title{ font-weight: 900; }
.info-text{ color: var(--muted); }
.info-link{ color: rgba(238,243,255,0.90); text-decoration:none; }
.info-link:hover{ text-decoration: underline; }

.note-card{
  padding: 12px;
  border-radius: 18px;
  background: rgba(94,231,255,0.10);
  border: 1px solid rgba(94,231,255,0.25);
}
.note-title{ font-weight: 900; margin-bottom: 6px; }
.note-list{ margin: 0; padding-left: 18px; color: rgba(238,243,255,0.86); }
.note-list li{ margin: 6px 0; }

/* MODAL */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:200;
}
.modal.show{ display:block; }
.backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
}
.modal-card{
  position:relative;
  max-width: 920px;
  margin: 7vh auto;
  border-radius: 26px;
  overflow:hidden;
  background: rgba(8,12,26,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  display:grid;
  grid-template-columns: 1.1fr 1fr;
}
.modal-media img{
  width:100%;
  height:100%;
  min-height: 320px;
  object-fit: cover;
  display:block;
}
.modal-body{
  padding: 16px;
}
.kv{
  margin-top: 10px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.kv-item{
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.k{ color: var(--muted); font-weight: 800; }
.v{ font-weight: 900; }
.modal-actions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.x{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  cursor:pointer;
}

/* FOOTER */
.footer{
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.10);
}
.footer-row{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .hero-grid, .contact-grid{ grid-template-columns: 1fr; }
  .feature-row{ grid-template-columns: 1fr; }
  .slide{ grid-template-columns: 1fr; }
  .modal-card{ grid-template-columns: 1fr; margin: 6vh 14px; }
  .row{ grid-template-columns: 1fr; }
}

.image-container{
  max-width: 900px;         /* controls how wide it can get */
  margin: 32px auto;        /* centers the whole block */
  display: flex;
  justify-content: center;  /* centers the image inside */
  padding: 12px;
}

.image-container img{
  width: 100%;              /* fills container width */
  max-width: 700px;         /* keep it from becoming huge */
  height: auto;             /* keeps correct proportions */
  display: block;

  border-radius: 22px;      /* nice rounded corners */
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);

  object-fit: cover;        /* safe even if you later set height */
}

/* SERVICES SECTION */

.services {
  padding: 72px 0;
  text-align: center;
}

.services-title {
  font-size: 2rem;
  margin-bottom: 32px;
}

/* grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

/* card */
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
}

.service-card h3 {
  margin: 6px 0;
  font-size: 1.2rem;
}

/* responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* COMPANY GIF SECTION */

.company-banner {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  margin-top: 72px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

/* GIF itself */
.company-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Dark overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text content */
.banner-content {
  max-width: 800px;
  padding: 24px;
  text-align: center;
}

.banner-content h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.banner-content p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 900px) {
  .company-banner img {
    height: 320px;
  }

  .banner-content h2 {
    font-size: 1.8rem;
  }
}


.footer-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left,
.footer-center,
.footer-right{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* RIGHT SIDE = A&G + icons */
.footer-right{
  gap: 24px;
}

/* Social icons */
.footer-socials{
  display: flex;
  gap: 10px;
}

.social-btn{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.social-btn img{
  width: 20px;
  height: 20px;
}

.social-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

#modalImgs{
  display: grid;
  gap: 10px;
}

.modal-car-img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}


.modal-media{
  position: relative;
}

.img-viewport{
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  border-radius: 18px;
}

#modalImg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
}

.img-nav.prev{ left: 10px; }
.img-nav.next{ right: 10px; }

.img-nav:hover{
  background: rgba(0,0,0,0.55);
}

.modal-media{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.img-viewport{
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.img-viewport img{
  width: 100%;
  height: 360px;        /* important */
  display: block;
  object-fit: cover;
}


/* ===== NAV RESPONSIVE FIX ===== */
.nav-toggle {
  display: none;
  border: 1px solid rgba(0,0,0,0.25);
  background: white;
  color: #06101c;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 18px;
  cursor: pointer;
}

/* keep desktop normal */
.nav-quote-li { display: none; }

/* MOBILE */
@media (max-width: 900px) {
  .nav {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* hide desktop quote button */
  .nav-quote-desktop {
    display: none;
  }

  /* turn links into dropdown */
  .nav-links {
    position: absolute;
    top: 72px;              /* same as navbar height */
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    margin: 0;
    list-style: none;

    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(0,0,0,0.12);

    display: none;          /* hidden by default */
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    justify-content: center;
  }

  /* show quote button inside dropdown on mobile */
  .nav-quote-li {
    display: block;
    margin-top: 6px;
  }
}