/* Global Styles */
body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #0b1e3f;
  scroll-behavior: smooth;
}

/* Navbar Modernization */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding-top: 16px;
  padding-bottom: 16px;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #0b1e3f !important;
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  color: #4a5568 !important;
  margin: 0 8px;
  padding: 8px 0 !important;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0b1e3f !important;
}

/* Nav Link Underline Effect */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f5b841;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Modern Dropdown Menu */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); /* Premium soft shadow */
  padding: 12px;
  margin-top: 12px;
  animation: fadeUp 0.3s ease forwards;
  display: none; /* Required for animation to work on hover/toggle */
  min-width: 240px;
}

.dropdown-menu.show {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: #4a5568;
  transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #f8f9fa;
  color: #0b1e3f;
  transform: translateX(4px); /* Subtle shift */
  font-weight: 600;
}

.dropdown-divider {
  margin: 8px 0;
  border-top: 1px solid #f0f0f0;
}

/* Custom Dropdown Toggle Icon */
.nav-link.dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 0.5em; /* Define space between text and icon */
  white-space: nowrap; /* Prevent line wrapping */
}

.nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0 !important; /* Controlled by gap */
  vertical-align: middle;
  content: "";
  border-top: 0.4em solid; /* Large arrow */
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  transition: transform 0.3s ease;
}

.nav-link.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg); /* Rotate when open */
}

/* Modern Button Styles */
.btn-primary {
  background-color: #0b1e3f;
  border: none;
  transition: all 0.3s ease;
  padding: 10px 24px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(11, 30, 63, 0.2);
}

.btn-primary:hover {
  background-color: #152d5a;
  box-shadow: 0 8px 20px rgba(11, 30, 63, 0.3);
  transform: translateY(-2px);
}

.btn-outline-dark:hover {
  background-color: #0b1e3f;
  color: #fff;
}

.highlight {
  color: #f5b841;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-weight: 700;
  color: #0b1e3f;
}

.section-title p {
  color: #555;
}

/* Card Styles */
.card {
  border: 1px solid #eee;
  border-radius: 14px;
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 36px;
  color: #f5b841;
  margin-bottom: 12px;
}

/* Footer */
footer {
  background-color: #0b1e3f;
  color: #fff;
  padding: 60px 0 20px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Service Card */
.service-card {
  border-radius: 14px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #f5b841;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Team Section Styles */
.team-section {
  padding: 80px 0;
  background-color: #f9fafc;
}

.team-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.team-img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}

.team-content {
  padding: 25px;
}

.team-name {
  font-weight: 700;
  color: #0b1e3f;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.team-position {
  color: #f5b841;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.team-desc {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

.division-badge {
  background: linear-gradient(135deg, #f5b841, #e4a92f);
  color: #0b1e3f;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.team-modal-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-section-mobile {
    margin-top: 20px;
  }
}

/* Opsi dengan padding di container gambar */
@media (max-width: 991.98px) {
  #tentang .order-lg-2 img {
    margin-bottom: 1.5rem;
  }
}

/* Untuk semua ukuran layar (opsional) */
#tentang .col-lg-6.order-lg-2 {
  padding-bottom: 1rem;
}

/* Sesuaikan lebar teks dengan gambar di Hero Section */
@media (max-width: 991.98px) {
  .py-5 .order-lg-1 {
    padding: 1.5rem;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-top: 1rem;
  }
}

/* Atau alternatif dengan border yang sama persis seperti gambar */
@media (max-width: 991.98px) {
  .py-5 .order-lg-1 {
    padding: 1.5rem;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    margin-top: 1rem;
  }
}

/* Opsi dengan padding yang lebih spesifik */
@media (max-width: 991.98px) {
  .py-5 .order-lg-1 {
    padding: 1.5rem 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    margin-top: 1rem;
  }
}

/* WhatsApp Button Styles */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff;
}

/* Maps Section Styles */
.maps-section {
  padding: 60px 0;
  background-color: #f9fafc;
}

.maps-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* CTA Box */
.cta-box {
  background-color: #fffbea;
  border: 1px solid #fceec0;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 1100px;
}

.feature-box {
  background-color: #ffffff;
  border: 1px solid #f9e9a2;
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Testimoni */
#testimoni .card {
  border-radius: 16px;
  transition: all 0.3s ease;
}

#testimoni .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.silhouette-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.silhouette-img {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.highlight {
  background: linear-gradient(135deg, #0b1e3f, #f5b841);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-light:hover {
  color: #f5b841 !important;
  transition: color 0.3s ease;
}

.text-warning {
  color: #f5b841 !important;
}

/* Support Card */
.support-card {
  border: 1px solid #f1e9c8;
  background: #fffef9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.support-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  background: #ffffff;
  border-color: #f5d98a;
}

/* Team Page Specific Styles */
.team-hero {
  background: linear-gradient(135deg, #0b1e3f 0%, #1a2f57 100%);
  color: white;
  padding: 100px 0 80px;
}

.team-skills {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0b1e3f;
  color: white;
  border-color: #0b1e3f;
}

/* Contact Page Specific Styles */
.btn-whatsapp {
  background-color: #25d366;
  color: white;
  border: none;
  transition: all 0.3s;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
}

.contact-hero {
  background: linear-gradient(135deg, #0b1e3f 0%, #1a2f57 100%);
  color: white;
  padding: 100px 0 80px;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  font-size: 3rem;
  color: #f5b841;
  margin-bottom: 1rem;
}

.contact-info {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.service-option {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-option:hover {
  border-color: #f5b841;
  transform: translateY(-3px);
}

.service-option.active {
  border-color: #f5b841;
  background: #fffbea;
}

.whatsapp-cta {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.office-hours {
  background: #fffbea;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #f5b841;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* About Page Specific Styles */
.about-hero {
  background: linear-gradient(135deg, #0b1e3f 0%, #1a2f57 100%);
  color: white;
  padding: 100px 0 80px;
}

.value-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
  font-size: 3rem;
  color: #f5b841;
  margin-bottom: 1rem;
}

.service-detail-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid #f5b841;
}

.location-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mission-vision-card {
  background: linear-gradient(135deg, #fffbea 0%, #fff 100%);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid #fceec0;
}

.partnership-section {
  background-color: #f9fafc;
}

/* Service Page Specific Styles (Common) */
.service-hero {
  background: linear-gradient(135deg, #0b1e3f 0%, #1a2f57 100%);
  color: white;
  padding: 100px 0 80px;
}

.service-feature-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  border-left: 4px solid #f5b841;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  font-size: 3rem;
  color: #f5b841;
  margin-bottom: 1rem;
}

.process-step {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: 2px solid #f0f0f0;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #f5b841;
  color: #0b1e3f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Service: Enterprise Advisory */
.collaboration-badge {
  background: linear-gradient(135deg, #f5b841, #e4a92f);
  color: #0b1e3f;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Service: Estate Property Consultant */
.location-badge {
  background: linear-gradient(135deg, #f5b841, #e4a92f);
  color: #0b1e3f;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.property-type-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.property-type-card:hover {
  border-color: #f5b841;
  transform: translateY(-5px);
}

.area-highlight {
  background: #fffbea;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #f5b841;
}

/* Service: Design & Build */
.project-type-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.project-type-card:hover {
  border-color: #f5b841;
  transform: translateY(-5px);
}

.portfolio-gallery {
  border-radius: 16px;
  overflow: hidden;
  height: 250px;
  position: relative;
}

.portfolio-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-gallery:hover img {
  transform: scale(1.05);
}

/* Service: Trade & Cross-Border */
.country-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.country-card:hover {
  border-color: #f5b841;
  transform: translateY(-5px);
}

.partnership-badge {
  background: linear-gradient(135deg, #f5b841, #e4a92f);
  color: #0b1e3f;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.service-area {
  background: #fffbea;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #f5b841;
}
