/*
 * PT Menara Agung Mandiri - Custom Style Sheet
 * Brand Colors:
 * - Primary Blue: #062F5A
 * - Primary Gold: #BE8A1D
 * - Background: #FFFFFF
 * - Dark Text: #1A1A1A
 * - Light Gray: #F8F9FA
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-blue: #062f5a;
  --primary-blue-rgb: 6, 47, 90;
  --primary-gold: #be8a1d;
  --primary-gold-rgb: 190, 138, 29;
  --primary-gold-dark: #a57615;
  --dark-text: #1a1a1a;
  --light-gray: #f8f9fa;
  --mid-gray: #e9ecef;
  --white: #ffffff;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base resets & typography */
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Tambahkan ini tepat di bawah body */
html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  font-weight: 700;
}

/* Utility Styles & Typography */
.text-gold {
  color: var(--primary-gold) !important;
}

.bg-blue-dark {
  background-color: var(--primary-blue) !important;
}

.bg-light-gray {
  background-color: var(--light-gray) !important;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.section-title-wrapper {
  margin-bottom: 50px;
}

.section-subtitle {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--primary-gold);
  display: inline-block;
  position: relative;
  padding-left: 30px;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--primary-gold);
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-top: 10px;
  position: relative;
  font-weight: 800;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Button Custom Styles */
.btn-gold {
  background-color: var(--primary-gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  border: 2px solid var(--primary-gold);
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--primary-gold);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  border: 2px solid var(--white);
  transition: var(--transition-smooth);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

.btn-outline-blue {
  background-color: transparent;
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  border: 2px solid var(--primary-blue);
  transition: var(--transition-smooth);
}

.btn-outline-blue:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* 1. Header & Sticky Navbar */
.navbar-custom {
  padding: 15px 0;
  background-color: transparent;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-custom.scrolled {
  background-color: rgba(6, 47, 90, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(190, 138, 29, 0.2);
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
}

.brand-subtext {
  font-size: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-gold);
  display: block;
  margin-top: 4px;
}

.navbar-custom .nav-link {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 16px;
  background-color: var(--primary-gold);
  transition: var(--transition-smooth);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary-gold) !important;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: calc(100% - 32px);
}

.navbar-toggler-custom {
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  outline: none;
}

.navbar-toggler-custom:focus {
  box-shadow: none;
}

/* 2. Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax effect */
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 992px) {
  .hero-section {
    background-attachment: scroll; /* Disable parallax for mobile performance */
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 47, 90, 0.9) 0%, rgba(6, 47, 90, 0.7) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-title span {
  color: var(--primary-gold);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.scroll-down:hover {
  color: var(--primary-gold);
}

.scroll-down i {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* 3. Tentang Kami Section */
.about-img-wrapper {
  position: relative;
}

.about-img-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-img-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 4px;
  border-left: 5px solid var(--primary-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.about-img-overlay h4 {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 800;
}

.about-img-overlay p {
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Vision Mission Card Styles */
.about-mission-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.about-mission-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background-color: rgba(190, 138, 29, 0.1);
  color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

/* 4. Keunggulan Section (Cards) */
.feature-card {
  background-color: var(--white);
  border: 1px solid var(--mid-gray);
  padding: 40px 30px;
  border-radius: 8px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(6, 47, 90, 0.08);
  border-color: rgba(190, 138, 29, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
  background-color: var(--primary-gold);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: var(--light-gray);
  color: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary-blue);
  color: var(--primary-gold);
  transform: rotateY(180deg);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

/* 5. Layanan Utama Section */
.service-nav-tabs {
  border-bottom: none !important;
  justify-content: center;
  margin-bottom: 50px;
  gap: 15px;
}

.service-nav-link {
  background-color: var(--light-gray) !important;
  color: var(--primary-blue) !important;
  border: 1px solid var(--mid-gray) !important;
  border-radius: 4px !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  padding: 15px 30px !important;
  transition: var(--transition-smooth) !important;
}

.service-nav-link.active,
.service-nav-link:hover {
  background-color: var(--primary-blue) !important;
  color: var(--white) !important;
  border-color: var(--primary-blue) !important;
}

.service-nav-link.active {
  box-shadow: 0 8px 20px rgba(6, 47, 90, 0.15);
}

.service-tab-content {
  background-color: var(--white);
  border-radius: 8px;
}

.service-detail-card {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  border-left: 4px solid var(--primary-blue);
  transition: var(--transition-smooth);
}

.service-detail-card:hover {
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left-color: var(--primary-gold);
  transform: translateX(5px);
}

.service-detail-icon {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.service-detail-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-list-ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-list-ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #555;
}

.service-list-ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-size: 0.8rem;
}

/* 6. Statistik Counter Section */
.stats-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  color: var(--white);
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(6, 47, 90, 0.9);
  z-index: 1;
}

.stats-container {
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* 7. Galeri Proyek (Masonry & Lightbox) */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--mid-gray);
  color: var(--dark-text);
  padding: 8px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

/* Masonry Layout */
.gallery-grid {
  position: relative;
  width: 100%;
}

.gallery-item {
  margin-bottom: 30px;
  display: block; /* To override hidden filter states gracefully */
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.gallery-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.gallery-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(6, 47, 90, 0.9) 0%, rgba(6, 47, 90, 0.3) 70%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-box:hover img {
  transform: scale(1.1);
}

.gallery-box:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.gallery-title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.gallery-zoom-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  align-self: flex-start;
}

.gallery-zoom-btn:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  transform: scale(1.1);
}

/* 8. Timeline Perusahaan */
.timeline-container {
  position: relative;
  padding: 30px 0;
}

/* Vertical line down the center */
.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--mid-gray);
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item::after {
  content: '';
  display: table;
  clear: both;
}

/* The circles on the timeline */
.timeline-badge {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  border: 4px solid var(--primary-gold);
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-badge {
  background-color: var(--primary-gold);
  color: var(--white);
  border-color: var(--primary-blue);
  transform: translateX(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .timeline-badge {
    left: 20px;
    transform: translateX(-50%);
  }
  .timeline-item:hover .timeline-badge {
    transform: translateX(-50%) scale(1.1);
  }
}

/* Timeline Cards */
.timeline-panel {
  width: 45%;
  float: left;
  background-color: var(--white);
  border: 1px solid var(--mid-gray);
  padding: 25px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.timeline-panel::before {
  content: '';
  position: absolute;
  top: 15px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-right: 1px solid var(--mid-gray);
  border-top: 1px solid var(--mid-gray);
  transform: rotate(45deg);
}

.timeline-panel:hover {
  box-shadow: 0 15px 30px rgba(6, 47, 90, 0.05);
  border-color: rgba(190, 138, 29, 0.2);
}

/* Alternate Left/Right Panels */
.timeline-item:nth-child(even) .timeline-panel {
  float: right;
}

.timeline-item:nth-child(even) .timeline-panel::before {
  left: -10px;
  right: auto;
  border-left: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray);
  border-right: none;
  border-top: none;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .timeline-panel {
    width: calc(100% - 50px);
    float: right !important;
  }
  .timeline-panel::before {
    left: -10px !important;
    right: auto !important;
    border-left: 1px solid var(--mid-gray) !important;
    border-bottom: 1px solid var(--mid-gray) !important;
    border-right: none !important;
    border-top: none !important;
    transform: rotate(45deg) !important;
  }
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.timeline-panel p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}

/* 9. Testimoni Section */
.testimonial-section {
  background-color: var(--light-gray);
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin: 15px;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: rgba(190, 138, 29, 0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.8;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-gold);
  background-color: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
}

.testimonial-user-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.05rem;
  margin: 0 0 3px 0;
}

.testimonial-user-role {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

.testimonial-stars {
  color: var(--primary-gold);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.carousel-indicators-custom {
  position: relative;
  margin-top: 30px;
  bottom: auto;
}

.carousel-indicators-custom [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(6, 47, 90, 0.3);
  border: none;
  margin: 0 6px;
  transition: var(--transition-smooth);
}

.carousel-indicators-custom .active {
  background-color: var(--primary-gold);
  transform: scale(1.25);
}

/* 10. Blog / Artikel Section */
.blog-card {
  background-color: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(6, 47, 90, 0.08);
  border-color: rgba(190, 138, 29, 0.2);
}

.blog-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.08);
}

.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  border-left: 3px solid var(--primary-gold);
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: var(--transition-smooth);
}

.blog-title a {
  color: var(--primary-blue);
  text-decoration: none;
}

.blog-title a:hover {
  color: var(--primary-gold);
}

.blog-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-gold);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-smooth);
}

.blog-link:hover {
  color: var(--primary-blue);
  gap: 10px;
}

/* 11. Call To Action (CTA) Section */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  color: var(--white);
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 47, 90, 0.95) 0%, rgba(6, 47, 90, 0.85) 100%);
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* 12. Kontak Section */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background-color: rgba(6, 47, 90, 0.05);
  color: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(6, 47, 90, 0.1);
}

.contact-info-item:hover .contact-info-icon {
  background-color: var(--primary-blue);
  color: var(--primary-gold);
  transform: translateY(-5px);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-info-text {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
}

.contact-info-text a {
  color: #555;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-info-text a:hover {
  color: var(--primary-gold);
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--mid-gray);
}

.contact-form .form-control {
  padding: 12px 18px;
  border-radius: 4px;
  border: 1px solid var(--mid-gray);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(6, 47, 90, 0.1);
}

.contact-form label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

/* Map Embed */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--mid-gray);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 13. Footer Section */
.footer-section {
  background-color: #0c1b2b;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--primary-gold);
}

.footer-section h4 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-gold);
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-social-btn:hover {
  background-color: var(--primary-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--primary-gold);
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-contact-list i {
  color: var(--primary-gold);
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: var(--primary-gold);
}

@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
    margin-top: 10px;
  }
}

/* Toast Message Styling (Simple JS Feedbacks) */
.toast-container {
  z-index: 9999 !important;
}

.custom-toast {
  background-color: var(--primary-blue) !important;
  color: var(--white) !important;
  border-left: 4px solid var(--primary-gold) !important;
}

/* ==================== Responsive Fixes ==================== */

/* Navbar - brand & hamburger */
@media (max-width: 1199px) {
  .navbar-brand-custom {
    max-width: calc(100% - 60px);
  }
  .brand-text {
    font-size: 1rem !important;
  }
  .brand-subtext {
    font-size: 0.5rem !important;
  }
  .navbar-toggler-custom {
    background-color: rgba(6, 47, 90, 0.5);
    border-radius: 4px;
    padding: 4px 8px;
  }
}

/* Stats & CTA - disable parallax on mobile/tablet */
@media (max-width: 992px) {
  .stats-section {
    background-attachment: scroll;
  }
  .cta-section {
    background-attachment: scroll;
  }
}

/* Stats number font size */
@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }

  /* Contact form padding */
  .contact-form-wrapper {
    padding: 25px 20px;
  }

  /* Service tab buttons */
  .service-nav-link {
    padding: 10px 18px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 1199px) {
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background-color: rgba(6, 47, 90, 0.97);
    padding: 10px 15px 20px 15px;
    margin-top: 10px;
    border-radius: 0 0 8px 8px;
    border-top: 1px solid rgba(190, 138, 29, 0.3);
  }
}
@media (max-width: 1199px) {
  .navbar-toggler-custom[aria-expanded='true'] .fa-bars::before {
    content: '\f00d'; /* font awesome xmark */
  }
}

@media (max-width: 1199px) {
  .navbar-logo {
    width: 55px !important;
    height: 55px !important;
    max-width: 55px !important;
    max-height: 55px !important;
  }
}
