@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-color: #0b1f4a;
  /* Deep navy blue */
  --secondary-color: #c10841;
  /* Arion Paramita Red */
  --accent-color: #ff3366;
  /* Brighter red for hover states */
  --light-bg: #f8f9fa;
  --dark-bg: #121212;
  --text-color: #333333;
  --text-light: #6c757d;
  --white: #ffffff;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Navbar Modernization */
.navbar {
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1030;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(11, 31, 74, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: var(--white) !important;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1px;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.navbar-brand span {
  color: var(--secondary-color);
}

.navbar-brand-text {
  color: var(--light-bg);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: -30px;
  line-height: 1.2;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: rgba(255, 255, 255, 0.8) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -8px;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.nav-link:hover::after {
  width: 100%;
  opacity: 1;
}

.navbar .dropdown-toggle::after {
  display: none;
}

.navbar .dropdown-toggle:hover::after,
.navbar .dropdown-toggle.show::after {
  display: none;
}

/* Button Styling */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(193, 8, 65, 0.3);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: none;
}

.hero-slide.active {
  opacity: 1;
  animation: heroZoom 8s ease-in-out forwards;
}

/* Slide yang sedang keluar: tetap di posisi zoom agar tidak ada kedutan */
.hero-slide.leaving {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease-in-out;
  animation: none;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* Dark overlay on top of slides */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
  z-index: 1;
  pointer-events: none;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 80px;
  /* offset for fixed navbar */
}

.hero-eyebrow {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 14px;
  opacity: 0.9;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 580px;
  opacity: 0.92;
  line-height: 1.7;
}

/* Slider Dot Navigation */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.3);
}

.hero-dot:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.4);
}

/* Scroll Down Indicator */
.hero-scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.hero-scroll-down:hover {
  color: #fff;
}

.hero-scroll-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-scroll-icon {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* Section Padding */
.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  bottom: -10px;
  left: 0;
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* About Section */
.about-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

/* Business Grid */
.bg-light-custom {
  background-color: var(--light-bg);
}

.business-section {
  padding: 80px 0 100px;
}

.business-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  height: 100%;
  border: none;
  position: relative;
  top: 0;
}

.business-card:hover {
  top: -10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.business-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.business-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.business-card:hover .business-img-wrapper img {
  transform: scale(1.1);
}

.business-body {
  padding: 25px;
}

.business-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-top: -55px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
  transition: background 0.3s ease;
}

.business-card:hover .business-icon {
  background: var(--secondary-color);
}

.business-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3673 100%);
  color: var(--white);
  padding: 80px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.stat-text {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* News Section */
.news-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--light-bg);
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-image {
  transform: scale(1.1);
}

.news-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.news-title a:hover {
  color: var(--secondary-color);
}

.news-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-date i {
  color: var(--secondary-color);
}

.news-excerpt {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  font-size: 0.95rem;
}

.btn-read-more {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  margin-top: auto;
}

.btn-read-more:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px;
}

.footer-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

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

/* Page Header for inner pages */
.page-header {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  margin-bottom: 60px;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 31, 74, 0.85) 0%, rgba(11, 31, 74, 0.6) 100%);
}

.page-header-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  width: 100%;
  padding-top: 60px;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
  padding: 0;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item.active {
  color: var(--white);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

/* Utilities */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.text-secondary-custom {
  color: var(--secondary-color) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar {
    background: var(--primary-color);
    padding: 15px 0;
  }

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

/* ── Contact Page ── */
.contact-map-wrapper {
  height: 400px;
}

@media (max-width: 768px) {
  .contact-map-wrapper {
    height: 260px;
  }

  /* Prevent business-icon negative margin from breaking layout */
  .contact-info-card .business-icon {
    margin-top: 0 !important;
    flex-shrink: 0;
  }

  /* Section padding tighter on mobile */
  .section-padding {
    padding: 60px 0;
  }

  /* Page header */
  .page-header {
    height: 260px;
    margin-bottom: 30px;
  }

  .page-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-map-wrapper {
    height: 220px;
  }
}

/* Organization Structure Styles */
.navbar .dropdown-menu {
  background: rgba(255, 255, 255, 0.98) !important;
  border: none !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.navbar .dropdown-menu::before,
.navbar .dropdown-menu::after {
  display: none !important;
}

.navbar .dropdown-menu .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:focus,
.navbar .dropdown-menu .dropdown-item:active {
  color: var(--primary-color);
  font-weight: 500;
  background-color: transparent !important;
  border: none !important;
  padding: 0.65rem 1.2rem;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
  color: var(--secondary-color);
  background-color: transparent !important;
  text-decoration: none;
  text-decoration-color: var(--secondary-color);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  font-weight: 600;
}

.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:active {
  color: var(--secondary-color);
  font-weight: 600;
}

.org-nav {
  padding: 0;
  margin: 0;
}

.org-nav li {
  margin: 0 10px;
}

.org-nav a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.org-nav a:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.org-grid {
  margin-top: 10px;
  justify-content: center;
}

.org-card {
  border: 1px solid rgba(11, 31, 74, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 25px 20px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  animation: fadeInUp 0.8s ease both;
}

.org-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.org-photo {
  width: 300px;
  height: 350px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  border: 5px solid var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: block;
  flex-shrink: 0;
}

.org-card h5 {
  font-size: 1rem;
  margin: 14px 0 6px;
  color: var(--primary-color);
}

.org-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 991px) {
  .org-card {
    min-height: 230px;
  }
}

@media (max-width: 768px) {
  .org-photo {
    width: 150px;
    height: 200px;
    object-fit: cover;
    object-position: center top;
  }

  .org-card {
    padding: 15px 12px;
    min-height: 200px;
  }

  .org-card h5 {
    font-size: 0.85rem;
  }

  .org-card p {
    font-size: 0.8rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   FOUNDATION PAGE — Dedicated Styles
   ============================================================ */

/* ── Intro Section ── */
.foundation-intro {
  padding: 90px 0 70px;
}

.foundation-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.foundation-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.14);
  transition: transform 0.5s ease;
}

.foundation-img:hover {
  transform: scale(1.02);
}

.foundation-img-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(193, 8, 65, 0.35);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.foundation-badge-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}

.foundation-badge-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.9;
  text-transform: uppercase;
}

/* ── Typography ── */
.foundation-section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.foundation-section-title-center {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 16px;
}

.foundation-divider {
  width: 50px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
  margin-bottom: 24px;
}

.foundation-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.8;
  margin-bottom: 16px;
}

.foundation-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 14px;
  text-align: justify;
}

.foundation-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Activities Section ── */
.foundation-activities {
  padding: 80px 0;
  background: var(--light-bg);
}

.foundation-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  height: 100%;
}

.foundation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.11);
}

.foundation-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #1a3673);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
  transition: background 0.3s ease;
}

.foundation-card:hover .foundation-card-icon {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.foundation-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.foundation-card-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ── KOPARMITA Section ── */
.foundation-koparmita {
  padding: 90px 0;
}

.foundation-koparmita-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.foundation-stat {
  display: flex;
  flex-direction: column;
}

.foundation-stat-year {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.foundation-stat-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.foundation-stat-divider {
  width: 1px;
  height: 48px;
  background: #ddd;
}

.foundation-koparmita-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3673 100%);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
}

.foundation-koparmita-box-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.foundation-koparmita-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foundation-koparmita-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.foundation-koparmita-list li:last-child {
  border-bottom: none;
}

.foundation-koparmita-list li i {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .foundation-img-badge {
    bottom: -16px;
    right: -10px;
    padding: 14px 18px;
  }

  .foundation-badge-year {
    font-size: 1.6rem;
  }

  .foundation-intro {
    padding: 70px 0 80px;
  }
}

@media (max-width: 576px) {

  .foundation-section-title,
  .foundation-section-title-center {
    font-size: 1.8rem;
  }

  .foundation-koparmita-box {
    padding: 28px;
  }

  .foundation-img-badge {
    right: 0;
  }
}

/* ============================================================
   ABOUT PAGE — Dedicated Styles
   ============================================================ */

/* ── Intro Section ── */
.about-intro-section {
  padding: 90px 0 80px;
}

.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.13);
  transition: transform 0.5s ease;
  display: block;
}

.about-main-img:hover {
  transform: scale(1.02);
}

.about-founded-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(193, 8, 65, 0.35);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.about-badge-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}

.about-badge-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.9;
  text-transform: uppercase;
}

.about-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.about-tagline-light {
  color: rgba(255, 255, 255, 0.7);
}

.about-intro-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-intro-divider {
  width: 50px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
  margin-bottom: 24px;
}

.about-intro-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-intro-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 28px;
  text-align: justify;
}

.about-intro-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.about-stat-divider {
  width: 1px;
  height: 44px;
  background: #ddd;
  flex-shrink: 0;
}

/* ── Timeline Section ── */
.about-timeline-section {
  padding: 80px 0 90px;
  background: var(--light-bg);
}

.about-section-title-center {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 16px;
}

.about-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
  transform: translateX(-50%);
  border-radius: 2px;
}

.about-timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 40px;
  position: relative;
}

.about-timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

/* Center dot */
.about-timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 24px;
  width: 16px;
  height: 16px;
  background: var(--secondary-color);
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px var(--secondary-color);
  z-index: 1;
}

.about-timeline-year {
  position: absolute;
  top: 18px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  background: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  padding: 3px 12px;
  white-space: nowrap;
  z-index: 2;
}

.about-timeline-item:not(.right) .about-timeline-year {
  right: calc(50% + 20px);
  transform: translateX(50%);
}

.about-timeline-item.right .about-timeline-year {
  left: calc(50% + 20px);
  transform: translateX(-50%);
}

.about-timeline-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.04);
  max-width: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.about-timeline-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.about-timeline-text {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ── Visi Misi Section ── */
.about-vismis-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3673 100%);
}

.about-vismis-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 44px 36px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
  height: 100%;
}

.about-vismis-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.about-vismis-icon {
  width: 72px;
  height: 72px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(193, 8, 65, 0.4);
}

.about-vismis-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.about-vismis-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .about-intro-title {
    font-size: 2rem;
  }

  .about-founded-badge {
    bottom: -14px;
    right: -10px;
    padding: 14px 18px;
  }

  .about-badge-year {
    font-size: 1.6rem;
  }

  .about-intro-section {
    padding: 70px 0 90px;
  }

  /* Collapse timeline to single column */
  .about-timeline::before {
    left: 20px;
    transform: none;
  }

  .about-timeline-item,
  .about-timeline-item.right {
    padding-right: 0;
    padding-left: 56px;
    justify-content: flex-start;
  }

  .about-timeline-item::after {
    left: 12px;
    transform: none;
  }

  .about-timeline-item:not(.right) .about-timeline-year,
  .about-timeline-item.right .about-timeline-year {
    left: 36px;
    right: auto;
    transform: none;
    top: -12px;
    font-size: 0.78rem;
  }

  .about-timeline-card {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .about-intro-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .about-stat-divider {
    display: none;
  }

  .about-vismis-card {
    padding: 30px 22px;
  }

  .about-section-title-center {
    font-size: 1.8rem;
  }

  .about-founded-badge {
    right: 0;
  }
}

/* ============================================================
   SERVICES SECTION — Dedicated Styles
   ============================================================ */

.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--white));
}

.services-section .section-title {
  color: var(--primary-color);
}

.service-card {
  background: rgb(42, 67, 122);
  border-radius: 18px;
  padding: 40px 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transition: all 0.4s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.service-card:hover {
  top: -10px;
  background: rgb(42, 67, 122);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::after {
  width: 60%;
}

.service-body {
  width: 100%;
}

.service-icon {
  width: 80px;
  height: 80px;
  /* background: rgba(255, 255, 255, 0.05); */
  /* color: var(--secondary-color); */
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
  border: 2px solid var(--secondary-color);
  /* Red stroke/border */
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(193, 8, 65, 0.3);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--white);
}

/* ============================================================
   BUSINESS DETAIL PAGE — Uniform Image Heights
   ============================================================ */

.business-detail-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.business-detail-img:hover {
  transform: scale(1.025);
}

@media (max-width: 991px) {
  .business-detail-img {
    height: 245px;
  }
}

@media (max-width: 576px) {
  .business-detail-img {
    height: 180px;
  }
}

/* ============================================================
   LOGO SLIDER SECTION (Marquee)
   ============================================================ */
.logo-slider-section {
  padding: 80px 0;
  background-color: var(--light-bg);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-top: -100px;
}

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

.logo-slider-eyebrow {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.logo-ticker-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.logo-ticker-wrapper::before,
.logo-ticker-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-ticker-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.logo-ticker-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.logo-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.logo-ticker-track:hover {
  animation-play-state: paused;
}

.logo-ticker-item {
  width: 200px;
  padding: 0 30px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo-ticker-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.logo-ticker-item a {
  display: block;
}

.logo-ticker-item:hover {
  transform: scale(1.05);
}

.logo-ticker-item:hover img {
  filter: grayscale(0%) opacity(1);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-ticker-item {
    width: 150px;
    padding: 0 20px;
  }

  .logo-ticker-item img {
    max-height: 60px;
  }
}