:root{
  --bg:#0b1220;
  --panel:#0f1724;
  --muted:#9aa4b2;
  --accent:#7c5cff;
  --white:#f7f9fb;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--white);
  background:linear-gradient(180deg,#071028 0%, #081426 100%);
  -webkit-font-smoothing:antialiased;
}

.container{
  max-width:1000px;
  margin:0 auto;
  padding:28px;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(6px);
  background:linear-gradient(180deg, rgba(11,17,32,0.9), rgba(11,17,32,0.6));
  border-bottom:1px solid rgba(255,255,255,0.04);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo{
  font-weight:700;
  color:var(--white);
  text-decoration:none;
  letter-spacing:0.6px;
  font-size:20px;
}
.nav{
  display:flex;
  gap:12px;
  align-items:center;
}
.nav-link{
  color:var(--muted);
  text-decoration:none;
  font-size:15px;
  padding:8px;
  border-radius:6px;
}
.nav-link:hover{
  background:rgba(255,255,255,0.03);
  color:var(--white);
}
.nav-btn{
  text-decoration:none;
  padding:8px 14px;
  border-radius:8px;
  background:var(--panel);
  color:var(--white);
  border:1px solid rgba(255,255,255,0.06);
  font-weight:600;
  font-size:14px;
}
.nav-btn:hover{
  background:var(--accent);
  border-color:var(--accent);
}

/* mobile toggle */
.nav-toggle{
  display:none;
  background:transparent;
  border:0;
  color:var(--muted);
  font-size:20px;
}

/* SLIDESHOW */
.slideshow{
  padding:26px 0 8px;
}
.slideshow-inner{
  position:relative;
  height:320px;
  max-width:1000px;
  margin:0 auto;
  border-radius:14px;
  overflow:hidden;
  background:var(--panel);
}
.slideshow-inner img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  animation: slideshow 25s infinite;
}

/* 5 images → stagger animation */
.slideshow-inner img:nth-child(1){ animation-delay:0s; }
.slideshow-inner img:nth-child(2){ animation-delay:5s; }
.slideshow-inner img:nth-child(3){ animation-delay:10s; }
.slideshow-inner img:nth-child(4){ animation-delay:15s; }
.slideshow-inner img:nth-child(5){ animation-delay:20s; }

@keyframes slideshow{
  0%{ opacity:0; }
  5%{ opacity:1; }
  20%{ opacity:1; }
  25%{ opacity:0; }
  100%{ opacity:0; }
}

/* GENERIC SECTIONS */
.about,
.personnel,
.services,
.shop,
.contact{
  margin-top:22px;
  background:rgba(255,255,255,0.02);
  padding:18px;
  border-radius:10px;
}
.about h2,
.personnel h2,
.services h2,
.shop h2,
.contact h2{
  margin-top:0;
}
.muted{
  color:var(--muted);
  margin:6px 0 14px;
  font-size:14px;
}

/* PERSONNEL */
.people-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:16px;
  margin-top:10px;
}
.person{
  background:rgba(255,255,255,0.02);
  padding:14px;
  border-radius:10px;
  text-align:center;
}
.person img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:8px;
  display:block;
  margin-bottom:10px;
}
.person h3{
  margin:6px 0 4px;
}
.role{
  color:var(--muted);
  font-size:14px;
  margin:0;
}

/* CARDS (services) */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
  margin-top:10px;
}
.card{
  background:rgba(255,255,255,0.02);
  padding:14px;
  border-radius:10px;
}

/* BUTTONS */
.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  border:1px solid rgba(255,255,255,0.06);
}
.btn.primary{
  background:linear-gradient(90deg,var(--accent), #5b9bff 120%);
  color:white;
  border:0;
}

/* FOOTER */
.site-footer{
  padding:22px 0;
  margin-top:28px;
  border-top:1px solid rgba(255,255,255,0.04);
  color:var(--muted);
  text-align:center;
  font-size:13px;
}
/* CONTACT PAGE LAYOUT */
.contact-page{
  margin-top:26px;
}

.contact-layout{
  display:grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap:28px;
  align-items:flex-start;
}

.contact-left{
  background:rgba(0,0,0,0.55);
  padding:20px;
  border-radius:10px;
}

.contact-title{
  margin:0 0 6px;
}

.quote-title{
  margin:18px 0 8px;
}

/* FORM */
.quote-form{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:18px;
}

.form-row{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.form-row-inline{
  flex-direction:row;
  gap:10px;
}

.quote-form input,
.quote-form textarea{
  border-radius:4px;
  border:1px solid rgba(255,255,255,0.18);
  padding:10px 12px;
  background:#111;
  color:var(--white);
  font:inherit;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder{
  color:rgba(154,164,178,0.75);
}

.quote-form input:focus,
.quote-form textarea:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 1px rgba(124,92,255,0.4);
}

/* FILE DROP AREA */
.file-drop{
  border-radius:6px;
  border:1px dashed rgba(255,255,255,0.25);
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:14px;
  cursor:pointer;
  background:rgba(10,10,10,0.7);
}
.file-drop input{
  display:none;
}
.file-drop-text{
  color:var(--muted);
}
.file-button{
  padding:6px 14px;
  border-radius:4px;
  background:#000;
  border:1px solid rgba(255,255,255,0.6);
  font-weight:600;
}

/* CONTACT DETAILS + HOURS */
.contact-details{
  margin-top:18px;
}
.contact-details h3{
  margin-bottom:4px;
}
.contact-details p{
  margin:2px 0;
}
.contact-details a{
  color:var(--white);
  text-decoration:underline;
}

.contact-hours{
  margin-top:18px;
}
.hours-list{
  list-style:none;
  padding:0;
  margin:8px 0 0;
  font-size:14px;
}
.hours-list li{
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.hours-list li.current span{
  font-weight:600;
}

/* MAP PLACEHOLDER */
.contact-map{
  min-height:320px;
}
.map-placeholder{
  border-radius:10px;
  background:#e5e7eb;
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
  min-height:320px;
  font-size:14px;
}


/* MOBILE CONTACT PAGE */
@media (max-width:720px){
  .contact-layout{
    grid-template-columns:1fr;
  }
  .contact-map{
    margin-top:12px;
  }
}

/* SERVICES PAGE */
.services-page{
  margin-top:28px;
}

.services-title{
  margin-bottom:28px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr; /* TRUE symmetry */
  column-gap: 80px;              /* breathing room between image & text */
  align-items: flex-start;       /* text starts at top of image */
  margin-bottom: 120px;          /* vertical spacing between rows */
}


.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

.service-row img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:10px;
}

.service-text h2{
  margin:0 0 8px;
}

.service-text p{
  color:var(--muted);
  margin:0 0 14px;
  max-width:42ch;
}

/* Mobile */
@media (max-width:720px){
  .service-row,
  .service-row.reverse{
    grid-template-columns:1fr;
  }

  .service-row img{
    height:240px;
  }
}

/* INDIVIDUAL SERVICE PAGE */
.service-detail-page {
  margin-top: 40px;
}

/* TITLE */
.service-title {
  margin-bottom: 30px;
}

/* TOP TWO IMAGE BLOCKS */
.dual-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.image-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.image-desc {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

/* JOBS DONE */
.jobs-done {
  margin-bottom: 60px;
}

.jobs-done ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.jobs-done li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}

/* IMAGE GRID */
.image-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .dual-images {
    grid-template-columns: 1fr;
  }
}

/* SHOP PRODUCT LIST */
.shop-products {
  padding: 30px;
}

.product-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.product-image img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.product-name {
  font-weight: 600;
}

.product-purchase {
  display: flex;
  align-items: center;
  gap: 16px;
}

.price {
  font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
  .product-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-purchase {
    justify-content: space-between;
  }
} 
.contact-map {
  min-height: auto; 
}

.map-card-small {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 10px; 
}

.map-card-small h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--white);
}

.map-card-small p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
}

.map-card-small .btn {
  display: block; 
  width: 100%;
  text-align: center;
  padding: 12px;
}




/* RESPONSIVE */
@media (max-width:720px){
  .container{ padding:18px; }

  .nav{
    display:none;
    position:absolute;
    right:18px;
    top:64px;
    background:var(--panel);
    padding:12px;
    border-radius:8px;
    box-shadow:0 8px 30px rgba(2,6,23,0.7);
    flex-direction:column;
    gap:8px;
  }
  .nav.open{ display:flex; }
  .nav-toggle{ display:block; }

  .slideshow-inner{
    height:240px;
  }
}
