:root {
  --primary: #1a4b8c;
  --secondary: #6cb2eb;
  --accent: #e63946;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
}

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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

html, body{
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--primary);
}

.cart-icon {
  position: relative;
  font-size: 1.4rem;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-to-cart {
  display: none;
}


.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1518228684816-9135c15ab4ea?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")
      no-repeat center center/cover;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn:hover {
  background-color: #c1121f;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  margin-left: 15px;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Search Section */
.search-section {
  background-color: var(--primary);
  padding: 40px 0;
  color: white;
}

.search-container {
  max-width: 900px;
  margin: 0 auto;
}

.search-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.search-box {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 15px;
  border: none;
  font-size: 1rem;
}

.search-box button {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 0 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.search-box button:hover {
  background-color: #c1121f;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.filter-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 8px 15px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent);
}

/* Featured Parts */
.featured-section {
  padding: 80px 0;
  text-align: center;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary);
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.product-category {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.product-name {
  font-weight: 600;
  margin-bottom: 10px;
  min-height: 50px;
}

.product-partno {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 10px;
}

.product-certification {
  display: inline-block;
  background-color: var(--light);
  color: var(--primary);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.product-actions {
  display: flex;
  justify-content: space-between;
}

.add-to-cart {
  flex: 1;
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 8px 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.add-to-cart:hover {
  background-color: #0d3a72;
}

.details-btn {
  background-color: var(--light);
  color: var(--dark);
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.details-btn:hover {
  background-color: #e2e6ea;
}

/* Categories */
.categories-section {
  padding: 80px 0;
  background-color: var(--light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.category-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  filter: brightness(0.9);
}

.category-info {
  padding: 20px;
  text-align: center;
}

.category-info h3 {
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 2rem;
}

.features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  margin-bottom: 15px;
}

.feature-icon {
  color: var(--accent);
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--light);
}

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

.contact-info {
  flex: 1;
}

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 40px;
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  margin-bottom: 15px;
}

.contact-icon {
  color: var(--accent);
  margin-right: 15px;
  font-size: 1.2rem;
}

.contact-form {
  flex: 1;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

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

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: white;
  padding: 50px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  font-size: 1.2rem;
}

.footer-links h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Cart Preview */
.cart-preview {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 350px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  transform: translateX(120%);
  transition: transform 0.3s ease-out;
  max-height: 80vh;
  overflow-y: auto;
}

.cart-preview.active {
  transform: translateX(0);
}

.cart-header {
  padding: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.1rem;
  color: var(--dark);
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--gray);
}

.cart-items {
  padding: 15px;
}

.cart-item {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f5f5f5;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  margin-right: 15px;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
}

.quantity-btn {
  width: 25px;
  height: 25px;
  background-color: var(--light);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-input {
  width: 40px;
  text-align: center;
  margin: 0 5px;
  border: 1px solid #ddd;
}

.remove-item {
  margin-left: auto;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
}

.cart-summary {
  padding: 15px;
  border-top: 1px solid #eee;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 600;
}

.cart-actions {
  display: flex;
  gap: 10px;
}

.cart-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.view-cart {
  background-color: var(--light);
  color: var(--dark);
}

.checkout {
  background-color: var(--primary);
  color: white;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1002;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.close-menu {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  margin-bottom: 30px;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav ul li a {
  text-decoration: none;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-content,
  .contact-container {
    flex-direction: column;
  }

  .about-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 576px) {
  .hero {
    height: 350px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn-outline {
    margin-left: 0;
  }

  .search-box {
    flex-direction: column;
  }

  .search-box button {
    padding: 15px;
  }

  .product-actions {
    flex-direction: column;
    gap: 10px;
  }

  .details-btn {
    margin-left: 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Warna utama */
:root {
  --brand-blue: #1e3a8a;
  --brand-blue-light: #3b82f6;
  --gray-dark: #111827;
  --gray: #4b5563;
  --gray-light: #6b7280;
  --bg-white: #ffffff;
}

/* Container utama */
main.main-container {
  position: relative;
  width: 100%;
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* Background shapes opsional */
.bg-shapes {
  position: absolute;
  opacity: 0.05;
  z-index: 0;
}

.bg-shape-1 {
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--brand-blue),
    var(--brand-blue-light)
  );
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.bg-shape-2 {
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--brand-blue-light),
    var(--brand-blue)
  );
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* Header */
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 640px) {
  .header-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

.header-text {
  text-align: center;
  max-width: 600px;
}

@media (min-width: 640px) {
  .header-text {
    text-align: left;
  }
}

.header-text h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gray-dark);
  line-height: 1.4;
}

.header-text span.brand-blue {
  color: var(--brand-blue);
  font-weight: 700;
}

.header-text p {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  color: var(--gray);
  font-weight: 500;
}

/* Grid untuk vision & mission */
.section-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.section-grid article h2 {
  display: inline-block;
  background-color: var(--brand-blue);
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.section-grid article p {
  color: var(--gray-dark);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #000;
}

.vision-mission {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 80px 40px;
  background-color: #ffffff;
}

.vision-mission .box {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.box {
  max-width: 500px;
}

.box p {
  font-size: 16px;
  line-height: 1.6;
}

.box p strong {
  font-weight: 800;
}

.our-clients {
  text-align: center;
  padding: 60px 20px;
  /* background: url('../image/our-clients-bg.png'); */
  background-size: cover;
  background-position-y: -210px;
}

.our-clients h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.wrapper-clients {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 5em;
}

.wrapper-clients .client img {
  width: 80px;
}

.about-us-section {
  background: #f6f6f6;
  position: relative;
  padding: 60px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.about-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      135deg,
      rgba(200, 200, 200, 0.08) 25%,
      transparent 25%
    ),
    linear-gradient(225deg, rgba(200, 200, 200, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, rgba(200, 200, 200, 0.08) 25%, transparent 25%),
    linear-gradient(315deg, rgba(200, 200, 200, 0.08) 25%, transparent 25%);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.about-us-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.heading {
  width: 130px;
  background-color: #2d75c9;
  color: white;
  display: inline-block;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  border-radius: 4px;
  margin-bottom: 20px;
}

.about-us-container p {
  text-align: justify;
  color: #222;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
  text-indent: 40px;
}

.target-market-section {
  background: #ffffff;
  position: relative;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

/* .target-market-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(200,200,200,0.08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(200,200,200,0.08) 25%, transparent 25%),
    linear-gradient(45deg, rgba(200,200,200,0.08) 25%, transparent 25%),
    linear-gradient(315deg, rgba(200,200,200,0.08) 25%, transparent 25%);
  background-size: 60px 60px;
  opacity: 0.6;
  z-index: 0;
} */

.section-title {
  font-size: 36px;
  color: #2d75c9;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.target-market-section {
  background: #ffffff;
  position: relative;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.target-market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 kolom */
  grid-template-rows: repeat(2, auto); /* 2 baris */
  gap: 70px 60px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.market-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  font-size: 16px;
}

.market-item i {
  font-size: 48px;
  color: #2d75c9;
  margin-bottom: 15px;
}

/* .health-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.health-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.health-card {
  background: white;
  border: 3px solid #2d75c9;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.health-title {
  font-size: 20px;
  font-weight: bold;
  color: #2d75c9;
  margin-bottom: 15px;
  border: 2px solid #2d75c9;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 5px;
  background-color: white;
}

.health-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.health-card p {
  font-size: 14px;
  color: #b4a2a2;
  line-height: 1.6;
} */

/* Menu navbar */

/* Dropdown base */
nav ul li.dropdown {
  position: relative;
}

nav ul li a:hover {
  cursor: pointer !important;
}

nav ul li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

nav ul li .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  display: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 10;
  min-width: 200px;
}

nav ul li .dropdown-menu li {
  margin-left: 0;
}

nav ul li .dropdown-menu li a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
  display: block;
  padding: 5px 20px;
}

nav ul li .dropdown-menu li a:hover {
  background: rgba(0, 0, 0, 0.1);
}

nav ul li.dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Mobile dropdown */
.mobile-nav .dropdown-menu {
  display: none;
  padding-left: 20px;
}

.mobile-nav .dropdown-menu li {
  margin: 5px 0;
}

.mobile-nav .dropdown.open .dropdown-menu {
  display: block;
}

.airplane-cta {
  background-image: url("https://images.unsplash.com/photo-1541611666598-71d25303fb88?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.cta-content {
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* semi transparan biar teksnya lebih jelas */
  padding: 40px;
  border-radius: 12px;
}

.airplane-cta h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: black;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta-button:hover {
  background-color: #e1e1e1;
}

/* Simulator slider */

.slider-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  height: 380px;
  padding: 30px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.slide {
  flex-shrink: 0;
  background: #444;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 0.7;
  transition: 0.6s all;
  height: 100%;
}

a{
  transition: 0.6s all;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide.active {
  box-shadow: 0 0 20px rgba(54, 54, 54, 0.6);
  opacity: 1;
}

.slide::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 10px;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1a4b8c;
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  color: #ffffff;
  font-weight: bold;
  border-radius: 8px;
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}

/* Mobile Vertical Mode */
@media screen and (max-width: 768px) {
  .slider-wrapper {
    flex-direction: column;
    height: 100vh;
    padding: 0 50px;
  }

  .slider-track {
    flex-direction: column;
    width: 100%;
  }

  .nav-button {
    position: absolute;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: 10px auto;
  }

  .prev-button {
    order: -1;
  }

  .next-button {
    bottom: 0;
  }

  .slide {
    width: 100% !important;
  }

  .slide img {
    width: 100%;
    height: 100%;
  }
}

.product-detail-page {
  font-family: "Poppins", sans-serif;
  padding: 40px 20px;
  background-color: #f9f9f9;
  color: #1d1d1d;
}

.product-header {
  text-align: center;
  margin-bottom: 40px;
}

.product-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #013c7d;
  margin-bottom: 10px;
}

.product-header .category {
  font-size: 16px;
  color: #999;
  text-transform: uppercase;
}

.product-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

.product-image {
  flex: 1;
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.product-summary {
  flex: 1;
}

.product-summary h2 {
  font-size: 28px;
  color: #013c7d;
  margin-bottom: 20px;
}

.product-summary p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-features {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.primary-btn {
  background-color: #013c7d;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.primary-btn:hover {
  background-color: #002f5e;
}

.product-details {
  max-width: 900px;
  margin: 0 auto;
}

.product-details h3 {
  font-size: 24px;
  color: #013c7d;
  margin-bottom: 20px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.spec-table td {
  padding: 12px 20px;
  border: 1px solid #ddd;
  font-size: 15px;
}

/* img:hover {
  transform: scale(1.08);
} */