/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Main */
.footer-main {
  background-color: #0a1e40;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* Footer Section */
.footer {
  background-color: #010d1a;
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-section p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.lokasi {
  display: inline-block;
  color: #ff5577;
  margin: 4px 6px 4px 0;
  text-decoration: underline;
  cursor: pointer;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff5577;
}


.footer-section {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-section h3 {
  margin-bottom: 10px;
}

.lokasi {
  display: inline-block;
  color: #ff5577;
  margin: 2px 6px 2px 0;
  text-decoration: underline;
  cursor: pointer;
}

.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff5577;
}


/* Navbar */
.navbar {
  background-color: #ffffff;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navbar Logo */
.navbar-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: rgb(7, 3, 3);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

.btn-red {
  background-color: #e63946;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Hero */
.hero {
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #1d3557;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
              url('../img/hero-bg-new.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}


/* Sections */
section {
  padding: 4rem 0;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Vision & Mission */
.vision-mission {
  background-color: #0a1e40;
  color: white;
}

.vision-mission .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  color: #0a1e40;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Armada */
.grid-armada {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.armada-item img {
  width: 80px;
  height: auto;
  margin-bottom: 0.5rem;
}

/* Field Coverage Area & List Customers */
.coverage {
  text-align: center;
  padding: 4rem 0;
}

.coverage .map-img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 12px;
}

.customers {
  padding: 4rem 0;
  text-align: center;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  margin-top: 2rem;
}

.customer-grid img {
  max-width: 100px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.customer-grid img:hover {
  filter: none;
}

/* Logo MKI */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(7, 4, 4);
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* CTA */
.cta {
  background-color: #5F9EA0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px; /* atau ganti dengan 100vh */
  text-align: center;
  padding: 0 20px;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta p {
  margin-bottom: 16px; /* atau 20px, sesuaikan selera */
}

/* Footer */
.footer-main {
  background-color: #0a1e40;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  margin-top: 2rem;
}