/* =========================
   BASE
   ========================= */
*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#fff;

  /* Bright logo background */
  background-image:url("logo.png");
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;
  background-attachment:fixed;
  background-color:rgba(40,60,95,0.6);
  background-blend-mode:overlay;
}

/* =========================
   LAYOUT
   ========================= */
.layout{
  display:flex;
  min-height:100vh;
}

.sidebar{
  width:260px;
  padding:18px;
  background:rgba(0,0,0,0.82);
  border-right:1px solid rgba(255,255,255,0.2);
}
.sidebar-logo{
  width:100%;
  padding:10px;
  border-radius:14px;
  background:rgba(255,255,255,0.05);
  margin-bottom:14px;
}
.side-nav a{
  display:block;
  padding:10px 12px;
  margin-bottom:8px;
  border-radius:12px;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  background:rgba(255,255,255,0.05);
}
.side-nav a.active{
  background:rgba(179,25,25,0.35);
}

/* =========================
   HOME PAGE CONTENT
   ========================= */
.content{
  flex:1;
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Slideshow centered on home */
.slideshow{
  position:relative;
  width:100%;
  max-width:1100px;
  height:460px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(0,0,0,0.55);
  box-shadow:0 22px 70px rgba(0,0,0,0.55);
}
.slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  background:#000;
  opacity:0;
  transition:opacity .3s ease;
}
.slide.active{ opacity:1; }

.slide-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.35);
  background:rgba(0,0,0,0.55);
  color:#fff;
  font-size:30px;
  cursor:pointer;
}
.slide-btn.prev{ left:18px; }
.slide-btn.next{ right:18px; }

/* =========================
   GALLERY PAGE
   ========================= */
.content.gallery-page{
  display:block;
  max-width:1100px;
  margin:0 auto;
  padding:28px;
}

.section-card{
  background:rgba(0,0,0,0.7);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:16px;
  padding:16px;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
  gap:14px;
}
.gitem img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:12px;
}

/* Videos */
.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:14px;
}
.video video{
  width:100%;
  height:240px;
  background:#000;
}

/* =========================
   LIGHTBOX (GALLERY ONLY)
   ========================= */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.lightbox.open{ display:flex; }

.lb-img{
  max-width:90vw;
  max-height:85vh;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.25);
}
.lb-close{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.35);
  background:rgba(0,0,0,0.6);
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

/* =========================
   FOOTER + MOBILE
   ========================= */
.footer{
  margin-top:20px;
  color:rgba(255,255,255,0.75);
}

@media(max-width:900px){
  .layout{ flex-direction:column; }
  .sidebar{ width:100%; }
  .slideshow{ height:300px; }
}
/* =========================
   QUOTE FORM STYLES
   ========================= */

.content.quote-page{
  display:block;
  padding:28px;
  max-width:1100px;
  margin:0 auto;
}

.read-box{
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(0,0,0,0.60);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 55px rgba(0,0,0,0.45);
}

.muted{ color: rgba(255,255,255,0.78); }

.hidden{ display:none; }

form{
  margin-top: 14px;
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.field label{
  display:block;
  font-weight:800;
  margin: 0 0 6px;
}

.field input,
.field textarea,
.field select{
  width:100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.35);
  color:#fff;
  outline:none;
}

.field textarea{ resize: vertical; }

.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color: rgba(255,255,255,0.45);
}

@media (max-width: 900px){
  .content.quote-page{ padding:16px; }
  .read-box{ padding: 18px 16px; }
  .form-grid{ grid-template-columns: 1fr; }
}
/* =========================
   QUOTE FORM
   ========================= */

form{
  display:grid;
  gap:14px;
  margin-top:18px;
}

label{
  display:flex;
  flex-direction:column;
  font-weight:700;
  gap:6px;
}

input, textarea{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.25);
  background:rgba(0,0,0,0.45);
  color:#fff;
  font-size:15px;
}

input:focus, textarea:focus{
  outline:none;
  border-color:#fff;
}

button.btn{
  margin-top:10px;
  width:fit-content;
  padding:12px 18px;
}
/* =========================
   QUOTE PAGE + FORM STYLES
   ========================= */

.content.quote-page{
  display:block;
  max-width:1100px;
  margin:0 auto;
  padding:28px;
}

.read-box{
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.60);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 55px rgba(0,0,0,0.45);
}

.quote-form{
  margin-top: 14px;
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.quote-form label{
  display:block;
  font-weight:800;
  margin-bottom:10px;
}

.quote-form input,
.quote-form textarea{
  width:100%;
  margin-top:6px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.35);
  color:#fff;
  outline:none;
}

.quote-form input:focus,
.quote-form textarea:focus{
  border-color: rgba(255,255,255,0.45);
}

.hp{ display:none; }

@media (max-width:900px){
  .content.quote-page{ padding:16px; }
  .read-box{ padding:18px 16px; }
  .form-grid{ grid-template-columns: 1fr; }
}
/* =========================
   QUOTE REQUEST FORM
   ========================= */

form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

form label{
  display:flex;
  flex-direction:column;
  font-weight:700;
  color:#fff;
}

form input,
form textarea{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.25);
  background:rgba(0,0,0,0.35);
  color:#fff;
  font-size:16px;
}

form input:focus,
form textarea:focus{
  outline:none;
  border-color:#b31919;
}
/* Quote form styling */
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.field{
  display:block;
}

.field span{
  display:block;
  font-weight:800;
  margin-bottom:6px;
  color: rgba(255,255,255,0.9);
}

.field input,
.field textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.35);
  color:#fff;
  outline:none;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(255,255,255,0.45);
}

@media (max-width: 900px){
  .form-grid{ grid-template-columns: 1fr; }
}
