:root{  
  --bg:#0b1220;
  --card: rgba(255,255,255,.06);
  --text:#eaf0ff;
  --muted: rgba(234,240,255,.75);
  --line: rgba(255,255,255,.12);
  --accent:#ffd400;
}

*{ 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);
  background: radial-gradient(1200px 600px at 20% 0%, #173066 0%, var(--bg) 60%) fixed;
}

/* Layout */
.container{
  width:min(1100px, 92%);
  margin-inline:auto;
}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(15,26,48,.95), rgba(15,26,48,.75));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap{
  display:flex;
  align-items:center;
  gap:16px;
  padding: 10px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color: var(--text);
  min-width: 260px;
}

.brand-logo{
  width: 120px;
  height: 120px;
  object-fit: contain;

  background: none;
  padding: 0;
  border: none;
  border-radius: 0;

  filter: drop-shadow(0 4px 8px rgba(0,0,0,.35));
}

.brand-text{ line-height: 1.1; }
.brand-name{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 16px;
}
.brand-tagline{
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.nav{
  display:flex;
  gap:14px;
  margin-left:auto;
}

.nav a{
  color: var(--muted);
  text-decoration:none;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 10px;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.menu-btn{
  display:none;
  margin-left: 6px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 10px;
  cursor:pointer;
  font-weight: 900;
}

.mobile-menu{
  display:none;
  padding: 10px 0 14px;
  border-top: 1px solid var(--line);
}
.mobile-menu a{
  display:block;
  padding: 10px 16px;
  color: var(--muted);
  text-decoration:none;
  font-weight: 800;
}
.mobile-menu a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

/* Hero */
.hero{
  padding: 70px 0 52px;
  background: radial-gradient(900px 320px at 50% 0%, rgba(255,212,0,.18), transparent 60%),
              linear-gradient(180deg, rgba(255,255,255,.03), transparent 70%);
}
.hero-inner{ text-align:center; }

.hero h1{
  margin:0 0 10px;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 950;
  color: var(--accent);
}
.hero p{
  margin:0 auto 18px;
  color: var(--muted);
  font-weight: 650;
  max-width: 850px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top: 12px;
}

.trust-strip{
  margin: 18px auto 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  max-width: 900px;
}
.trust-item{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  color: rgba(234,240,255,.9);
  font-size: 13px;
}

/* Sections */
.section{ padding: 52px 0; }
.section h2{
  margin:0 0 10px;
  font-size: 24px;
  font-weight: 950;
  color: var(--accent);
}
.muted{ color: var(--muted); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 950;
  font-size: 13px;
  border: 1px solid transparent;
  user-select:none;
  cursor: pointer;
}
.btn-primary{
  background: var(--accent);
  color:#111;
  border-color: rgba(0,0,0,.15);
}
.btn-primary:hover{ filter: brightness(0.98); }
.btn-outline{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-color: var(--line);
}
.btn-outline:hover{ background: rgba(255,255,255,.10); }

.btn-wide{ width: 100%; }

/* Cards */
.cards{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.card h3{
  margin:0 0 6px;
  font-size: 15px;
}
.card p{
  margin:0;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.service-area{
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

/* Pricing */
.pricing-grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.price-card{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.price-head{
  display:flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.price-title{
  font-weight: 950;
  font-size: 15px;
}
.price-amount{
  font-weight: 1000;
  font-size: 34px;
  color: var(--accent);
  line-height: 1;
}
.price-note{
  color: var(--muted);
  font-weight: 750;
  font-size: 12px;
}

.price-list{
  margin: 10px 0 14px;
  padding-left: 18px;
  color: rgba(234,240,255,.9);
}
.price-list li{
  margin: 8px 0;
  color: rgba(234,240,255,.88);
  font-weight: 650;
  font-size: 13px;
}

.popular{
  border-color: rgba(255,212,0,.45);
  box-shadow: 0 0 0 1px rgba(255,212,0,.20) inset;
}
.badge{
  position:absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #111;
  font-weight: 950;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.pricing-footer{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.info-box{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}
.info-box h3{
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 950;
}
.info-box p{
  margin: 8px 0 0;
  color: rgba(234,240,255,.9);
  font-weight: 650;
  font-size: 13px;
}

.addon-line{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  color: rgba(234,240,255,.92);
  font-weight: 800;
}

/* Gallery */
.gallery-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.gallery-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

/* FAQ */
.faq{
  margin-top: 16px;
  display:grid;
  gap: 10px;
}
details{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
}
summary{
  cursor:pointer;
  font-weight: 950;
  color: var(--text);
}
details p{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

/* Contact */
.contact-box{
  margin-top: 16px;
  display:flex;
  gap: 16px;
  align-items:flex-start;
  justify-content: space-between;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.contact-box h3{ margin:0 0 8px; }

.contact-links{
  display:flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}
.contact-links a{
  color: var(--text);
  text-decoration:none;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.contact-links a:hover{
  background: rgba(255,255,255,.10);
}

.tiny-note{
  margin-top: 10px;
  color: var(--muted);
  font-weight: 750;
  font-size: 12px;
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(0,0,0,.20);
}
.footer-inner{
  display:flex;
  gap: 12px;
  justify-content: space-between;
  align-items:center;
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
}
.footer-inner a{
  color: var(--text);
  text-decoration:none;
  font-weight: 950;
}

/* Responsive */
@media (max-width: 980px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .pricing-footer{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav{ display:none; }
  .menu-btn{ display:inline-flex; }
  .mobile-menu{ display:block; }

  .cards{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-box{ flex-direction: column; }
}

@media (max-width: 520px){
  .brand{ min-width: 0; }
  .brand-name{ font-size: 14px; }
  .brand-logo{ width: 60px; height: 60px; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-img{ height: 240px; }
}

/* ✅ HERO VIDEO BACKGROUND (added only) */
.hero{
  position: relative;
  overflow: hidden;
}

.hero-video-wrap{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(11,18,32,.68);
}

.hero-inner{
  position: relative;
  z-index: 2;
}
