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

:root {
  --primary: #0f4c81;
  --primary-dark: #0a3760;
  --accent: #ffb703;
  --light: #f5f8fb;
  --dark: #14213d;
  --gray: #6b7280;
  --white: #ffffff;
  --radius: 12px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
  font-size: 15px;
}
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: #e6a500; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-light { background: var(--white); color: var(--primary); }
.btn-light:hover { background: var(--light); }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(15,76,129,0.95);
  z-index: 1000;
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo span { color: var(--accent); }
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  transition: color .3s;
}
.nav a:hover { color: var(--accent); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 160px 0 100px;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.hero-text { flex: 1 1 480px; }
.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.hero-text p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { flex: 1 1 380px; display: flex; justify-content: center; }
.hero-card {
  width: 100%;
  max-width: 400px;
  height: 320px;
  background: linear-gradient(160deg, #1a5f96, #0a3760);
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.hero-shine {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,183,3,0.25), transparent 60%);
  animation: rotate 12s linear infinite;
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-card p {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* Stats */
.stats { background: var(--light); padding: 50px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}
.stat h3 { font-size: 32px; color: var(--primary); font-weight: 700; }
.stat p { color: var(--gray); margin-top: 6px; }

/* Sections */
section { padding: 90px 0; }
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-title.left { text-align: left; }
.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 50px;
  font-size: 16px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8edf2;
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(15,76,129,0.12);
}
.service-icon { font-size: 36px; margin-bottom: 14px; }
.service-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 19px; }
.service-card p { color: var(--gray); font-size: 14.5px; }

/* About */
.about { background: var(--light); }
.about-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.about-text { flex: 1 1 480px; }
.about-text p { color: var(--gray); margin-bottom: 20px; }
.about-list li { margin-bottom: 10px; font-weight: 500; color: var(--dark); }
.about-image { flex: 1 1 380px; }
.about-box {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffb703, #fb8500);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  height: 220px;
  border-radius: var(--radius);
}
.g1 { background: linear-gradient(135deg, #0f4c81, #1a5f96); }
.g2 { background: linear-gradient(135deg, #ffb703, #fb8500); }
.g3 { background: linear-gradient(135deg, #14213d, #0f4c81); }
.g4 { background: linear-gradient(135deg, #fb8500, #ffb703); }
.g5 { background: linear-gradient(135deg, #1a5f96, #14213d); }
.g6 { background: linear-gradient(135deg, #0a3760, #0f4c81); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.price-card {
  background: var(--white);
  border: 1px solid #e8edf2;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: transform .3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.03);
}
.price-card h3 { font-size: 22px; margin-bottom: 10px; }
.price-card .price { font-size: 32px; font-weight: 700; margin-bottom: 20px; color: var(--accent); }
.price-card.featured .price { color: var(--accent); }
.price-card ul { margin-bottom: 24px; }
.price-card ul li { margin-bottom: 10px; font-size: 14.5px; }

/* Testimonials */
.testimonials { background: var(--light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.testimonial-card p { font-style: italic; margin-bottom: 14px; color: var(--dark); }
.testimonial-card h4 { color: var(--primary); font-size: 15px; }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
}
.cta h2 { font-size: 30px; margin-bottom: 12px; }
.cta p { margin-bottom: 28px; opacity: 0.9; }

/* Contact */
.contact-inner {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.contact-info { flex: 1 1 380px; }
.contact-info p { margin-bottom: 14px; }
.social-links { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.social-links a {
  padding: 10px 18px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-size: 14px;
  transition: background .3s;
}
.social-links a:hover { background: var(--primary-dark); }

.contact-form {
  flex: 1 1 380px;
  background: var(--light);
  padding: 34px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form h3 { color: var(--primary); margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  padding: 14px;
  border: 1px solid #dbe3ea;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-status { font-size: 14px; color: var(--primary); min-height: 18px; }

/* Footer */
.footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 60px 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: 6px; font-size: 14px; }
.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-social a { color: #cbd5e1; font-size: 14px; }
.footer-links a:hover, .footer-social a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #94a3b8;
}

/* Policy page */
.policy-page {
  padding: 160px 0 80px;
  max-width: 900px;
  margin: 0 auto;
}
.policy-page h1 { color: var(--primary); margin-bottom: 10px; font-size: 34px; }
.policy-page h2 { color: var(--primary-dark); margin: 30px 0 12px; font-size: 22px; }
.policy-page p, .policy-page li { color: var(--gray); margin-bottom: 10px; font-size: 15px; }
.policy-page ul { padding-left: 20px; }
.policy-page ul li { list-style: disc; }

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

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 20px;
    display: none;
    gap: 16px;
  }
  .nav.active { display: flex; }
  .burger { display: flex; }
  .hero-text h1 { font-size: 32px; }
  .services-grid, .pricing-grid, .testimonials-grid, .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .contact-inner { flex-direction: column; }
}
