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

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

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

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-primary {
  background: #f7931e;
  color: #fff;
}
.btn-primary:hover { background: #d97b0d; }

.btn-secondary {
  background: #ffffff;
  color: #1a2b4c;
  border: 2px solid #1a2b4c;
}
.btn-secondary:hover { background: #1a2b4c; color: #fff; }

.btn-header {
  background: #f7931e;
  color: #fff;
  padding: 10px 20px;
}
.btn-header:hover { background: #d97b0d; }

.btn-full { width: 100%; text-align: center; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #1a2b4c;
}
.logo span { color: #f7931e; }

.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  font-weight: 500;
  color: #1e2733;
  transition: color 0.2s;
}
.nav a:hover { color: #f7931e; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #1a2b4c;
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a2b4c 0%, #24365e 100%);
  color: #fff;
  padding: 90px 0;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-text { flex: 1 1 480px; }
.hero-text h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}
.hero-text p {
  font-size: 17px;
  color: #d3dae6;
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  flex: 1 1 320px;
  min-height: 320px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="320"><rect width="400" height="320" fill="%23f7931e" opacity="0.15"/></svg>') center/cover no-repeat;
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.hero-badge {
  background: #f7931e;
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 10px;
  margin: 20px;
  font-size: 16px;
}

/* Trust bar */
.trust-bar {
  background: #f7931e;
  padding: 24px 0;
}
.trust-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 26px;
  color: #fff;
}
.trust-item span {
  font-size: 13px;
  color: #fff;
  opacity: 0.9;
}

/* Sections */
section { padding: 80px 0; }
.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #1a2b4c;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: #6b7688;
  margin-bottom: 50px;
  font-size: 16px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 26px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s;
}
.service-card:hover { transform: translateY(-6px); }
.service-icon { font-size: 34px; margin-bottom: 16px; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; color: #1a2b4c; }
.service-card p { font-size: 14.5px; color: #5f6b7d; }

/* About */
.about { background: #f0f3f8; }
.about-inner {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}
.about-text { flex: 1 1 500px; }
.about-text .section-title { text-align: left; }
.about-text p { color: #4f5a6b; margin-bottom: 20px; }
.about-list li { margin-bottom: 12px; font-weight: 500; color: #1e2733; }
.about-image {
  flex: 1 1 380px;
  min-height: 320px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7931e33, #1a2b4c33);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.testimonial-card p { font-style: italic; margin-bottom: 16px; color: #38414f; }
.testimonial-card span { font-weight: 600; color: #1a2b4c; font-size: 14px; }

/* Contact */
.contact { background: #f0f3f8; }
.contact-inner {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.contact-info { flex: 1 1 380px; }
.contact-info .section-title { text-align: left; }
.contact-info p { color: #4f5a6b; margin-bottom: 20px; }
.contact-details li { margin-bottom: 10px; color: #1e2733; }
.contact-details a { color: #f7931e; font-weight: 600; }
.social-links { display: flex; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.social-links a {
  background: #1a2b4c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.social-links a:hover { background: #f7931e; }

.contact-form {
  flex: 1 1 420px;
  background: #fff;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  color: #1a2b4c;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7dce4;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #f7931e;
}
.form-note {
  font-size: 12.5px;
  color: #6b7688;
  margin-top: 12px;
  text-align: center;
}
.form-note a { color: #f7931e; font-weight: 600; }
.form-success {
  margin-top: 16px;
  padding: 12px;
  background: #e5f7ec;
  color: #1f7a45;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
}

/* Footer */
.footer {
  background: #1a2b4c;
  color: #d3dae6;
  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-brand p { margin-top: 8px; font-size: 14px; }
.footer-brand a { color: #f7931e; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a { font-size: 14px; color: #d3dae6; }
.footer-links a:hover { color: #f7931e; }
.footer .social-links a { background: rgba(255,255,255,0.08); }
.footer-bottom {
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #8a93a6;
}

/* Policy page */
.policy-section { padding: 60px 0 80px; }
.policy-container { max-width: 780px; }
.policy-container h1 { font-size: 32px; color: #1a2b4c; margin-bottom: 16px; }
.policy-container h2 {
  font-size: 20px;
  color: #1a2b4c;
  margin: 28px 0 10px;
}
.policy-container p { color: #4f5a6b; margin-bottom: 10px; }
.policy-container .btn { margin-top: 30px; }

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

@media (max-width: 768px) {
  .nav { 
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    display: none;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: flex; }
  .btn-header { display: none; }
  .hero-text h1 { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner, .contact-inner { flex-direction: column; }
}
