select {
  background-color: #262626;   /* background dropdown jadi gelap */
  color: #fff;                 /* warna tulisan jadi putih */
  border: 1px solid orange;    /* supaya lebih terlihat */
}

/* Untuk opsi-opsi di dalam dropdown */
select option {
  background-color: #262626;   /* background opsi sama gelap */
  color: #fff;                 /* warna tulisan opsi juga putih */
}

/* === GLOBAL & BODY === */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #15181B;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* HAPUS transform-style yang bikin fixed jadi rusak */
}

/* === NAVBAR SECTION === */
.navbar {
  background: #181a1c;
  border-bottom: 2px solid #222428;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 15px 60px 12px 60px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex: none;
}

.navbar-logo img {
  height: 58px;
  width: 58px;
  margin-right: 16px;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.brand-tagline {
  font-size: 11px;
  color: #c3cbce;
  letter-spacing: 1.1px;
  margin-top: 0px;
}

.navbar-menu {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-left: auto;
}

.navbar-menu > a,
.navbar-menu .dropdown > a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 6px 10px;
  transition: color 0.18s, background 0.15s;
  border-radius: 4px;
  overflow: hidden;
}

.navbar-menu > a::after,
.navbar-menu .dropdown > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #ffa726 35%, #ffb855 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s cubic-bezier(.7,.35,.39,.93);
  border-radius: 2px;
  z-index: 2;
}

.navbar-menu > a:hover::after,
.navbar-menu .dropdown > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-menu > a:hover,
.navbar-menu .dropdown > a:hover,
.navbar-menu > a:focus {
  color: #ffa726;
  background: #23272b;
}

.dropdown {
  position: relative;
}

.dropdown-indicator {
  font-size: 13px;
  margin-left: 3px;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 180px;
  background: #23272b;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  border-radius: 4px;
  top: 120%;
  z-index: 100;
  flex-direction: column;
  animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px);}
  to   { opacity: 1; transform: translateY(0);}
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: flex;
}

.dropdown-content a {
  color: #fff;
  padding: 8px 18px;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #2a2d32;
  transition: background 0.13s, color 0.12s;
  position: relative;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 3px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #ffa726 40%, #ffb855 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s cubic-bezier(.7,.35,.39,.93);
  border-radius: 1.5px;
}

.dropdown-content a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown-content a:hover {
  background: #373c41;
  color: #ffa726;
}

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  /* FALLBACK BACKGROUND - Warna muncul duluan saat gambar belum load */
  background-color: #2a2f35;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  /* FALLBACK COLOR */
  background-color: #2a2f35;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: slideshow 9s infinite;
  z-index: -2;
  /* Smooth fade-in saat gambar load */
  opacity: 0;
  animation: slideshow 9s infinite, fadeInBg 0.5s ease-in forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #15181b50 50%, #23272b60 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 920px;
  margin: -80px auto 0 auto;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Slideshow Animation */
@keyframes slideshow {
  0%, 33% {
    background-image: url('gambar/canal1.png');
  }
  33.01%, 66% {
    background-image: url('gambar/genie1.png');
  }
  66.01%, 100% {
    background-image: url('gambar/bu5.png');
  }
}

/* Fade-in Animation untuk Background Image */
@keyframes fadeInBg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* INTERACTIVE TEXT dengan hover per huruf */
.hero-interactive-text {
  font-size: 4.2rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 3px;
  margin: 0;
  word-break: break-word;
  text-shadow: 2px 3px 15px #1a1a1a70;
}

.hero-interactive-text span {
  display: inline-block;
  transition: color 0.16s, transform 0.19s cubic-bezier(.57,.15,.38,.87);
  cursor: pointer;
  will-change: transform, color;
}

.hero-interactive-text span:hover {
  color: #ffa726;
  transform: scale(1.28) translateY(-6px) rotate(-3deg);
  text-shadow: 0 0 20px #fffbb960, 0 8px 35px #ffa72680;
}


.about-section {
  background: linear-gradient(135deg, #191a1d 60%, #23242a 100%);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffb366;
  margin-top: 40px;
  margin-bottom: 2.2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-row {
  display: flex;
  gap: 54px;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  margin: auto;
  min-height: 560px;
}

.about-pics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  width: 700px;
  min-width: 420px;
  max-width: 800px;
  align-items: center;
}

.about-image-card {
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  background: #26272c;
  box-shadow: 0 8px 27px rgba(0,0,0,0.21);
  position: relative;
  transition: box-shadow 0.2s, transform 0.22s;
  cursor: pointer;
}
.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-image-card span,
.image-label {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(13,10,2,0.95) 76%, transparent 100%);
  color: #ffeccd;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 14px 20px 8px 18px;
  border-radius: 0 0 22px 22px;
  text-shadow: 0 2px 7px #000;
  z-index: 1;
}

/* PANEL KANAN */
.about-info {
  min-width: 340px;
  max-width: 650px;       /* Lebar panel kanan lebih besar hingga 650px */
  width: 100%;
  background: rgba(20,20,20,0.47);
  box-shadow: 0 5px 35px 0 rgba(0,0,0,0.19);
  border-radius: 21px;
  padding: 34px 35px 22px 35px;
  color: #fdf7ec;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-info > * {
  max-width: 92%;
}

.about-info h3 {
  margin-top: 0;
  font-size: 1.44rem;
  font-weight: 900;
  margin-bottom: 9px;
  color: #ffb366;
  text-shadow: 0 2px 6px #191009;
}

.about-tagline {
  color: #ffdfb0;
  font-style: italic;
  font-size: 1.03rem;
  margin-bottom: 11px;
}
.about-description {
  font-size: 1.06rem;
  margin-bottom: 15px;
  color: #e9e6db;
  line-height: 1.62;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 16px;
}
.stat-box {
  background: rgba(255,179,102,0.16);
  border: 2px solid rgba(255,179,102,0.23);
  border-radius: 11px;
  padding: 15px 0 10px 0;
  font-size: 1.07rem;
  font-weight: 700;
  text-align: center;
  width: 95%;
  margin: 0 auto;
  min-width: 118px;
}

.stat-number {
  color: #ffa726;
  font-weight: 900;
  font-size: 1.32rem;
  margin-bottom: 2px;
  display: block;
}
.stat-label {
  color: #f5c77e;
  font-weight: 700;
  font-size: 1em;
}
.about-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 11px;
  font-size: 1.07rem;
  margin-top: 13px;
  width: 100%;
  background: linear-gradient(135deg, #ffb366 20%, #d97e2a 100%);
  color: #181818;
  font-weight: bold;
  text-decoration: none;
  transition: filter 0.20s, background 0.14s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(255,179,102,0.17);
}
.about-btn:hover {
  filter: brightness(1.08);
  background: linear-gradient(135deg, #d97e2a 0%, #ffb366 90%);
  transform: scale(1.04);
}
.about-pics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  width: 700px;
  min-width: 420px;
  max-width: 800px;
  align-items: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .about-row { flex-direction: column; gap: 30px; align-items: center;}
  .about-pics { width: 98vw; max-width: 480px;}
  .about-info { max-width: 99vw; min-width: 250px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 750px) {
  .about-section { padding: 10px 0 10px 0; }
  .about-row { gap: 11px;}
  .about-pics { grid-template-columns: 1fr 1fr; width: 100%; max-width: 330px;}
  .about-info { padding: 8px 2vw 8px 2vw;}
  .about-btn { font-size: 0.97rem;}
}



/* === PRODUCT SECTION === */
.product-section {
  background: linear-gradient(135deg, #18181b 0%, #1e2227 100%);
  color: #fff;
  padding: 84px 30px 70px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,167,38,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.section-title-product {
  font-size: 3rem;
  font-weight: 900;
  color: #ffa726;
  margin-bottom: 12px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.product-intro {
  font-size: 1.15rem;
  color: #c9c9c9;
  margin-bottom: 50px;
  font-style: italic;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.product-grid {
  display: flex;
  gap: 38px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  width: 360px;
  max-width: 90vw;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 2px solid rgba(255,167,38,0.15);
  min-height: 480px;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 10px 30px rgba(255,167,38,0.3), 0 6px 16px rgba(0,0,0,0.4);
  border-color: rgba(255,167,38,0.4);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, #2a2f35 0%, #23272b 100%);
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  opacity: 0;
  animation: fadeInImage 0.4s ease-in forwards;
}

@keyframes fadeInImage {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.view-detail-btn {
  padding: 11px 28px;
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(255,167,38,0.4);
  letter-spacing: 0.5px;
}

.view-detail-btn:hover {
  background: linear-gradient(135deg, #ffb855 0%, #ffc976 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,167,38,0.6);
}

.product-info {
  padding: 24px 20px 26px 20px;
}

.product-info h3 {
  font-size: 1.4rem;
  color: #ffa726;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.product-info p {
  font-size: 1.05rem;
  color: #d5d5d5;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.product-cta {
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.view-all-btn {
  display: inline-block;
  padding: 16px 42px;
  background: transparent;
  border: 2px solid #ffa726;
  color: #ffa726;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.25s;
  letter-spacing: 0.8px;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  color: #1a1a1a;
  border-color: #ffa726;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.5);
}

.color-list {
  display: flex;
  flex-direction: column; /* item turun ke bawah */
  gap: 6px;
  margin-top: 4px;
}

.color-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ffffff33;
  box-shadow: 0 0 4px #00000066;
}

.color-name {
  color: #ddd;
  font-size: 0.9rem;
}

.product-specs-below {
  max-width: 1200px;
  margin: 24px auto 0;
}


/* === RESPONSIVE PRODUCT === */
@media (max-width: 950px) {
  .product-section {
    padding: 54px 18px 46px 18px;
  }
  .section-title-product {
    font-size: 2.4rem;
  }
  .product-grid {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .product-card {
    width: 95vw;
    max-width: 460px;
  }
}

@media (max-width: 580px) {
  .product-image-wrapper {
    height: 220px;
  }
  .product-info h3 {
    font-size: 1.2rem;
  }
  .product-info p {
    font-size: 0.98rem;
  }
}


/* === GALLERY SECTION === */
.gallery-section {
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  color: #fff;
  padding: 84px 30px 70px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255,167,38,0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.section-title-gallery {
  font-size: 3rem;
  font-weight: 900;
  color: #ffa726;
  margin-bottom: 12px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.gallery-intro {
  font-size: 1.15rem;
  color: #c9c9c9;
  margin-bottom: 50px;
  font-style: italic;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  cursor: pointer;
  border: 2px solid rgba(255,167,38,0.12);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 8px 24px rgba(255,167,38,0.25), 0 4px 12px rgba(0,0,0,0.4);
  border-color: rgba(255,167,38,0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  padding: 8px 16px;
  background: rgba(255,167,38,0.15);
  border-radius: 6px;
  border: 1px solid rgba(255,167,38,0.3);
}

.gallery-cta {
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.view-more-gallery-btn {
  display: inline-block;
  padding: 16px 42px;
  background: transparent;
  border: 2px solid #ffa726;
  color: #ffa726;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.25s;
  letter-spacing: 0.8px;
}

.view-more-gallery-btn:hover {
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  color: #1a1a1a;
  border-color: #ffa726;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.5);
}

/* === FOOTER === */
.site-footer {
  background: #1a1a1a;
  color: #c9c9c9;
  padding: 60px 40px 20px 40px;
  border-top: 1px solid rgba(255,167,38,0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1.8fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 40px auto;
}

.footer-brand h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffa726;
  margin: 0 0 18px 0;
  letter-spacing: 0.5px;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #aaa;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon-footer {
  width: 42px;
  height: 42px;
  background: rgba(255,167,38,0.1);
  border: 2px solid rgba(255,167,38,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.25s;
}

.social-icon-footer:hover {
  background: rgba(255,167,38,0.25);
  border-color: #ffa726;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255,167,38,0.35);
}

.footer-contact h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffa726;
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.93rem;
  line-height: 1.6;
}

.contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-list strong {
  color: #ddd;
  font-weight: 600;
}

.footer-nav h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffa726;
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li {
  margin-bottom: 14px;
}

.nav-list li a {
  color: #c9c9c9;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
  letter-spacing: 0.3px;
  position: relative;
}

.nav-list li a::before {
  content: '• ';
  color: #ffa726;
  font-weight: bold;
  margin-right: 6px;
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-list li a:hover {
  color: #ffa726;
  padding-left: 8px;
}

.nav-list li a:hover::before {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,167,38,0.15);
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #888;
  letter-spacing: 0.5px;
}

/* === FLOATING CONTACT BUTTONS === */
.floating-contact-buttons {
  position: fixed !important;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 99999;
  pointer-events: none;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  animation: slideInRight 0.6s ease-out, pulse 2s ease-in-out infinite;
  pointer-events: auto;
}

.floating-btn:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
  animation: none;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: 3px solid #ffffff;
  animation-delay: 0s;
}

.whatsapp-btn:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.email-btn {
  background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
  border: 3px solid #ffffff;
  animation-delay: 0.15s;
}

.email-btn:hover {
  box-shadow: 0 8px 32px rgba(234, 67, 53, 0.6);
}

.btn-icon svg {
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.05) translateY(-4px);
  }
}

/* === RESPONSIVE === */
@media (max-width: 950px) {
  .navbar-container {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 7px 6px 7px;
  }
  .navbar-logo {
    justify-content: center;
    padding-bottom: 6px;
  }
  .navbar-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-left: unset;
  }
  .navbar-menu > a,
  .navbar-menu .dropdown > a {
    font-size: 15px;
    padding: 7px 6px;
  }
  .dropdown-content {
    min-width: 150px;
    top: 100%;
  }

  .hero-interactive-text { 
    font-size: 2.6rem; 
    letter-spacing: 1.5px;
  }
  
  .about-section {
    padding: 60px 20px 50px 20px;
  }
  .about-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-images {
    max-width: 100%;
  }
  .about-text {
    text-align: center;
    max-width: 100%;
  }
  .about-text h3 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2.4rem;
  }
  .about-stats {
    justify-content: center;
  }
  
  .product-section,
  .gallery-section { 
    padding: 54px 18px 46px 18px; 
  }
  .product-grid { 
    flex-direction: column; 
    gap: 28px;
    align-items: center; 
  }
  .product-card { 
    width: 95vw;
    max-width: 460px; 
  }
  .gallery-grid { 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 18px; 
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer {
    padding: 44px 24px 20px 24px;
  }
}

@media (max-width: 580px) {
  .hero-content { 
    padding: 20px 8px; 
  }
  .hero-interactive-text { 
    font-size: 1.9rem; 
    letter-spacing: 1px;
  }
  
  .about-section {
    padding: 44px 16px 38px 16px;
  }
  .about-images {
    gap: 14px;
  }
  .about-image-card img {
    height: 160px;
  }
  .about-description {
    font-size: 1.05rem;
  }
  .image-label {
    font-size: 0.85rem;
  }
  .stat-box {
    min-width: 110px;
    padding: 14px 18px;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
  
  .product-image-wrapper {
    height: 220px;
  }
  .product-info h3 {
    font-size: 1.2rem;
  }
  .product-info p {
    font-size: 0.98rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-item {
    aspect-ratio: 16/11;
  }
  .gallery-caption {
    font-size: 0.95rem;
  }
  
  .footer-brand h3,
  .footer-contact h3,
  .footer-nav h3 {
    font-size: 1.2rem;
  }
  .contact-list li {
    font-size: 0.88rem;
  }
  
  .floating-contact-buttons {
    bottom: 20px;
    right: 20px;
  }
  .floating-btn {
    width: 54px;
    height: 54px;
  }
  .floating-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* === COMPANY PROFILE STYLES === */

/* CP Hero */
.cp-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1d23 0%, #2a2f35 100%), url('gambar/vc.jpeg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.cp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}
.cp-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}
.cp-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.cp-hero-content p {
  font-size: 1.3rem;
  color: #ffa726;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.cp-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ===== ABOUT SECTION - COMPANY PROFILE ===== */
.about-section.company-profile {
  background: linear-gradient(135deg, #23242a 80%, #18181b 100%);
  padding: 70px 30px 80px 30px;
}
.about-wrapper {
  max-width: 1260px;
  margin: 0 auto;
}
.about-section.company-profile .section-title {
  text-align: center;
  font-size: 2.6rem;
  color: #ffb366;
  margin-bottom: 3.3rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.8px;
}

/* STAT GRID ATAS - SPASI DIPERBESAR */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.8rem;                    /* Spasi diperbesar dari 1.9rem jadi 2.8rem */
  margin-bottom: 3.8rem;
  max-width: 1200px;              /* Sedikit diperbesar agar tidak terlalu sempit */
  margin-left: auto;
  margin-right: auto;
}
.about-stats-grid .stat-box {
  background: linear-gradient(135deg, rgba(255,179,102,0.13) 0%, rgba(255,179,102,0.06) 100%);
  border: 2px solid rgba(255,179,102,0.20);
  border-radius: 13px;
  padding: 2.1rem 1.4rem 1.6rem 1.4rem;
  box-shadow: 0 5px 18px rgba(0,0,0,0.15);
  text-align: center;
  transition: all 0.28s;
}
.about-stats-grid .stat-box:hover {
  background: linear-gradient(135deg, rgba(255,179,102,0.22) 0%, rgba(255,179,102,0.11) 100%);
  border-color: rgba(255,167,38,0.6);
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(255,167,38,0.22);
}
.about-stats-grid .stat-number {
  font-size: 2.3rem;
  font-weight: 900;
  color: #ffb366;
  margin-bottom: 0.5rem;
  line-height: 1;
  display: block;
}
.about-stats-grid .stat-label {
  font-size: 1.02rem;
  color: #e2d6c2;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.4;
  display: block;
}

/* ABOUT TEXT + IMAGE (Bawah grid) */
.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.2rem;
  align-items: start;
}
.about-text {
  color: #eee;
}
.about-text p {
  font-size: 1.13rem;
  line-height: 1.93;
  margin-bottom: 1.4rem;
  letter-spacing: 0.2px;
  text-align: justify;
}
.about-text .highlight {
  color: #ffb366;
  font-weight: 700;
}
.about-text strong {
  color: #fff;
  font-weight: 600;
}

/* GAMBAR DIPANJANGKAN */
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 520px;                    /* Height dipanjangkan agar sejajar dengan text */
  object-fit: cover;                /* Jaga proporsi gambar */
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.43);
  border: 3px solid rgba(255,179,102,0.28);
  transition: all 0.27s;
}
.about-image img:hover {
  filter: brightness(1.09) contrast(1.08);
  border-color: rgba(255,167,38,0.7);
  transform: scale(1.025);
}

/* RESPONSIVE COMPANY PROFILE ABOUT */
@media (max-width: 1100px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }
  .about-image img {
    height: auto;             /* Reset di mobile */
  }
}
@media (max-width: 650px) {
  .about-section.company-profile {
    padding: 42px 14px 48px 14px;
  }
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .about-section.company-profile .section-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .about-image img {
    max-height: 280px;
    object-fit: cover;
  }
}

/* CP Stats */
.cp-stats {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
  padding: 80px 30px;
  text-align: center;
}
.cp-stats h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.8px;
}
.stats-intro {
  font-size: 1.15rem;
  color: #aaa;
  margin-bottom: 50px;
  font-style: italic;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-card {
  background: linear-gradient(135deg, rgba(255,167,38,0.08) 0%, rgba(255,167,38,0.03) 100%);
  border: 2px solid rgba(255,167,38,0.2);
  border-radius: 16px;
  padding: 36px 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,167,38,0.5);
  box-shadow: 0 12px 32px rgba(255,167,38,0.25);
  background: linear-gradient(135deg, rgba(255,167,38,0.15) 0%, rgba(255,167,38,0.08) 100%);
}
.stat-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffa726;
  line-height: 1;
  display: inline-block;
}
.stat-unit {
  font-size: 2rem;
  font-weight: 700;
  color: #ffa726;
  margin-left: 4px;
}
.stat-label {
  font-size: 1.05rem;
  color: #ddd;
  margin-top: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* CP Vision Mission */
.cp-vision-mission {
  background: #1e2227;
  padding: 80px 30px;
}
.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}
.vm-card {
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  border-radius: 16px;
  padding: 40px 35px;
  border: 2px solid rgba(255,167,38,0.15);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: all 0.3s;
}
.vm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,167,38,0.4);
  box-shadow: 0 12px 36px rgba(255,167,38,0.2);
}
.vm-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.vm-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.vm-card p, .vm-card ul {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #ddd;
  letter-spacing: 0.3px;
}
.vm-card ul {
  list-style: none;
  padding: 0;
}
.vm-card ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 14px;
}
.vm-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffa726;
  font-weight: 900;
  font-size: 1.3rem;
}

/* CP Values */
.core-values-section {
  background: linear-gradient(135deg, #23242a 60%, #1a1d23 100%);
  padding: 80px 0 70px 0;     /* spasi bawah (footer jauh) */
}

.values-wrapper {
  max-width: 1150px;
  margin: 0 auto;
}

.core-values-header {
  text-align: center;
  margin-bottom: 34px;
}

.core-title {
  color: #ffb366;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.core-subtitle {
  color: #ffe1b0;
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
  align-items: stretch;
}

.value-card {
  background: rgba(255,179,102,0.09);
  border: 2px solid rgba(255,179,102,0.18);
  border-radius: 16px;
  padding: 33px 20px 24px 20px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
}
.value-card:hover {
  box-shadow: 0 12px 32px rgba(255,167,38,0.13);
  transform: translateY(-4px) scale(1.03);
  border-color: #ffb366;
  background: rgba(255,179,102,0.13);
}
.value-icon-wrapper {
  margin-bottom: 20px;
}
.value-icon {
  width: 60px;
  height: 60px;
  color: #ffb366;
}
.value-name {
  color: #ffb366;
  font-size: 1.34rem;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.value-divider {
  width: 36px;
  border-bottom: 2px solid #ffd298;
  margin: 0 auto 16px auto;
}
.value-text {
  color: #eee;
  font-size: 1.11rem;
  text-align: center;
  margin-top: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr; }
  .core-values-section { padding: 36px 0 38px 0; }
}

.cp-values {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
  padding: 80px 30px;
  text-align: center;
}
.cp-values h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 50px;
  letter-spacing: 0.8px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.value-card {
  background: rgba(255,167,38,0.05);
  border: 2px solid rgba(255,167,38,0.15);
  border-radius: 14px;
  padding: 35px 25px;
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-6px);
  background: rgba(255,167,38,0.1);
  border-color: rgba(255,167,38,0.4);
  box-shadow: 0 10px 28px rgba(255,167,38,0.2);
}
.value-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}
.value-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffa726;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.value-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive CP */
@media (max-width: 950px) {
  .cp-hero-content h1 {
    font-size: 2.4rem;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media (max-width: 580px) {
  .cp-hero-content h1 {
    font-size: 2rem;
  }
  .stat-number {
    font-size: 2.8rem;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
}


/* === COMPANY VIDEO STYLES === */

/* Video Hero */
.video-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1d23 0%, #2a2f35 100%), url('gambar/vc.jpeg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.video-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.video-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.video-hero-content p {
  font-size: 1.3rem;
  color: #ffa726;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Video Container */
.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Featured Video Section */
.featured-video-section {
  background: #1e2227;
  padding: 80px 30px;
}

.featured-video-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffa726;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.8px;
}

.video-intro {
  font-size: 1.15rem;
  color: #c9c9c9;
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Video Player Wrapper */
.video-player-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.video-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #23272b;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,167,38,0.2);
}

.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Video Info */
.video-info {
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  border-radius: 16px;
  padding: 30px;
  border: 2px solid rgba(255,167,38,0.15);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.video-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.video-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-item {
  display: flex;
  gap: 14px;
}

.detail-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.detail-item strong {
  display: block;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
}

.detail-item p {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.6;
}

/* Video Highlights */
.video-highlights {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
  padding: 80px 30px;
  text-align: center;
}

.video-highlights h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 50px;
  letter-spacing: 0.8px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: rgba(255,167,38,0.05);
  border: 2px solid rgba(255,167,38,0.15);
  border-radius: 14px;
  padding: 35px 25px;
  transition: all 0.3s;
}

.highlight-card:hover {
  transform: translateY(-6px);
  background: rgba(255,167,38,0.1);
  border-color: rgba(255,167,38,0.4);
  box-shadow: 0 10px 28px rgba(255,167,38,0.2);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.highlight-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffa726;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.highlight-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Video CTA */
.video-cta {
  background: #1e2227;
  padding: 80px 30px;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}

.cta-content p {
  font-size: 1.15rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  color: #1a1a1a;
  border: 2px solid #ffa726;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.5);
}

.cta-btn.secondary {
  background: transparent;
  color: #ffa726;
  border: 2px solid #ffa726;
}

.cta-btn.secondary:hover {
  background: rgba(255,167,38,0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.3);
}

/* Responsive Video Page */
@media (max-width: 950px) {
  .video-hero-content h1 {
    font-size: 2.4rem;
  }
  .video-player-wrapper {
    grid-template-columns: 1fr;
  }
  .video-highlights h2,
  .featured-video-section h2,
  .cta-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 580px) {
  .video-hero-content h1 {
    font-size: 2rem;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-btn {
    width: 100%;
  }
}
/* === CERTIFICATIONS STYLES === */

/* Cert Hero */
.cert-hero {
min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1d23 0%, #2a2f35 100%), url('gambar/vc.jpeg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.cert-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.cert-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.cert-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.cert-hero-content p {
  font-size: 1.3rem;
  color: #ffa726;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Cert Container */
.cert-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Cert Intro */
.cert-intro {
  background: #1e2227;
  padding: 80px 30px;
  text-align: center;
}

.cert-intro h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 24px;
  letter-spacing: 0.8px;
}

.intro-text {
  font-size: 1.15rem;
  color: #ddd;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.cert-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,167,38,0.1);
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid rgba(255,167,38,0.3);
  font-weight: 600;
  color: #ffa726;
  font-size: 1rem;
}

.badge-icon {
  font-size: 1.3rem;
  color: #4CAF50;
}

/* Cert Grid Section */
.cert-grid-section {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
  padding: 80px 30px;
}

.cert-grid-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.8px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

/* Cert Card */
.cert-card {
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,167,38,0.15);
  transition: all 0.3s;
}

.cert-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,167,38,0.4);
  box-shadow: 0 12px 40px rgba(255,167,38,0.2);
}

.cert-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #1a1d23;
}

.cert-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s;
}

.cert-card:hover .cert-image img {
  transform: scale(1.05);
}

.cert-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.cert-card:hover .cert-overlay {
  opacity: 1;
}

.view-cert-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(255,167,38,0.4);
}

.view-cert-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,167,38,0.6);
}

/* Cert Info */
.cert-info {
  padding: 30px;
}

.cert-logo-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255,167,38,0.2) 0%, rgba(255,167,38,0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid rgba(255,167,38,0.3);
}

.cert-icon {
  font-size: 2rem;
}

.cert-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.cert-title {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 16px;
  font-weight: 600;
}

.cert-description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cert-details {
  border-top: 1px solid rgba(255,167,38,0.2);
  padding-top: 20px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.detail-label {
  color: #aaa;
  font-weight: 600;
}

.detail-value {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.cert-status {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
}

.cert-status.active {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid #4CAF50;
}

/* Cert Benefits */
.cert-benefits {
  background: #1e2227;
  padding: 80px 30px;
  text-align: center;
}

.cert-benefits h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
  letter-spacing: 0.8px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: rgba(255,167,38,0.05);
  border: 2px solid rgba(255,167,38,0.15);
  border-radius: 14px;
  padding: 35px 25px;
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(255,167,38,0.1);
  border-color: rgba(255,167,38,0.4);
  box-shadow: 0 10px 28px rgba(255,167,38,0.2);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.benefit-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffa726;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.benefit-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Cert CTA */
.cert-cta {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
  padding: 80px 30px;
}

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  padding: 60px 40px;
  border-radius: 16px;
  border: 2px solid rgba(255,167,38,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}

.cta-box p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  color: #1a1a1a;
  border: 2px solid #ffa726;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.5);
}

.cta-btn.secondary {
  background: transparent;
  color: #ffa726;
  border: 2px solid #ffa726;
}

.cta-btn.secondary:hover {
  background: rgba(255,167,38,0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.3);
}

/* Certificate Modal (Lightbox) */
.cert-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s;
}

.close-modal:hover {
  color: #ffa726;
}

.cert-modal-content {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.8);
}

.cert-modal-caption {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
  padding: 0 20px;
}

/* Responsive Certifications */
@media (max-width: 950px) {
  .cert-hero-content h1 {
    font-size: 2.4rem;
  }
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .cert-intro h2,
  .cert-grid-section h2,
  .cert-benefits h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 580px) {
  .cert-hero-content h1 {
    font-size: 2rem;
  }
  .cert-badges {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-btn {
    width: 100%;
  }
  .cta-box {
    padding: 40px 24px;
  }
}
/* === CAPABILITIES STYLES === */

/* Cap Hero */
.cap-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1d23 0%, #2a2f35 100%), url('gambar/vc.jpeg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.cap-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.cap-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.cap-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.cap-hero-content p {
  font-size: 1.3rem;
  color: #ffa726;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Cap Container */
.cap-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Cap Intro */
.cap-intro {
  background: #1e2227;
  padding: 80px 30px;
  text-align: center;
}

.cap-intro h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 24px;
  letter-spacing: 0.8px;
}

.intro-text {
  font-size: 1.15rem;
  color: #ddd;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
}

/* Cap Category Sections */
.cap-category {
  padding: 80px 30px;
}

.cap-category.wood-species {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
}

.cap-category.finishing-options {
  background: #1e2227;
}

.cap-category.metal-work {
  background: linear-gradient(135deg, #1a1d23 0%, #252a33 100%);
}

.cap-category.woven-cord {
  background: #1e2227;
}

/* Category Header */
.category-header {
  text-align: center;
  margin-bottom: 60px;
}

.category-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 16px;
}

.category-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.8px;
}

.category-subtitle {
  font-size: 1.15rem;
  color: #ffa726;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Category Content */
.category-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.category-content.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.category-text {
  color: #ddd;
}

.category-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.capability-list li {
  padding: 14px 0 14px 30px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ccc;
  border-bottom: 1px solid rgba(255,167,38,0.1);
}

.capability-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #ffa726;
  font-weight: 700;
  font-size: 1.2rem;
}

.capability-list li strong {
  color: #ffa726;
  font-weight: 700;
}

.capability-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,167,38,0.1);
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px solid rgba(255,167,38,0.3);
  font-weight: 600;
  color: #ffa726;
  margin-top: 24px;
}

.badge-icon {
  font-size: 1.3rem;
  color: #4CAF50;
}

/* Category Image */
.category-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,167,38,0.2);
  background: #23272b;
}

.category-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.category-image:hover img {
  transform: scale(1.05);
}

/* Cap Stats */
.cap-stats {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
  padding: 80px 30px;
  text-align: center;
}

.cap-stats h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
  letter-spacing: 0.8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.stat-card {
  background: rgba(255,167,38,0.05);
  border: 2px solid rgba(255,167,38,0.15);
  border-radius: 14px;
  padding: 35px 25px;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,167,38,0.1);
  border-color: rgba(255,167,38,0.4);
  box-shadow: 0 10px 28px rgba(255,167,38,0.2);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffa726;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #ccc;
  font-weight: 600;
}

/* Cap CTA */
.cap-cta {
  background: #1e2227;
  padding: 80px 30px;
}

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  padding: 60px 40px;
  border-radius: 16px;
  border: 2px solid rgba(255,167,38,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}

.cta-box p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  color: #1a1a1a;
  border: 2px solid #ffa726;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.5);
}

.cta-btn.secondary {
  background: transparent;
  color: #ffa726;
  border: 2px solid #ffa726;
}

.cta-btn.secondary:hover {
  background: rgba(255,167,38,0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.3);
}

/* Responsive Capabilities */
@media (max-width: 950px) {
  .cap-hero-content h1 {
    font-size: 2.4rem;
  }
  .category-content,
  .category-content.reverse {
    grid-template-columns: 1fr;
  }
  .category-image img {
    height: 300px;
  }
  .cap-intro h2,
  .category-header h2,
  .cap-stats h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 580px) {
  .cap-hero-content h1 {
    font-size: 2rem;
  }
  .category-icon {
    font-size: 3rem;
  }
  .category-image img {
    height: 250px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-btn {
    width: 100%;
  }
  .cta-box {
    padding: 40px 24px;
  }
}

/* === MANUFACTURING PROCESS STYLES === */

/* Process Hero */
.process-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1d23 0%, #2a2f35 100%), url('gambar/vc.jpeg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.process-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.process-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.process-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.process-hero-content p {
  font-size: 1.3rem;
  color: #ffa726;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Process Container */
.process-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Process Intro */
.process-intro {
  background: #1e2227;
  padding: 80px 30px;
  text-align: center;
}

.process-intro h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 24px;
  letter-spacing: 0.8px;
}

.intro-text {
  font-size: 1.15rem;
  color: #ddd;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.process-badge-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,167,38,0.1);
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid rgba(255,167,38,0.3);
  font-weight: 600;
  color: #ffa726;
  font-size: 1rem;
}

.badge-icon {
  font-size: 1.3rem;
  color: #4CAF50;
}

/* Process Timeline Visual */
.process-timeline-visual {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
  padding: 80px 30px;
  text-align: center;
}

.process-timeline-visual h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
  letter-spacing: 0.8px;
}

.timeline-flow {
  display: grid;
  grid-template-columns: repeat(17, auto);  /* 9 step + 8 arrow = 17 elemen */
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;  /* scroll horizontal kalau layar kecil */
  padding: 20px 0;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.flow-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a1a1a;
  box-shadow: 0 4px 16px rgba(255,167,38,0.4);
  transition: all 0.3s;
}
.flow-step:hover .flow-number {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(255,167,38,0.6);
}
.flow-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.flow-arrow {
  font-size: 2rem;
  color: #ffa726;
  font-weight: 700;
}

/* Process Steps Section */
.process-steps-section {
  background: #1e2227;
  padding: 80px 30px;
}

.process-steps-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffa726;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.8px;
}

/* Process Step Card */
.process-step-card {
  position: relative;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  border-radius: 16px;
  padding: 40px;
  border: 2px solid rgba(255,167,38,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: all 0.3s;
}

.process-step-card:hover {
  border-color: rgba(255,167,38,0.4);
  box-shadow: 0 12px 40px rgba(255,167,38,0.2);
}

.step-number-badge {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255,167,38,0.5);
  border: 4px solid #1e2227;
}

.step-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1a1a1a;
}

.step-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
}

.process-step-card.reverse .step-content {
  grid-template-columns: 1.2fr 1fr;
}

.process-step-card.reverse .step-number-badge {
  left: auto;
  right: 40px;
}

/* Step Image */
.step-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,167,38,0.2);
  background: #1a1d23;
}

.step-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.process-step-card:hover .step-image img {
  transform: scale(1.05);
}

/* Step Info */
.step-info {
  color: #ddd;
}

.step-info h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.step-description {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 24px;
  color: #ccc;
}

.step-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-details li {
  padding: 12px 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #bbb;
  border-bottom: 1px solid rgba(255,167,38,0.1);
}

.step-details li:last-child {
  border-bottom: none;
}

.step-details li strong {
  color: #ffa726;
  font-weight: 700;
  margin-right: 8px;
}

/* Process Stats */
.process-stats {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
  padding: 80px 30px;
  text-align: center;
}

.process-stats h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
  letter-spacing: 0.8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.stat-card {
  background: rgba(255,167,38,0.05);
  border: 2px solid rgba(255,167,38,0.15);
  border-radius: 14px;
  padding: 35px 25px;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,167,38,0.1);
  border-color: rgba(255,167,38,0.4);
  box-shadow: 0 10px 28px rgba(255,167,38,0.2);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffa726;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #ccc;
  font-weight: 600;
}

/* Process CTA */
.process-cta {
  background: #1e2227;
  padding: 80px 30px;
}

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  padding: 60px 40px;
  border-radius: 16px;
  border: 2px solid rgba(255,167,38,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}

.cta-box p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  color: #1a1a1a;
  border: 2px solid #ffa726;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.5);
}

.cta-btn.secondary {
  background: transparent;
  color: #ffa726;
  border: 2px solid #ffa726;
}

.cta-btn.secondary:hover {
  background: rgba(255,167,38,0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.3);
}

/* Responsive Process */
@media (max-width: 1200px) {
  .timeline-flow {
    grid-template-columns: repeat(17, auto);
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 20px;
    max-width: 100%;
  }
  
  .flow-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .flow-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 950px) {
  .process-hero-content h1 {
    font-size: 2.4rem;
  }
  .step-content,
  .process-step-card.reverse .step-content {
    grid-template-columns: 1fr;
  }
  .step-number-badge,
  .process-step-card.reverse .step-number-badge {
    left: 40px;
    right: auto;
  }
  .step-image img {
    height: 280px;
  }
  .process-intro h2,
  .process-timeline-visual h2,
  .process-steps-section h2,
  .process-stats h2 {
    font-size: 2.2rem;
  }
  
  /* Timeline tetap horizontal di tablet */
  .timeline-flow {
    grid-template-columns: repeat(17, auto);
    gap: 10px;
  }
}

@media (max-width: 580px) {
  .process-hero-content h1 {
    font-size: 2rem;
  }
  .process-step-card {
    padding: 30px 20px;
  }
  .step-number-badge {
    width: 60px;
    height: 60px;
    top: -15px;
    left: 20px;
  }
  .step-num {
    font-size: 1.5rem;
  }
  .step-image img {
    height: 220px;
  }
  .step-info h3 {
    font-size: 1.6rem;
  }
  
  /* Timeline flow tetap horizontal di mobile, bisa scroll */
  .timeline-flow {
    grid-template-columns: repeat(17, auto);
    gap: 8px;
    justify-content: start;
  }
  
  .flow-number {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .flow-label {
    font-size: 0.7rem;
  }
  
  .flow-arrow {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  .cta-btn {
    width: 100%;
  }
  .cta-box {
    padding: 40px 24px;
  }
}

/* === PRODUCT DETAIL SIMPLE STYLES === */

/* Product Detail Simple */
.product-detail-simple {
  background: #1e2227;
  padding: 100px 30px 80px 30px;
}

.product-simple-container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-simple .product-simple-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Product Gallery Wrapper */
.product-gallery-wrapper {
  width: 100%;
}

/* Product Main Image */
.product-main-image {
  background: #23272b;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255,167,38,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.product-main-image img {
  width: 100%;
  height: auto;                    /* Ganti dari 500px jadi auto */
  min-height: 450px;               /* Minimal tinggi */
  max-height: 600px;               /* Maksimal tinggi */
  object-fit: contain;             /* Ganti dari cover jadi contain */
  display: block;
  transition: opacity 0.3s;
  background: #23272b;             /* Background biar tidak ada white space */
}
/* Thumbnail Gallery (ISI SPACE KOSONG) */
.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: center;
}

.thumb {
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid rgba(255,167,38,0.15);
  cursor: pointer;
  transition: all 0.3s;
  background: #23272b;
  aspect-ratio: 1 / 1;        /* Kotak persegi */
}

.thumb:hover {
  border-color: rgba(255,167,38,0.6);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(255,167,38,0.35);
}

.thumb.active {
  border-color: #ffa726;
  box-shadow: 0 6px 20px rgba(255,167,38,0.6);
  transform: scale(1.05);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product Simple Info */
.product-simple-info h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #ffa726;
  margin-bottom: 12px;
  letter-spacing: 0.8px;
  line-height: 1.2;
}

.product-subtitle {
  font-size: 1.3rem;
  color: #aaa;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.product-desc {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #ccc;
  margin-bottom: 40px;
}

.product-desc p {
  margin-bottom: 16px;
}

/* Product Simple Specs */
.product-simple-specs {
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  border-radius: 12px;
  padding: 30px;
  border: 2px solid rgba(255,167,38,0.15);
  margin-bottom: 40px;
}

.product-simple-specs h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.product-simple-specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-simple-specs li {
  padding: 12px 0;
  font-size: 1.05rem;
  color: #ccc;
  border-bottom: 1px solid rgba(255,167,38,0.1);
  line-height: 1.7;
}

.product-simple-specs li:last-child {
  border-bottom: none;
}

.product-simple-specs strong {
  color: #ffa726;
  font-weight: 700;
  margin-right: 8px;
}

/* Product Simple CTA */
.product-simple-cta {
  display: flex;
  justify-content: center;
}

.inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.inquiry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* Product Components Section */
.product-components-section {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
  padding: 80px 30px;
}

.product-components-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffa726;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.8px;
}

.components-intro {
  font-size: 1.15rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 60px;
}

/* Components Grid */

.components-grid {
  display: flex;
  justify-content: center;   /* posisi di tengah */
  gap: 30px;
  flex-wrap: wrap;
}

.component-card {
  width: 320px;              /* atau 300–340px sesuai desain kamu */
  flex: 0 0 320px;           /* paksa semua kartu sama lebar */
}

.component-card {
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255,167,38,0.15);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: all 0.3s;
}

.component-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,167,38,0.5);
  box-shadow: 0 12px 36px rgba(255,167,38,0.3);
}

.component-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.component-card:hover img {
  transform: scale(1.08);
}

.component-label {
  padding: 20px;
  text-align: center;
}

.component-label h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.component-label p {
  font-size: 0.95rem;
  color: #aaa;
  font-weight: 600;
}

/* Responsive Product Simple */
@media (max-width: 950px) {
  .product-detail-simple .product-simple-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-main-image img {
    min-height: 380px;
    max-height: 500px;
  }
  
  .product-simple-info h1 {
    font-size: 2.4rem;
  }
  
  .components-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-components-section h2 {
    font-size: 2.2rem;
  }
  
  /* Thumbnail tetap 5 kolom di tablet */
  .product-thumbnails {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}

@media (max-width: 580px) {
  .product-main-image img {
    min-height: 280px;
    max-height: 400px;
  }
  
  .product-simple-info h1 {
    font-size: 2rem;
  }
  
  .product-subtitle {
    font-size: 1.1rem;
  }
  
  .components-grid {
    grid-template-columns: 1fr;
  }
  
  .component-card img {
    height: 220px;
  }
  
  .inquiry-btn {
    width: 100%;
    font-size: 1rem;
    padding: 16px 30px;
  }
  
  /* Thumbnail jadi 3 kolom di mobile */
  .product-thumbnails {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  /* Gambar ke-4 dan ke-5 pindah baris baru */
  .thumb:nth-child(4),
  .thumb:nth-child(5) {
    grid-column: span 1;
  }
}

/* === EVENTS & EXHIBITIONS STYLES === */

/* Events Hero */
.events-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1d23 0%, #2a2f35 100%), url('gambar/vc.jpeg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.events-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.events-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.events-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.events-hero-content p {
  font-size: 1.3rem;
  color: #ffa726;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Events Container */
.events-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Events Intro */
.events-intro {
  background: #1e2227;
  padding: 80px 30px;
  text-align: center;
}

.events-intro h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 24px;
  letter-spacing: 0.8px;
}

.intro-text {
  font-size: 1.15rem;
  color: #ddd;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
}

/* Events Section */
.events-section {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
  padding: 80px 30px;
}

.events-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.8px;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
  gap: 40px;
}

/* Event Card */
.event-card {
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255,167,38,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: all 0.3s;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,167,38,0.4);
  box-shadow: 0 12px 40px rgba(255,167,38,0.2);
}

/* Event Image */
.event-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #1a1d23;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  color: #1a1a1a;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(255,167,38,0.5);
}

/* Event Content */
.event-content {
  padding: 30px;
}

.event-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Event Details */
.event-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.event-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #ccc;
}

.detail-icon {
  font-size: 1.2rem;
  width: 24px;
}

.event-detail-item span:last-child {
  font-weight: 600;
}

/* Event Description */
.event-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #bbb;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,167,38,0.1);
}

/* Event Stats */
.event-stats {
  background: #1e2227;
  padding: 80px 30px;
  text-align: center;
}

.event-stats h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 60px;
  letter-spacing: 0.8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.stat-card {
  background: rgba(255,167,38,0.05);
  border: 2px solid rgba(255,167,38,0.15);
  border-radius: 14px;
  padding: 35px 25px;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,167,38,0.1);
  border-color: rgba(255,167,38,0.4);
  box-shadow: 0 10px 28px rgba(255,167,38,0.2);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffa726;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #ccc;
  font-weight: 600;
}

/* Events CTA */
.events-cta {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
  padding: 80px 30px;
}

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  padding: 60px 40px;
  border-radius: 16px;
  border: 2px solid rgba(255,167,38,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}

.cta-box p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  color: #1a1a1a;
  border: 2px solid #ffa726;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.5);
}

.cta-btn.secondary {
  background: transparent;
  color: #ffa726;
  border: 2px solid #ffa726;
}

.cta-btn.secondary:hover {
  background: rgba(255,167,38,0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.3);
}

/* Responsive Events */
@media (max-width: 1200px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 950px) {
  .events-hero-content h1 {
    font-size: 2.4rem;
  }
  
  .events-intro h2,
  .events-section h2,
  .event-stats h2 {
    font-size: 2.2rem;
  }
  
  .event-image {
    height: 250px;
  }
}

@media (max-width: 580px) {
  .events-hero-content h1 {
    font-size: 2rem;
  }
  
  .events-hero-content p {
    font-size: 1.1rem;
  }
  
  .event-content h3 {
    font-size: 1.5rem;
  }
  
  .event-image {
    height: 220px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-btn {
    width: 100%;
  }
  
  .cta-box {
    padding: 40px 24px;
  }
  
  .event-content {
    padding: 24px;
  }
}
/* === CONTACT PAGE STYLES === */

/* Contact Hero */
.contact-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1d23 0%, #2a2f35 100%), url('gambar/vc.jpeg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.contact-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.contact-hero-content p {
  font-size: 1.3rem;
  color: #ffa726;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Contact Container */
.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Contact Main Section */
.contact-main-section {
  background: #1e2227;
  padding: 80px 30px;
}

.contact-main-section .contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Box */
.contact-info-box h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}

.contact-intro {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255,167,38,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,167,38,0.3);
  flex-shrink: 0;
}

.contact-icon-large {
  font-size: 1.5rem;
}

.contact-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffa726;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.contact-text p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
}

/* Quick Contact Buttons */
.quick-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.quick-btn.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border: 2px solid #25D366;
}

.quick-btn.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.quick-btn.email {
  background: transparent;
  color: #ffa726;
  border: 2px solid #ffa726;
}

.quick-btn.email:hover {
  background: rgba(255,167,38,0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.3);
}

/* Contact Form Box */
.contact-form-box {
  background: linear-gradient(135deg, #23272b 0%, #2a2f35 100%);
  border-radius: 16px;
  padding: 40px;
  border: 2px solid rgba(255,167,38,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.contact-form-box h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 0.8px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffa726;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,167,38,0.2);
  border-radius: 8px;
  font-size: 1rem;
  color: #fff;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffa726;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(255,167,38,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #777;
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ffa726 0%, #ffb855 100%);
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.5);
}

.btn-arrow {
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform 0.3s;
}

.submit-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Map Section */
.contact-map-section {
  background: linear-gradient(135deg, #252a33 0%, #1a1d23 100%);
  padding: 80px 30px;
}

.map-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.map-container h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffa726;
  margin-bottom: 16px;
  letter-spacing: 0.8px;
}

.map-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* Map Embed */
.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255,167,38,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  margin-bottom: 30px;
}

.map-embed iframe {
  display: block;
}

/* Map Info */
.map-info {
  background: rgba(255,167,38,0.08);
  border: 2px solid rgba(255,167,38,0.2);
  border-radius: 12px;
  padding: 24px 30px;
  max-width: 900px;
  margin: 0 auto;
}

.map-note {
  font-size: 1.05rem;
  color: #ddd;
  line-height: 1.8;
  text-align: left;
}

.map-note strong {
  color: #ffa726;
  font-weight: 700;
}

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto 40px auto;
  color: #f5f5f5;
}

.faq-container h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
  color: #ffb347;
}

.faq-subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: #cccccc;
  font-size: 1.5rem;
}

.faq-accordion {
  margin-top: 10px;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-question {
  width: 100%;
  padding: 16px 18px;
  background: #222;
  color: #f5f5f5;
  border: 1px solid #444;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}

.faq-question:hover {
  background: #2b2b2b;
}

.faq-icon {
  font-size: 1.2rem;
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #171717;
  border: 1px solid #333;
  border-top: none;
  border-radius: 0 0 8px 8px;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 14px 18px 18px 18px;
  font-size: 1.1rem;
  color: #e0e0e0;
}

/* State when active */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


/* Responsive Contact */
@media (max-width: 950px) {
  .contact-hero-content h1 {
    font-size: 2.4rem;
  }
  
  .contact-main-section .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-form-box {
    padding: 30px;
  }
  
  .map-container h2 {
    font-size: 2.2rem;
  }
  
  .map-embed iframe {
    height: 400px;
  }
}

@media (max-width: 580px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-hero-content p {
    font-size: 1.1rem;
  }
  
  .contact-info-box h2,
  .contact-form-box h2 {
    font-size: 2rem;
  }
  
  .contact-form-box {
    padding: 24px;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .map-embed iframe {
    height: 350px;
  }
  
  .map-info {
    padding: 20px;
  }
  
  .submit-btn {
    width: 100%;
  }
}

