:root {
  --primary-blue: #7098c0;
  --primary-orange: #b55527;
  --dark-orange: #603111;
  --light-gray: #cad5e0;
  --dark-gray: #3b495c;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  background: linear-gradient(
    to right,
    var(--primary-blue),
    black,
    var(--dark-orange)
  );
}

cursor {
  width: 0;
}

/*Preloader*/

/*Custom Size*/
.fs-6 {
  font-size: 0.875rem !important;
}

.fs-7 {
  font-size: 0.7rem !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 4px;
}

/* Navbar styles */
.navbar-custom {
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background-color: rgba(0, 0, 0, 0.144) !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.nav-link-custom {
  position: relative;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s;
}

.nav-link-custom:hover {
  color: white !important;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 75%;
  background-color: var(--dark-gray);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.nav-link-custom::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 50%;
  background-color: var(--light-gray);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s 0.1s;
}

.nav-link-custom:hover::after,
.nav-link-custom:hover::before {
  transform: scaleX(1);
}

.btn-login {
  text-decoration: none;
  background-color: var(--primary-orange);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.5s ease;
}

.btn-login:hover {
  transform: scale(1.05);
  text-decoration: none;
  background-color: #d16736;
  color: white;
  border-radius: 6px;
  font-weight: 600;
}

/* Mobile menu styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 55;
  opacity: 0;
  transition: opacity 0.3s;
  display: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  display: block;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 56;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-panel.active {
  transform: translateX(0);
}

#mobileMenuButton {
  border: none !important; /* hilangkan border */
  background: transparent; /* hilangkan background */
  box-shadow: none; /* pastikan tidak ada bayangan */
}

.mobile-menu-link {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-menu-link:hover {
  color: var(--primary-orange);
}

.menu-icon {
  position: absolute;
  top: 50%; /* naik sedikit dari tengah (default 50%) */
  left: 0%; /* geser ke kiri (default 50%) */
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 1.5rem;
  padding-right: 1rem;
}

/* Default: bars terlihat, X disembunyikan */
.bars-icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.times-icon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.8);
}

/* Saat menu terbuka */
.menu-open .bars-icon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.8);
}

.menu-open .times-icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

/* Hero section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.scroll-button-container {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
}

.scroll-circle {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
}
.scroll-circle-text.parallax-spin {
  will-change: transform; /* Optimasi performa */
}

.scroll-button {
  width: 48px;
  height: 48px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
  transform: none !important;
}

.scroll-button.parallax-spin {
  will-change: transform; /* Optimasi performa */
}

.scroll-button:hover {
  transform: scale(1.1);
}

.scroll-arrow {
  position: absolute;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid var(--dark-orange);
  border-right: 2px solid var(--dark-orange);
  transform: rotate(45deg);
  transform: rotate(45deg) !important;
}

.scroll-arrow.parallax-spin {
  will-change: none; /* Optimasi performa */
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* About section */
.about-section {
  position: relative;
  background: linear-gradient(
    to right,
    var(--primary-blue),
    black,
    var(--dark-orange)
  );
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.about-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  background: linear-gradient(to top, transparent, black);
  pointer-events: none;
}

.spinning-icon {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.1s linear;
  /* Hapus animation: spin 20s linear infinite; */
}

/* Tambahkan class untuk parallax effect */
.spinning-icon.parallax-spin {
  will-change: transform; /* Optimasi performa */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-content {
  position: relative;
  z-index: 10;
  padding-top: 10rem;
}

.about-title {
  font-size: 3.75rem;
  font-weight: bold;
  color: var(--primary-orange);
}

.about-title span {
  color: #ccc;
}

.about-cta-button {
  background-color: var(--dark-orange);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: background-color 0.3s;
}

.about-cta-button:hover {
  background-color: #53321c;
}

/* Company Profile section */
.company-profile-section {
  background: linear-gradient(
    to right,
    var(--primary-blue),
    black,
    var(--dark-orange)
  );
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.company-profile-title {
  font-size: 3.75rem;
  font-weight: 600;
}

.company-profile-title span {
  color: var(--primary-blue);
}

.company-video-container {
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16/9;
}

.company-cta-button {
  background-color: var(--primary-orange);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.company-cta-button:hover {
  background-color: #a96334;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Services section */
.services-section {
  background: linear-gradient(
    to right,
    var(--primary-blue),
    black,
    var(--dark-orange)
  );
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.services-title {
  font-size: 3.75rem;
  font-weight: 600;
}

.services-title span {
  color: var(--primary-blue);
}

.services-container {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.services-vertical-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.service-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  color: white;
}

.service-image-container {
  position: relative;
  width: 100%;
  height: 400px;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.service-description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .service-image {
  opacity: 0.2;
}

.service-card:hover .service-description {
  opacity: 1;
}

.service-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0;
}

/* Portfolio section */
.portfolio-section {
  background: linear-gradient(
    to right,
    var(--primary-blue),
    black,
    var(--dark-orange)
  );
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.portfolio-title {
  font-size: 3.75rem;
  font-weight: 600;
}

.portfolio-title span {
  color: var(--primary-orange);
}

/* Portfolio section */
.portfolio-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  grid-auto-rows: 325px; /* Tinggi tetap untuk semua item */
}

.portfolio-item {
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  height: 325px;
}

/* Efek scale saja saat hover */
.portfolio-item:hover {
  transform: scale(1.05) !important; /* Scale 5% lebih besar */
  z-index: 10 !important;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 0.5rem;
  }

  .portfolio-item {
    height: 180px;
  }

  .portfolio-item:hover {
    transform: scale(1.03); /* Scale lebih kecil di mobile */
  }
}

@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 0.5rem;
  }

  .portfolio-item {
    height: 180px;
  }
}

.portfolio-cta-button {
  background-color: var(--primary-orange);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.portfolio-cta-button:hover {
  background-color: #a96334;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Pricing section */
.pricing-section {
  background: linear-gradient(
    to right,
    var(--primary-blue),
    black,
    var(--dark-orange)
  );
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.pricing-title {
  font-size: 3.75rem;
  font-weight: bold;
}

.pricing-title span {
  color: var(--primary-blue);
}

.pricing-card {
  height: auto;
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  z-index: 5; /* naik ke atas supaya tidak ketimpa */
}

.badge-pos {
  top: -2rem;
  right: -2.5rem;
}

@media (max-width: 768px) {
  .badge-pos {
    top: -2rem;
    right: -2rem;
  }
}

@media (max-width: 576px) {
  .badge-pos {
    top: -2rem;
    right: -1.5rem;
  }
}

.best-price-badge {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b00 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  }
}

/* Untuk memastikan badge tidak tertutup */
.pricing-card.position-relative {
  overflow: visible;
}

.pricing-card-blue {
  background-color: rgba(112, 152, 192, 0.2);
}

.pricing-card-orange {
  background-color: rgba(181, 85, 39, 0.2);
}

.pricing-card-best {
  background: linear-gradient(
    to right,
    rgba(112, 152, 192, 0.2),
    rgb(0, 0, 0, 0.2),
    rgba(181, 85, 39, 0.2)
  );
}

.pricing-feature {
  display: flex;
  align-items: center; /* sejajarkan vertikal */
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem; /* beri jarak antar item */
}

.pricing-feature span {
  flex-shrink: 0; /* icon tidak mengecil */
  font-size: 1.2rem; /* samakan ukuran semua icon */
  width: 1.5rem; /* lebar fix biar rata kiri */
  text-align: center; /* icon ditengah */
}

.pricing-feature p {
  margin: 0; /* hilangkan default margin */
  font-size: 0.875rem; /* rapikan ukuran teks */
  line-height: 1.4; /* jarak antar baris */
}

.pricing-feature-icon-blue {
  color: #f97316; /* orange-400 */
}

.pricing-feature-icon-orange {
  color: #60a5fa; /* blue-400 */
}

.pricing-cta-section {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-cta-button {
  background-color: #f97316; /* orange-400 */
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}

.pricing-cta-button1 {
  background-color: #7098c0;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  border: none; /* Hapus border default */
  outline: none;
}

.pricing-cta-button:hover {
  background-color: #ea580c; /* orange-500 */
}

/* FAQ section */
.faq-section {
  background: linear-gradient(
    to right,
    var(--primary-blue),
    black,
    var(--dark-orange)
  );
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.faq-title {
  font-size: 3.75rem;
  font-weight: bold;
}

/* FAQ Item hover & active */
.faq-item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;

  /* smooth transition */
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.faq-item:hover {
  transform: scale(1.05) !important; /* zoom lembut */
  background-color: rgba(255, 255, 255, 0.15); /* sedikit lebih terang */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* shadow naik */
}

.faq-item h3 {
  font-size: 1.1rem !important;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: white;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* kasih cukup besar biar muat konten */
  opacity: 1;
  margin-top: 0.75rem;
}

.faq-answer.show {
  opacity: 1;
}

.faq-card {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: white;
  display: flex;
  flex-direction: column;
}

.faq-card-button-blue {
  background-color: var(--primary-blue);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: background-color 0.3s;
  text-align: center;
}

.faq-card-button-blue:hover {
  background-color: #5a7fa6;
}

.faq-card-button-orange {
  background-color: var(--primary-orange);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: background-color 0.3s;
  text-align: center;
}

.faq-card-button-orange:hover {
  background-color: #9e461f;
}

/* Client section */
.client-section {
  background: linear-gradient(
    to right,
    var(--primary-blue),
    black,
    var(--dark-orange)
  );
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

.client-title {
  font-size: 3.75rem;
  font-weight: bold;
}

.client-title span {
  color: var(--primary-blue);
}

.client-logo-container {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.client-logo-container:hover {
  transform: scale(1.05);
}

.client-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.client-logo-container:hover .client-logo {
  filter: grayscale(0%);
}

.client-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: linear-gradient(to bottom, transparent, black);
  pointer-events: none;
  z-index: 10;
}

.hero-gradient-overlay {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 6rem;
  background: linear-gradient(to bottom, transparent, black);
  pointer-events: none;
  z-index: 10;
}

/* Footer */
.footer {
  background-color: black;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.footer h4 {
  font-size: 1rem;
  color: white;
}

.footer p {
  text-align: justify;
}

.footer-top {
  border-bottom: 1px solid #374151;
}

.footer-logo {
  width: 2.5rem;
  height: auto;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

.social-icon {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.social-icon:hover {
  color: white;
}

/* Animation classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Product Dropdown Styles */
.product-dropdown {
  min-width: 320px;
  padding: 0.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(45, 55, 72, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-item {
  padding: 0.75rem 1rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
}

.product-item:last-child {
  border-bottom: none;
}

.product-item:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.product-item-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
}

.product-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-info {
  flex: 1;
}

.product-title {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.product-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.3;
}

.dropdown-menu {
  display: block; /* jangan pakai display:none */
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 0.3s;
  background-color: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  pointer-events: none;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.dropdown-item:hover {
  color: var(--primary-orange);
  background: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
  }
  .mobile-menu-panel {
    width: 70%;
    max-width: 400px;
    align-items: flex-start; /* dari center → kiri */
    padding-left: 20px; /* kasih jarak biar rapi */
    text-align: left; /* teks rata kiri */
  }

  .mobile-menu-link {
    text-align: left; /* link rata kiri */
    width: 100%; /* biar full baris */
  }

  .mobile-dropdown,
  .mobile-dropdown-toggle,
  .mobile-dropdown-menu {
    text-align: left; /* dropdown juga rata kiri */
    width: 100%;
  }

  .mobile-dropdown-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 10px 0;
    width: 100%;
    cursor: pointer;
  }

  .mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  .mobile-dropdown-menu.show {
    max-height: 500px;
    opacity: 1;
  }

  .mobile-login-btn {
    display: block;
    margin-top: 25px;
    padding: 12px 0;
    width: 50%;
    max-width: 150px;
    background-color: var(--primary-orange);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    transition: background-color 0.3s ease;
  }

  .mobile-login-btn:hover {
    background-color: #e65c00;
  }

  .about-title,
  .company-profile-title,
  .services-title,
  .portfolio-title,
  .pricing-title,
  .faq-title,
  .client-title {
    font-size: 2.5rem;
  }

  .hero-video-container,
  .hero-video-container .w-100.h-100 {
    height: 100vh; /* paksa penuh layar */
  }

  .hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh !important; /* trik agar rasio 16:9 selalu nutup tinggi layar */
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none; /* biar ga ke-klik */
  }

  .service-image-container {
    height: 280px;
  }

  .service-divider {
    display: none;
  }

  .service-card .mb-3,
  .service-card .mt-3 {
    order: 2; /* pindahkan judul ke bawah */
    text-align: center !important; /* biar rapi tengah di mobile */
    margin-top: 0.75rem; /* kasih jarak kecil */
  }

  .service-card .service-image-container {
    order: 1; /* gambar tetap di atas */
  }

  .service-card h3 {
    text-align: center !important;
  }

  .portfolio-grid {
    grid-auto-rows: 250px;
  }

  .footer-top .row {
    display: flex;
    flex-wrap: wrap;
  }

  /* Hai Motion & Our Services -> 50% */
  .footer-top .col-md-6.col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Customer Support & Contact Us -> 50% */
  .footer-top .col-md-6.col-lg-2,
  .footer-top .col-md-6.col-lg-2 + .col-md-6.col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-top .footer-support {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }

  .footer-top .footer-support > div {
    flex: 0 0 97%; /* masing-masing ambil ± setengah */
    max-width: 100%;
  }

  .footer-top .footer-support h4,
  .footer-top .footer-support p {
    text-align: left;
  }

  /* Reset untuk logo/company info & headquarter agar tetap full */
  .footer-top .col-md-6.col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Optional: tengahin teks di mobile */
  .footer-top h4,
  .footer-top ul,
  .footer-top p {
    text-align: justify;
  }

  /* Mobile Social Icons */
  .mobile-social-icons {
    justify-content: flex-start;
    /* biar rata kiri */
  }

  .mobile-social-icons .social-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
  }

  .mobile-social-icons .social-icon:hover {
    color: var(--primary-orange);
  }
}

@media (max-width: 640px) {
  .about-title,
  .company-profile-title,
  .services-title,
  .portfolio-title,
  .pricing-title,
  .faq-title,
  .client-title {
    font-size: 2rem;
  }

  .service-image-container {
    height: 220px;
  }

  .portfolio-grid {
    grid-auto-rows: 200px;
  }

  .client-logo-container {
    width: 140px;
    height: 140px;
  }

  .client-logo {
    width: 100px;
    height: 100px;
  }

  hr {
    opacity: 0;
  }
}
