* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #ffffff;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0b1f33;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a227;
  margin: 12px auto 0;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: #c9a227;
  color: #0b1f33;
}
.btn-primary:hover { background: #b8901f; }
.btn-outline {
  border: 2px solid #0b1f33;
  color: #0b1f33;
}
.btn-outline:hover { background: #0b1f33; color: #fff; }

/* Header */
.header {
  position: sticky;
  top: 0;
  background: #0b1f33;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.logo span { color: #c9a227; }
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  color: #fff;
  font-weight: 400;
  transition: color 0.2s;
}
.nav a:hover { color: #c9a227; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0b1f33 0%, #16324f 100%);
  color: #fff;
  padding: 120px 0 100px;
  text-align: center;
}
.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-text p {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

/* USP */
.usp { background: #f7f7f5; padding: 60px 0; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.usp-item h3 { color: #c9a227; margin-bottom: 10px; font-size: 1.3rem; }

/* Services */
.services { padding: 80px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.service-card h3 { color: #0b1f33; margin-bottom: 12px; }

/* About */
.about { background: #0b1f33; color: #fff; padding: 80px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.about .section-title { text-align: left; color: #fff; }
.about .section-title::after { margin: 12px 0 0; }
.about-text p { margin-bottom: 16px; opacity: 0.9; }
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.stat {
  font-size: 1rem;
  border-left: 3px solid #c9a227;
  padding-left: 16px;
}
.stat span {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #c9a227;
}

/* Pricing */
.pricing { padding: 80px 0; background: #f7f7f5; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.price-card {
  background: #fff;
  border-radius: 6px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured {
  border: 2px solid #c9a227;
  transform: scale(1.03);
}
.price-card h3 { color: #0b1f33; margin-bottom: 10px; }
.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #c9a227;
  margin-bottom: 20px;
}
.price-card ul { margin-bottom: 24px; }
.price-card li { padding: 6px 0; border-bottom: 1px solid #f0f0f0; }

/* Gallery */
.gallery { padding: 80px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  background: linear-gradient(135deg, #16324f, #0b1f33);
  color: #fff;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  padding: 20px;
}

/* Testimonials */
.testimonials { background: #0b1f33; color: #fff; padding: 80px 0; }
.testimonials .section-title { color: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 6px;
}
.testimonial p { margin-bottom: 14px; font-style: italic; }
.testimonial span { color: #c9a227; font-weight: 600; }

/* Contact */
.contact { padding: 80px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info p { margin-bottom: 14px; }
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.social-links a {
  color: #0b1f33;
  font-weight: 600;
  border: 1px solid #0b1f33;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s;
}
.social-links a:hover { background: #0b1f33; color: #fff; }

.contact-form {
  background: #f7f7f5;
  padding: 30px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form h3 { margin-bottom: 6px; color: #0b1f33; }
.contact-form input, .contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
.form-note { color: #1a7a3c; font-weight: 600; min-height: 20px; }

/* Footer */
.footer { background: #0b1f33; color: #fff; padding: 50px 0 20px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-inner p { opacity: 0.8; margin-top: 6px; }
.footer-links { display: flex; gap: 20px; align-items: flex-start; }
.footer-links a { opacity: 0.85; }
.footer-links a:hover { color: #c9a227; }
.footer-bottom { text-align: center; padding-top: 20px; opacity: 0.7; font-size: 0.9rem; }

/* Legal page */
.legal-page { padding: 80px 0; max-width: 900px; margin: 0 auto; }
.legal-page h1 { color: #0b1f33; margin-bottom: 20px; }
.legal-page h2 { color: #0b1f33; margin: 30px 0 10px; }
.legal-page p { margin-bottom: 10px; }
.legal-page .btn { margin-top: 30px; }

/* Responsive */
@media (max-width: 900px) {
  .usp-grid, .services-grid, .pricing-grid, .gallery-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #0b1f33; padding: 20px; gap: 16px; }
  .nav.active { display: flex; }
  .nav-toggle { display: flex; }
  .usp-grid, .services-grid, .pricing-grid, .gallery-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 { font-size: 1.9rem; }
  .footer-inner { flex-direction: column; }
}