/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; line-height: 1.6; color: #333; background: #fff; }
h1, h2, h3 { font-family: 'Poppins', sans-serif; }

/* Navbar */
header {
  background: linear-gradient(90deg, #000 0%, #222 50%, #444 100%);
  color: #fff;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar { display: flex; justify-content: space-between; align-items: center; width: 90%; margin: auto; }
.logo img { height: 40px; }


.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a {
  color: #fdd835; text-decoration: none; font-weight: bold; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; width: 0; height: 2px; left: 0; bottom: -5px; background: #fdd835;
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* Hero */
.hero {
  background: url('stock.png') no-repeat center center/cover;
  height: 90vh;
  display: flex; justify-content: center; align-items: center;
  text-align: center; color: #fff; position: relative;
}
.hero::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }
.hero-text { position: relative; z-index: 1; }
.hero-text h1 { font-size: 3rem; margin-bottom: 0.8rem; font-weight: 600; }
.hero-sub { font-size: 1.5rem; font-weight: bold; color: #fdd835; margin-bottom: 1rem; }
.tagline { font-size: 1.1rem; color: #fff; margin-bottom: 1.5rem; }
.btn {
  display: inline-block; background: #fdd835; color: #000; padding: 0.8rem 1.6rem; border-radius: 5px;
  text-decoration: none; font-weight: bold; transition: all 0.3s ease;
}
.btn:hover { background: #ffeb3b; transform: scale(1.05); }
.btn-hero { font-size: 1.2rem; padding: 1rem 2rem; }

/* Sections */
section { padding: 4rem 2rem; text-align: center; border-bottom: 3px solid #fdd835; }
h2 { margin-bottom: 1rem; font-size: 2rem; color: #222; }
h2::after { content: ""; display: block; width: 60px; height: 4px; background: #fdd835; margin: 0.5rem auto 0; }

/* Services */
.services { background: #f9f9f9; }
.service-cards { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.card {
  background: #fff; padding: 1.5rem; border-radius: 8px; width: 250px; transition: transform 0.3s, box-shadow 0.3s;
}
.card i { margin-bottom: 0.5rem; display: block; }
.card.parking { border: 2px solid #fdd835; background: #fffde7; }
.card.handicap { border: 2px solid #1976d2; background: #e3f2fd; }
.card.fire { border: 2px solid #d32f2f; background: #ffe5e5; }
.card.custom { border: 2px solid #333; background: #f5f5f5; }
.card:hover { transform: translateY(-5px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* Why Us */
.why { background: #fff; }
.why-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 1.5rem; }
.why-grid div {
  background: #fff; border: 2px solid #fdd835; padding: 1.5rem; border-radius: 8px; width: 220px; transition: transform 0.3s;
}
.why-grid div:hover { transform: translateY(-5px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* Callout */
.callout {
  background: #fdd835; color: #000; padding: 2rem 1rem; text-align: center;
}
.callout h2 { color: #000; }
.callout .btn { background: #000; color: #fdd835; margin-top: 1rem; }
.callout .btn:hover { background: #333; }

/* Stats */
.stats {
  background: #000; color: #fdd835;
  display: flex; justify-content: center; gap: 40px; padding: 3rem 1rem;
}
.stat h3 { font-size: 2.5rem; color: #fdd835; }
.stat p { color: #fff; font-weight: bold; }

/* Testimonials */
.testimonials { background: #fff; }
.testimonial {
  background: #fff; padding: 1.5rem; margin: 1rem auto; border-radius: 8px; max-width: 600px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1); position: relative; font-style: italic;
}
.testimonial::before { content: "“"; font-size: 3rem; color: #fdd835; position: absolute; top: 10px; left: 15px; }

/* Gallery */
.gallery { background: #000; color: #fff; }
.gallery h2::after { background: #fdd835; }
.gallery-grid { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 1.5rem; }
.gallery-grid img {
  width: 280px; border-radius: 6px; border: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Trust Badges */
.trust { background: #fff; }
.trust-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 1.5rem; }
.badge {
  background: #fff; color: #000; border: 2px solid #fdd835; border-radius: 8px;
  padding: 1rem 1.5rem; font-weight: bold; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.badge i { color: #fdd835; font-size: 1.3rem; }
.badge:hover { transform: translateY(-4px); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }

/* Quote */
.quote-form { max-width: 600px; margin: 2rem auto; display: flex; flex-direction: column; gap: 15px; }
.quote-form input, .quote-form textarea {
  padding: 0.8rem; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; width: 100%;
}
.quote-form input:focus, .quote-form textarea:focus { border-color: #fdd835; outline: none; }
.quote-form button {
  background: #fdd835; color: #000; padding: 1rem; border: none; border-radius: 5px; font-weight: bold;
  cursor: pointer; transition: background 0.3s;
}
.quote-form button:hover { background: #ffeb3b; }

/* Contact */
.contact a { color: #f04e23; font-weight: bold; text-decoration: none; }
.contact a:hover { text-decoration: underline; }

/* Footer */
footer {
  background: linear-gradient(90deg, #000 0%, #222 50%, #444 100%);
  color: #fff; padding: 2rem 1rem;
}
.footer-content { display: flex; justify-content: space-around; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-content h4 { color: #fdd835; margin-bottom: 0.5rem; }
.footer-content a { color: #fdd835; text-decoration: none; margin: 0 5px; }
.copy { text-align: center; border-top: 1px solid #555; margin-top: 1rem; padding-top: 0.5rem; font-size: 0.9rem; }

/* Floating Quote Button */
.quote-float {
  position: fixed; bottom: 20px; right: 20px; background: #fdd835; color: #000;
  padding: 0.9rem 1.4rem; border-radius: 50px; font-weight: bold; text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: transform 0.3s;
}
.quote-float:hover { transform: scale(1.05); }

/* Mobile Menu */
.menu-toggle { display: none; font-size: 1.8rem; color: #fdd835; cursor: pointer; }
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 15px; background: #000;
    position: absolute; top: 60px; right: 20px; width: 200px; padding: 1rem;
    border: 2px solid #fdd835; border-radius: 6px;
  }
  .nav-links.active { display: flex; }
  .service-cards, .why-grid, .stats { flex-direction: column; align-items: center; }
  .hero-text h1 { font-size: 2rem; }
}
