/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}
body {
  background: #1c1c1c;
  color: #eee;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
button, .btn { cursor: pointer; }

/* ===== Header ===== */
header {
  background: #121212;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-bottom: 2px solid #bfa94f;
}
header nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
}
header nav ul li a {
  color: #bfa94f;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
}
header nav ul li a:hover {
  color: #fff;
  background: #222;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(28,28,28,0.4), rgba(28,28,28,0.4)), url('../images/hero-bg.jpg') center center/contain no-repeat;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg,#d1b54a,#f9e79f,#b9962b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  margin-bottom: 15px;
}
.hero h2 {
  font-style: italic;
  color: #e8d475;
  font-size: 1.5rem;
  margin-bottom: 25px;
}
.hero .btn {
  background: #bfa94f;
  color: #121212;
  padding: 14px 35px;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 0 12px #d1b54a80;
}
.hero .btn:hover {
  background: #f9e79f;
  box-shadow: 0 0 15px #f9e79f80;
}

/* ===== PAGE SECTION ===== */
.page {
  padding: 100px 20px 60px;
  max-width: 1200px;
  margin: auto;
}
.page h1 {
  text-align: center;
  color: #bfa94f;
  margin-bottom: 40px;
}
.page p {
  color: #ccc;
  line-height: 1.5;
  font-size: 1.1rem;
}

/* ===== GRIDS & BOXES ===== */
.service-grid, .gallery-grid, .crime-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.service-box, .gallery-box, .crime-box, .box {
  background: #111;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #bfa94f;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-box:hover, .gallery-box:hover, .crime-box:hover, .box:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #f9e79f80;
}
.service-box h3, .gallery-box h3, .crime-box h3 {
  color: #bfa94f;
  margin-bottom: 15px;
}
.service-box p, .gallery-box p, .crime-box p {
  color: #ccc;
  line-height: 1.4;
}

/* ===== LIGHTBOX FOR GALLERY ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border: 5px solid #bfa94f;
  border-radius: 6px;
  box-shadow: 0 0 20px #f9e79f80;
}
.lightbox:target { display: flex; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #bfa94f;
  font-size: 2rem;
}

/* ===== CONTACT FORM ===== */
form {
  max-width: 600px;
  margin: 30px auto;
  background: #111;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #bfa94f;
  color: #eee;
}
form label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #bfa94f;
}
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 18px;
  border-radius: 5px;
  border: none;
  background: #222;
  color: #eee;
  font-size: 1rem;
}
form textarea { resize: vertical; min-height: 100px; }
form button {
  background: #bfa94f;
  color: #121212;
  font-weight: 700;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
}
form button:hover { background: #f9e79f; }

/* ===== COMING SOON ===== */
@keyframes flicker {
  0%,19%,21%,23%,25%,54%,56%,100% { opacity:1; text-shadow:0 0 5px #f9e79f,0 0 10px #f9e79f,0 0 20px #f9e79f; }
  20%,22%,24%,55% { opacity:0.3; text-shadow:none; }
}
.coming-soon-box {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  background: #000;
  padding: 25px 40px;
  border: 3px solid #bfa94f;
  border-radius: 10px;
  text-align: center;
  animation: flicker 1.5s infinite;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  z-index: 3000;
}
.whatsapp-btn:hover { background: #1ebe5d; }

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 25px;
  background: #121212;
  font-size: 0.9rem;
  color: #777;
}

/* ===== BUTTON STYLE ===== */
.btn {
  display: inline-block;
  background: #bfa94f;
  color: #121212;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 5px;
  margin-top: 10px;
  text-decoration: none;
}
.btn:hover { background: #f9e79f; }

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  header nav ul { flex-direction: column; gap: 15px; }
  .hero h1 { font-size: 2rem; }
  .hero h2 { font-size: 1rem; }
  .hero { height: 50vh; }
  .service-grid, .gallery-grid, .crime-grid { grid-template-columns: 1fr; }
}