/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #eef4fc;
  color: #222;
  line-height: 1.7;
}

.highlights {
  background: #f5f9fc;
  padding: 60px 20px;
}

.highlights .container {
  max-width: 1200px;
  margin: 0 auto;
}

.highlights h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1e3a8a;
  font-weight: 700;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.highlight {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.icon-box {
  font-size: 2rem;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 5px;
}

.text-box h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #111827;
  font-weight: 600;
}

.text-box p {
  margin-top: 5px;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* LINKS */
a {
  color: #1565c0;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #0d47a1;
  text-decoration: underline;
}

/* CONTAINERS */
.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: linear-gradient(120deg, #1976d2, #0d47a1);
  color: #fff;
  padding-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.topbar {
  background-color: #0b3c83;
  font-size: 0.95rem;
  padding: 0.6rem 0;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem;
}

.navbar {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.5rem;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
}

.logo a {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #e3f2fd;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links .active {
  background-color: #ffffff;
  color: #1565c0;
}

/* NILAI KAMI */
.nilai-kami {
  padding: 60px 20px;
  background-color: #f0f6ff; /* biru muda */
  text-align: center;
}

.judul-nilai {
  font-size: 36px;
  font-weight: bold;
  color: #004aad; /* biru gelap */
  margin-bottom: 40px;
}

.nilai-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.nilai-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 0 15px rgba(0, 74, 173, 0.1);
  transition: transform 0.3s ease;
}

.nilai-card:hover {
  transform: translateY(-5px);
}

.nilai-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #004aad;
}

.nilai-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #003a8c;
}

.nilai-card p {
  font-size: 16px;
  color: #333;
}

/* PEMILIK BENGKEL */
.owner-section {
  background-color: #e9f1fb;
  padding: 60px 20px;
  text-align: center;
}

.owner-title {
  font-size: 38px;
  font-weight: bold;
  color: #004aad;
  margin-bottom: 40px;
}

.owner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.owner-photo img {
  width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.owner-info {
  max-width: 500px;
  text-align: left;
}

.owner-name {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #003a8c;
}

.owner-role {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #004aad;
}

.owner-desc {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.services-section {
  background: #eaf6ff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #004aad;
  margin-bottom: 50px;
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Jadi 2 kolom */
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #666;
}

/* Responsive: jadi 1 kolom di mobile */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}



/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(to right, #0d47a1, #2196f3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-content {
  z-index: 1;
  padding: 3rem;
  animation: fadeIn 1.2s ease;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  color: #e3f2fd;
}

.btn_primary {
  background: #fff;
  color: #0d47a1;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.btn_primary:hover {
  background-color: #bbdefb;
  transform: translateY(-4px);
}

/* ABOUT */
.about {
  background-color: #f9fbfd;
  padding: 6rem 0;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
}

.about-text,
.about-img {
  flex: 1 1 48%;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  color: #0d47a1;
  font-weight: 700;
}

.about-text p {
  margin-bottom: 1.8rem;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
}

.about-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.btn_secondary {
  background-color: transparent;
  color: #1565c0;
  border: 2px solid #1565c0;
  padding: 0.75rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn_secondary:hover {
  background-color: #1565c0;
  color: #fff;
}

/* SERVICES */
.services {
  background-color: #eef6ff;
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: #0d47a1;
  margin-bottom: 3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom */
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  max-width: 800px; /* Tambahkan batas lebar agar tidak melebar */
  margin-left: auto;
  margin-right: auto;
}

/* Responsive: jadi 1 kolom di mobile */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.services-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto;
}


.service-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.service-card i {
  font-size: 3rem;
  color: #1976d2;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: #0d47a1;
  font-size: 1.4rem;
  font-weight: 600;
}

.service-card {
  box-sizing: border-box;
}


/* GALLERY */
.gallery {
  padding: 6rem 0;
  background-color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid #90caf9;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* TESTIMONIALS */
.testimonials {
  background-color: #e3f2fd;
  padding: 6rem 0;
  text-align: center;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #d0dbe8;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #444;
}

.testimonial span {
  color: #1565c0;
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-cta {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-cta h2 {
  font-size: 32px;
  color: #0d47a1;
  margin-bottom: 1rem;
}

.contact-cta p {
  font-size: 18px;
  color: #333;
  margin-bottom: 2rem;
}

.btn_primary {
  background-color: #1976d2;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn_primary:hover {
  background-color: #0d47a1;
}


/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* FOOTER */
.site-footer {
  background-color: #0d47a1;
  color: #bbdefb;
  padding: 1.2rem;
  text-align: center;
  font-size: 0.95rem;
}

.site-footer span {
  color: #ffffff;
}
