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

body {
  font-family: 'Poppins', sans-serif;
  color: #1e1e1e;
  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;
}

img {
  max-width: 100%;
  display: block;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #0d1b2a;
  color: #fff;
}

.btn-primary:hover {
  background: #1b3a5c;
}

.btn-outline {
  border-color: #0d1b2a;
  color: #0d1b2a;
}

.btn-outline:hover {
  background: #0d1b2a;
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #0d1b2a;
}

.logo span {
  color: #c59d5f;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: #1e1e1e;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #c59d5f;
}

.nav-cta {
  display: inline-block;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #0d1b2a;
  display: block;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b3a5c 100%);
  color: #fff;
  padding: 100px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-text p {
  font-size: 17px;
  margin-bottom: 30px;
  color: #d8dee8;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero .btn-outline {
  border-color: #fff;
  color: #fff;
}

.hero .btn-outline:hover {
  background: #fff;
  color: #0d1b2a;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.hero-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(5px);
}

.hero-badge strong {
  display: block;
  font-size: 42px;
  color: #c59d5f;
}

.hero-badge span {
  font-size: 14px;
  color: #d8dee8;
}

/* Sections general */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 16px;
}

/* Services */
.services {
  background: #f7f8fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-icon {
  font-size: 30px;
  color: #c59d5f;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #0d1b2a;
}

.service-card p {
  font-size: 14.5px;
  color: #555;
}

/* About */
.about-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text .section-title {
  text-align: left;
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
}

.about-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #333;
}

.about-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #c59d5f;
  font-weight: bold;
}

.about-image {
  flex: 1;
  min-width: 280px;
  height: 320px;
  background: linear-gradient(135deg, #1b3a5c, #0d1b2a);
  border-radius: 12px;
}

/* Gallery */
.gallery {
  background: #f7f8fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  height: 200px;
  background: linear-gradient(135deg, #c59d5f, #0d1b2a);
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.gallery-item:hover {
  opacity: 1;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 10px;
}

.testimonial-card p {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.testimonial-card span {
  font-weight: 600;
  color: #0d1b2a;
}

/* Contact */
.contact {
  background: #0d1b2a;
  color: #fff;
}

.contact-inner {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact .section-title {
  text-align: left;
  color: #fff;
}

.contact-info p {
  color: #d8dee8;
  margin-bottom: 25px;
}

.contact-list li {
  margin-bottom: 12px;
  color: #d8dee8;
}

.contact-list a {
  color: #c59d5f;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.social-links a {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #c59d5f;
  border-color: #c59d5f;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  color: #1e1e1e;
  padding: 35px;
  border-radius: 10px;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #0d1b2a;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c59d5f;
}

.form-submit {
  width: 100%;
  border: none;
}

.form-success {
  display: none;
  margin-top: 15px;
  color: #2a7d46;
  font-weight: 600;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #060d16;
  color: #d8dee8;
  padding: 40px 0 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 13px;
  margin-top: 8px;
  color: #9aa5b1;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: #d8dee8;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #c59d5f;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #9aa5b1;
}

/* Legal page */
.legal-page {
  padding: 60px 0;
  max-width: 800px;
}

.legal-page h1 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.legal-page h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.legal-page p, .legal-page li {
  color: #444;
  margin-bottom: 10px;
}

.legal-page ul {
  padding-left: 20px;
  list-style: disc;
}

.legal-page .btn {
  margin-top: 30px;
}

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

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .services-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-text .section-title,
  .contact .section-title {
    text-align: center;
  }
}
