* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #14171c;
  color: #f6f3ec;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

nav a {
  color: #f6f3ec;
  text-decoration: none;
  margin-left: 24px;
  font-size: 15px;
}

nav a:hover {
  color: #c9a24a;
}
.hero {
  padding: 100px 60px;
  background-image: linear-gradient(to right, rgba(20,23,28,0.95) 40%, rgba(20,23,28,0.4)), url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  max-width: 650px;
}

.badge {
  display: inline-block;
  border: 1px solid #c9a24a;
  color: #c9a24a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 56px;
  margin: 10px 0;
}

.hero p {
  font-size: 17px;
  color: #c9cdd4;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 4px;
  border: 1px solid #c9a24a;
  cursor: pointer;
  margin-right: 12px;
  text-decoration: none;
}

.btn-primary {
  background-color: #c9a24a;
  color: #14171c;
}

.btn-secondary {
  background-color: transparent;
  color: #c9a24a;
}
.trust-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 40px;
  background-color: #1c2129;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f6f3ec;
  font-size: 15px;
  font-weight: bold;
}

.trust-item svg {
  width: 28px;
  height: 28px;
  color: #c9a24a;
  flex-shrink: 0;
}
.services {
  padding: 90px 60px;
}

.eyebrow {
  color: #c9a24a;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
}

.services-header h2 {
  font-size: 32px;
  margin-top: 10px;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: #1c2129;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid rgba(201,162,74,0.15);
  transition: transform 0.25s, border-color 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #c9a24a;
}


.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #f6f3ec;
}

.service-card p {
  font-size: 14px;
  color: #c9cdd4;
  line-height: 1.6;
}
.about {
  padding: 90px 60px;
  background-color: #1c2129;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-text {
  flex: 2;
}

.about-text h2 {
  font-size: 30px;
  margin: 10px 0 24px;
}

.about-text p {
  font-size: 15px;
  color: #c9cdd4;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 600px;
}

.about-card {
  flex: 1;
  background-color: #14171c;
  padding: 30px;
  border-top: 3px solid #c9a24a;
}

.about-role {
  font-size: 12px;
  color: #7a8494;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-name {
  font-size: 20px;
  font-weight: bold;
  margin: 8px 0 16px;
}

.about-contact {
  font-size: 15px;
  color: #c9a24a;
  padding-top: 12px;
  border-top: 1px solid rgba(201,162,74,0.2);
}
nav a.active-link {
  color: #c9a24a;
}
.contact {
  padding: 90px 60px;
}

.contact h2 {
  font-size: 30px;
  margin: 10px 0 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background-color: #1c2129;
  padding: 30px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,162,74,0.15);
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 12px;
  color: #7a8494;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-value {
  font-size: 16px;
  color: #f6f3ec;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #c9cdd4;
}

.contact-form input,
.contact-form textarea {
  background-color: #1c2129;
  border: 1px solid rgba(201,162,74,0.2);
  color: #f6f3ec;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

.contact-form button {
  background-color: #c9a24a;
  color: #14171c;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 60px;
  background-color: #1c2129;
  color: #7a8494;
  font-size: 13px;
}
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  color: white;
}
@media (max-width: 768px) {

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 24px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  nav a {
    margin-left: 0;
    font-size: 14px;
  }

  .hero {
    padding: 60px 24px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-content {
    max-width: 100%;
  }

  .trust-strip {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .services {
    padding: 60px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about {
    flex-direction: column;
    padding: 60px 24px;
    gap: 30px;
  }

  .contact {
    padding: 60px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}