/* ========== CSS VARIABLES ========== */
:root {
  --color-primary: #0d253f;
  --color-primary-dark: #0a1e32;
  --color-surface: #f5f7fa;
  --color-accent: #ffb74d;
  --text: #0f1724;
  --muted: #6b7280;
  --white: #ffffff;
  --radius: 12px;
  --ff-heading: 'Poppins', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(13, 37, 63, 0.08);
  --shadow-md: 0 4px 16px rgba(13, 37, 63, 0.12);
  --shadow-lg: 0 8px 32px rgba(13, 37, 63, 0.16);
  --branches-card-height: 600px;
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.preloader-active {
  overflow: hidden;
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d253f 0%, #0a1e32 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-title {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  animation: fadeInUp 0.8s ease;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== UTILITIES ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 16px;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--color-primary);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  border: 2px solid var(--color-primary);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.section-title {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.125rem;
  margin-bottom: 48px;
  max-width: 600px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  z-index: 1000;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  border-radius: 0;
  max-width: 100%;
}

.navbar.transparent {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  box-shadow: none;
  margin: 0;
  border-radius: 0;
  max-width: 100%;
}

.navbar.transparent .nav-link {
  color: var(--white);
}

.navbar.transparent .nav-link:hover,
.navbar.transparent .nav-link.active {
  color: var(--white);
}

.navbar.transparent .nav-link.active::after {
  background: var(--white);
}

.navbar.transparent .mobile-toggle {
  color: var(--white);
}

.navbar.scrolled {
  background: var(--color-primary) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 32px rgba(13, 37, 63, 0.3), 0 2px 8px rgba(13, 37, 63, 0.2) !important;
  margin: 20px auto !important;
  border-radius: 12px !important;
  max-width: 1200px !important;
  left: 50% !important;
  right: auto !important;
  width: min(1200px, calc(100% - 100px)) !important;
  transform: translateX(-50%);
  padding: 0;
  border: none !important;
  outline: none !important;
}

.navbar.scrolled .nav-link {
  color: var(--white);
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--white);
}

.navbar.scrolled .nav-link.active::after {
  background: var(--white);
}

.navbar.scrolled .mobile-toggle {
  color: var(--white);
}

.navbar.scrolled .nav-container {
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
}

.navbar.scrolled .nav-container {
  padding: 14px 24px;
  gap: 32px;
  border: none;
  outline: none;
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
  height: 80px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
}

.navbar.scrolled .logo {
  height: 60px;
  border: none !important;
  outline: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.logo-img {
  height: 100%;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
  margin: 0;
}

.navbar.scrolled .logo-img {
  max-width: 240px;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  justify-content: center;
  transition: gap 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-menu {
  gap: 32px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login {
  padding: 10px 24px;
  background: var(--white);
  color: var(--color-primary);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.navbar.scrolled .btn-login {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.navbar.transparent .btn-login {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.navbar.transparent .btn-login:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .btn-login {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .btn-login:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 18px;
  border-radius: 999px;
}

.navbar.scrolled .nav-link {
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link.active {
  background: rgba(13, 37, 63, 0.08);
  box-shadow: 0 8px 20px rgba(13, 37, 63, 0.12);
}

.navbar.transparent .nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-link.active {
  color: var(--color-primary-dark);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(13, 37, 63, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text);
  padding: 8px;
  transition: all 0.3s ease;
}

.nav-email-mobile {
  display: none;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 200px 0 80px;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.5) 0%, rgba(10, 30, 50, 0.4) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  color: var(--white);
  max-width: 1200px;
  margin-left: 0;
  padding-left: 0;
  width: 100%;
  margin-top: 0;
  padding-top: 40px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease;
}

.hero-title-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--white);
  flex: 1;
  min-width: 500px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description strong {
  color: var(--white);
  font-weight: 700;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-stat-item .stat-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-item .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-stats .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stats .hero-buttons .btn-primary,
.hero-stats .hero-buttons .btn-secondary {
  min-width: 200px;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

/* ========== ABOUT HERO SECTION ========== */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 0;
  margin-bottom: 0;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.75) 0%, rgba(10, 30, 50, 0.65) 50%, rgba(13, 37, 63, 0.8) 100%);
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero-content {
  color: var(--white);
  text-align: center;
  max-width: 900px;
  width: 100%;
  animation: fadeInUp 0.8s ease;
}

.about-hero-subtitle {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.about-hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  border-radius: 2px;
}

.about-hero-title {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px 0;
  color: var(--white);
  animation: fadeInUp 0.8s ease 0.2s both;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-title .title-line-1 {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.95;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-title .title-line-2 {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.about-hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.about-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease 0.6s both;
  flex-wrap: wrap;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.about-stat-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

.about-stat-number::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  border-radius: 2px;
}

.about-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-scroll-indicator,
.about-hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: fadeInUp 0.8s ease 0.8s both;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  width: fit-content;
  text-align: center;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
  margin: 0 auto;
  pointer-events: none;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  text-align: center;
  display: block;
  white-space: nowrap;
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== HISTORY SECTION ========== */
.history-section {
  padding: 0 0 100px 0 !important;
  margin-top: 0 !important;
  background: var(--color-surface);
  position: relative;
}

.history-header-section {
  background: var(--color-primary);
  padding: 80px 0 60px;
  margin-bottom: 80px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.history-section.content-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.history-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.history-main-title {
  font-family: var(--ff-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.history-decorative-left,
.history-decorative-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  max-width: 300px;
}

.history-decorative-right {
  flex-direction: row-reverse;
}

.history-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.history-circle-outer {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 0 0 50px rgba(255, 255, 255, 0.6);
}

.history-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.6) 100%);
  position: relative;
  max-width: 200px;
}

.history-line-left {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.history-line-right {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.history-underline {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  margin: 20px auto 0;
  position: relative;
  z-index: 2;
}

.history-subtitle {
  color: var(--color-text-light);
}

.history-main-content {
  max-width: 1100px;
  margin: 0 auto;
}

.history-overview {
  margin-bottom: 32px;
}

/* Intro Card */
.history-intro-card {
  background: linear-gradient(135deg, #0d2540 0%, #0a3a71 100%);
  border-radius: 24px;
  padding: 48px 56px;
  box-shadow: 0 15px 50px rgba(5, 15, 35, 0.4);
  text-align: left;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.history-intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(5, 15, 35, 0.5);
}

.history-intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
  opacity: 0.6;
  z-index: 0;
}

.history-intro-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  z-index: 0;
}

.intro-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.history-year-badge {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #0d2540;
  padding: 12px 28px;
  background: #ffffff;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.intro-card-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent);
}

.history-intro-title {
  font-family: var(--ff-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.history-intro-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Details Section */
.history-details {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.history-detail-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(13, 37, 63, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 37, 63, 0.06);
}

.history-detail-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.history-detail-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13, 37, 63, 0.16);
}

.history-detail-item:hover::before {
  opacity: 1;
}

.history-detail-item:last-child {
  margin-bottom: 0;
}

.detail-number {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.2;
}

.detail-title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.history-detail-item:hover .detail-title {
  color: var(--color-primary);
}

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

/* Stats Section */
.history-stats-wrapper {
  background: linear-gradient(135deg, #0d2540 0%, #0a3a71 100%);
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(5, 15, 35, 0.4);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-stats-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(5, 15, 35, 0.5);
}

.history-stats-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
  opacity: 0.6;
  z-index: 0;
}

.history-stats-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  z-index: 0;
}

.history-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.history-stat-item {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.history-stat-item:hover {
  transform: translateY(-3px);
}

.stat-value {
  font-family: var(--ff-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: -1px;
}

.stat-value::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

.stat-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  text-align: center;
}

.stat-desc-line {
  display: block;
  line-height: 1.5;
}

.history-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 100px 0;
  background: var(--color-primary);
}

/* ========== ABOUT COMPANY SECTION ========== */
.about-company-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-company-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(13, 37, 63, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(13, 37, 63, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 0;
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2), 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

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

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.1) 0%, rgba(13, 37, 63, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.about-image:hover .about-image-overlay {
  opacity: 1;
}

.about-image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--color-primary);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(13, 37, 63, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.about-image:hover .about-image-badge {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(13, 37, 63, 0.4);
}

.badge-year {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--ff-heading);
  letter-spacing: 1px;
}

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

.about-content {
  padding-left: 20px;
}

.about-content-header {
  margin-bottom: 32px;
}

.about-section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(13, 37, 63, 0.08);
  border-radius: 20px;
}

.about-section-title {
  font-family: var(--ff-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
}

.about-title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 2px;
  margin-top: 8px;
  position: relative;
}

.about-title-underline::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(13, 37, 63, 0.3);
}

.about-text-wrapper {
  margin-bottom: 32px;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 20px;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-highlight-box {
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.05) 0%, rgba(13, 37, 63, 0.02) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.about-highlight-box:hover {
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.08) 0%, rgba(13, 37, 63, 0.04) 100%);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(13, 37, 63, 0.1);
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.highlight-content strong {
  color: var(--color-primary);
  font-weight: 700;
}

.about-title {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  font-size: 2.5rem;
}

.about-title .title-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  position: relative;
}

.about-title .title-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.about-title .title-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.about-title .title-text {
  position: relative;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 10px;
}

.about-title .title-text::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  border-radius: 2px;
}

.about-text {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.8;
}

/* Read More link styling untuk section about */
.about-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin-top: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--ff-body);
}

.about-read-more:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.about-read-more i {
  transition: transform 0.3s ease;
}

.about-read-more:hover i {
  transform: translateX(4px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.achievement-cta {
  position: relative;
  padding: 80px 0;
  background: #0869a6;
  color: #ffffff;
  overflow: hidden;
}

.achievement-cta .jarallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.achievement-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 25, 54, 0.9) 0%, rgba(8, 105, 166, 0.85) 60%, rgba(8, 105, 166, 0.75) 100%);
  z-index: 0;
}

.achievement-cta-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.achievement-cta-text {
  max-width: 760px;
}

.achievement-cta-eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.75;
}

.achievement-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-transform: lowercase;
}

.achievement-cta-subtitle {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 4px 0 20px;
  text-transform: lowercase;
}

.achievement-cta-description {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  opacity: 0.9;
}

.achievement-cta-action {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.achievement-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 18px;
  background: #ffffff;
  color: #0d2540;
  font-weight: 600;
  text-transform: lowercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.achievement-cta-button i {
  color: #0d2540;
}

.achievement-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .achievement-cta {
    padding: 60px 0;
  }

  .achievement-cta-wrapper {
    flex-direction: column;
    padding: 0;
  }

  .achievement-cta-title {
    font-size: 2rem;
  }

  .achievement-cta-subtitle {
    font-size: 1.75rem;
  }

  .achievement-cta-description {
    font-size: 1rem;
  }

  .achievement-cta-action {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .achievement-cta-wrapper {
    gap: 24px;
  }

  .achievement-cta-title {
    font-size: 1.75rem;
  }

  .achievement-cta-subtitle {
    font-size: 1.5rem;
  }

  .achievement-cta-button {
    width: 100%;
    justify-content: center;
  }
}

.stat-card {
  text-align: center;
  padding: 24px;
  background: var(--color-surface);
  border-radius: 12px;
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ========== PARTNERS SECTION ========== */
.partners {
  padding: 80px 0;
  background: var(--white);
}

.partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners-title {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  font-size: 2.5rem;
  justify-content: center;
}

.partners-title .title-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  position: relative;
  max-width: 200px;
}

.partners-title .title-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(13, 37, 63, 0.5);
}

.partners-title .title-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(13, 37, 63, 0.5);
}

.partners-title .title-text {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 10px;
}

.partners-title .title-text::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: 2px;
}

.partners-slider-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.partners-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.partners-slider-wrapper::before,
.partners-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.partners-slider-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-slider-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-slider {
  display: flex;
  gap: 32px;
  width: max-content;
}

.partners-slider-top {
  animation: scrollLeft 50s linear infinite;
}

.partners-slider-bottom {
  animation: scrollRight 50s linear infinite;
}

.partners-slider:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  height: 110px;
  width: 180px;
  flex-shrink: 0;
  overflow: hidden;
}

.partner-item:hover {
  transform: translateY(-5px);
}

.partner-item img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-item:hover img {
  transform: scale(1.1);
}

/* ========== BRANCHES SECTION ========== */
.branches {
  padding: 100px 0;
  background: var(--color-primary-dark);
}

.branches-header {
  text-align: center;
  margin-bottom: 60px;
}

.branches-title {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  font-size: 2.5rem;
  justify-content: center;
}

.branches-title .title-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  position: relative;
  max-width: 200px;
}

.branches-title .title-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.branches-title .title-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.branches-title .title-text {
  position: relative;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 10px;
}

.branches-title .title-text::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  border-radius: 2px;
}

.branches-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.branches-map-section,
.branches-description-section {
  display: flex;
  flex-direction: column;
}

.section-label {
  font-family: var(--ff-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section label untuk branches section */
.branches .section-label {
  color: var(--white);
}

/* Section subtitle untuk branches section */
.branches .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* Styling teks untuk description container di branches section */
.branches .description-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.branches .description-title {
  color: var(--white);
}

.branches .description-info p {
  color: var(--white);
}

.branches .description-info p i {
  color: var(--white);
}

.branches .description-info p span {
  color: var(--white);
}

.branches .description-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.branches-map-container {
  width: 100%;
  flex: 1;
}

.branches-map {
  position: relative;
  width: 100%;
  height: var(--branches-card-height);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: var(--color-surface);
  border: 2px solid rgba(11, 105, 163, 0.2);
}

.description-container {
  flex: 1;
  background: rgba(11, 105, 163, 0.05);
  border-radius: 12px;
  padding: 24px;
  height: var(--branches-card-height);
  min-height: var(--branches-card-height);
  overflow-y: auto;
  overflow-x: hidden;
  border: 2px solid rgba(11, 105, 163, 0.1);
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}

.description-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 500px;
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
}

.branch-description-content {
  animation: fadeIn 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

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

.description-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 24px;
  background: var(--color-surface);
  position: relative;
}

.description-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
}

.description-image-landscape {
  height: 250px;
}

.description-image-landscape img {
  object-fit: cover;
  object-position: center center;
}

.description-title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.description-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.description-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.description-info p i {
  color: var(--color-primary);
  font-size: 1.125rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.description-info p span {
  color: var(--color-text);
}

.description-cta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 105, 163, 0.1);
}

.location-cta-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(13, 37, 63, 0.2);
  width: 100%;
}

.location-cta-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 37, 63, 0.3);
}

.location-cta-btn i {
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.location-cta-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.location-cta-label {
  font-size: 0.95rem;
  font-weight: 600;
}

.location-cta-address {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.4;
}

/* ========== INFO PARALLAX SECTION ========== */
.info-parallax {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.info-parallax-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
  background: transparent;
}

.info-parallax-content {
  width: 100%;
  margin: 0 auto;
  color: var(--white);
}

.info-parallax-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: start;
}

.info-parallax-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-parallax-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.info-parallax-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.info-parallax-item-title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  line-height: 1.2;
}

.info-parallax-item-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  margin: 0;
}

.map-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-svg-container svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.branch-marker {
  position: absolute;
  z-index: 10;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: auto;
}

.marker-btn {
  background: var(--color-primary);
  border: 3px solid var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(13, 37, 63, 0.3);
  padding: 0;
}

.marker-btn:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(13, 37, 63, 0.4);
  background: var(--color-primary-dark);
}

.marker-btn svg {
  width: 24px;
  height: 24px;
}

.marker-btn svg path {
  fill: var(--white);
}

.marker-btn.active {
  background: #ff6b35;
  border-color: #ff6b35;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
  transform: scale(1.15);
}

.marker-btn.active:hover {
  background: #e55a2b;
  border-color: #e55a2b;
}

.marker-btn.active svg path {
  fill: var(--white);
}

/* Floating card removed - using description panel instead */

/* ========== SERVICES SECTION ========== */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-title {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.services-header .section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
}

/* Services Slider */
.services-slider-wrapper {
  position: relative;
  width: 100%;
  height: 750px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 37, 63, 0.2);
  margin-bottom: 60px;
}

.services-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-slide.active {
  opacity: 1;
  visibility: visible;
}

.service-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.85) 0%, rgba(10, 58, 113, 0.75) 100%);
  display: flex;
  align-items: center;
  padding: 80px;
}

.service-slide-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 64px 72px;
  max-width: 650px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-slide-icon {
  font-size: 5.5rem;
  margin-bottom: 32px;
  display: inline-block;
  animation: bounceIn 0.8s ease 0.2s both;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.service-slide-title {
  font-family: var(--ff-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: #0d2540;
  margin-bottom: 28px;
  line-height: 1.2;
}

.service-slide-text {
  font-size: 1.25rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 40px;
}

.service-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #0d2540 0%, #0a3a71 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(13, 37, 63, 0.3);
}

.service-slide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 37, 63, 0.4);
  background: linear-gradient(135deg, #0a3a71 0%, #0d2540 100%);
}

/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: #0d2540;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.slider-nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.slider-nav-prev {
  left: 24px;
}

.slider-nav-next {
  right: 24px;
}

/* Dots Indicator */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

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

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot.active {
  background: #ffffff;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

/* ========== SERVICES HERO SECTION ========== */
.services-hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.services-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.services-hero-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.75) 0%, rgba(10, 30, 58, 0.75) 100%);
  z-index: 2;
}

.services-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.services-hero-container {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.services-hero-content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.services-hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 56px 40px;
  max-width: 520px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 5;
  display: flex;
  flex-direction: column;
  transform: none;
  transition: none;
}

.services-hero-card-title {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d253f;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  min-height: 3.5rem;
  transition: opacity 0.3s ease;
}

.services-hero-card-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 28px;
  min-height: 3.5rem;
  transition: opacity 0.3s ease;
}

.services-hero-card-cta {
  display: inline-block;
  color: #2563eb;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.services-hero-card-cta:hover {
  color: #1d4ed8;
  transform: translateX(4px);
}

.services-hero-navigation-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 20px;
}

.services-hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  flex: 1;
}

.services-hero-arrows {
  display: flex;
  flex-direction: row;
  gap: 12px;
  z-index: 6;
}

.services-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-hero-dot.active {
  background: #0d253f;
  width: 24px;
  border-radius: 4px;
}

.services-hero-nav {
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  color: #2563eb;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 4px 8px;
}

.services-hero-nav:hover {
  color: #1d4ed8;
}

/* Responsive Services Hero */
@media (max-width: 768px) {
  .services-hero-section {
    min-height: 500px;
  }

  .services-hero-container {
    min-height: 500px;
    padding: 40px 0;
  }

  .services-hero-content-wrapper {
    justify-content: center;
  }

  .services-hero-card {
    padding: 40px 32px 36px;
    max-width: 100%;
    margin: 0 auto;
  }

  .services-hero-navigation-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .services-hero-arrows {
    flex-direction: row;
    justify-content: center;
  }

  .services-hero-card-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .services-hero-card-text {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .services-hero-card-cta {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .services-hero-nav {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .services-hero-arrows {
    bottom: 30px;
    right: 20px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .services-hero-section {
    min-height: 450px;
  }

  .services-hero-container {
    min-height: 450px;
    padding: 30px 0;
  }

  .services-hero-content-wrapper {
    padding: 0 16px;
  }

  .services-hero-card {
    padding: 32px 24px 28px;
  }

  .services-hero-navigation-wrapper {
    gap: 12px;
  }

  .services-hero-arrows {
    flex-direction: row;
    gap: 10px;
  }

  .services-hero-nav {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .services-hero-arrows {
    bottom: 24px;
    right: 16px;
    gap: 8px;
  }

  .services-hero-card-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .services-hero-card-text {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .services-hero-card-cta {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .services-hero-dots {
    margin-top: 20px;
  }

  .services-hero-nav {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

/* ========== VISION MISSION SECTION ========== */
.vision-mission-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
  color: var(--body-color);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.vision-block,
.mission-block {
  position: relative;
}

.vision-image-wrapper {
  margin-top: 70px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.vision-image-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.vision-floating-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  filter: brightness(0.5) contrast(1.2);
  will-change: transform;
  transition: filter 0.3s ease;
  transform: translateY(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

.vision-image-wrapper:hover .vision-floating-image {
  filter: brightness(0.7) contrast(1.15);
}

.vision-quote-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #081730 0%, #0d2540 100%);
  position: relative;
  overflow: hidden;
}

.vision-quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 55%);
  z-index: 0;
}

.vision-quote-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.vision-quote-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-quote-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.vision-quote-label::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.vision-quote-text {
  font-family: var(--ff-heading);
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}

.vision-quote-subtext {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 1rem;
}

.vision-quote-meta {
  display: flex;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vision-quote-meta span:first-child {
  font-weight: 600;
  color: #fff;
}

.vision-quote-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 300px;
}

.vision-quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vision-quote-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 48, 0) 0%, rgba(8, 23, 48, 0.8) 100%);
}

.vision-mission-title {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.vision-text {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--body-color);
  margin: 0;
}

.pikir-acronym {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
  padding: 0;
  background: transparent;
}

.pikir-letter {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.pikir-letter:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.pikir-header {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 6px;
}

.pikir-main {
  font-family: var(--ff-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -2px;
  position: relative;
}

.pikir-rest {
  font-family: var(--ff-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  letter-spacing: 0.5px;
  align-self: flex-end;
  padding-bottom: 4px;
}

.pikir-underline {
  position: absolute;
  bottom: 0;
  left: 60px;
  right: 0;
  height: 2px;
  background: var(--color-primary);
}

.pikir-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  padding-left: 60px;
  max-width: 100%;
}

.mission-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(13, 37, 63, 0.1);
  transition: all 0.3s ease;
}

.mission-item:last-child {
  border-bottom: none;
}

.mission-item:hover {
  padding-left: 12px;
  border-left: 3px solid var(--color-primary);
}

.mission-item-title {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.mission-item-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.vision-mission-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.vision-design-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.design-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.pattern-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.08) 0%, rgba(13, 37, 63, 0.03) 100%);
  border: 2px solid rgba(13, 37, 63, 0.1);
}

.pattern-circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.pattern-circle-2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 15%;
  animation: float 8s ease-in-out infinite reverse;
}

.pattern-circle-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 20%;
  animation: float 7s ease-in-out infinite;
}

.pattern-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(13, 37, 63, 0.1), transparent);
}

.pattern-line-1 {
  width: 2px;
  height: 300px;
  top: 15%;
  left: 20%;
  transform: rotate(15deg);
  animation: pulse 4s ease-in-out infinite;
}

.pattern-line-2 {
  width: 2px;
  height: 200px;
  bottom: 25%;
  right: 25%;
  transform: rotate(-20deg);
  animation: pulse 5s ease-in-out infinite;
}

.pattern-line-3 {
  width: 150px;
  height: 2px;
  top: 60%;
  left: 10%;
  transform: rotate(45deg);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.vision-stats-cards {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 300px;
}

.stat-card-minimal {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 37, 63, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-card-minimal:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.stat-icon-minimal {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label-minimal {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== WHY US SECTION ========== */
.why-us {
  padding: 100px 0;
  background: var(--color-surface);
}

.why-us-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(13, 37, 63, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 37, 63, 0.06);
}

.feature-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13, 37, 63, 0.16);
  border-color: rgba(13, 37, 63, 0.1);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.1), rgba(13, 37, 63, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(13, 37, 63, 0.2);
}

.feature-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.feature-content h4 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
  transition: color 0.3s ease;
}

.feature-item:hover .feature-content h4 {
  color: var(--color-primary);
}

.feature-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ========== PRODUCT CATEGORIES SLIDER SECTION ========== */
.product-categories-slider-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 50%, #cbd5e1 100%);
  position: relative;
  overflow: hidden;
}

.product-categories-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-category-slide {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.product-category-slide.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.product-category-slide-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
  min-height: 600px;
}

/* Book Cover Left */
.product-category-cover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.product-category-cover-main {
  position: relative;
  width: 280px;
  height: 420px;
  background: linear-gradient(135deg, #0d253f 0%, #0a1e32 100%);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(13, 37, 63, 0.4);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s ease;
  overflow: hidden;
  z-index: 3;
}

.product-category-slide.active .product-category-cover-main {
  transform: rotateY(0deg) rotateX(0deg);
}

.product-category-cover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-category-cover-bg-1 {
  background: linear-gradient(135deg, #f472b6 0%, #ec4899 50%, #f472b6 100%);
}

.product-category-cover-bg-2 {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #10b981 100%);
}

.product-category-cover-bg-3 {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #3b82f6 100%);
}

.product-category-cover-bg-4 {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 50%, #a855f7 100%);
}

.product-category-cover-bg-5 {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #f59e0b 100%);
}

.product-category-cover-bg-6 {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #ef4444 100%);
}

.product-category-cover-content {
  position: relative;
  z-index: 2;
  padding: 48px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.product-category-cover-title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-category-cover-icon {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  backdrop-filter: blur(10px);
}

.product-category-cover-icon i {
  font-size: 3.5rem;
  color: #ffffff;
}

.product-category-cover-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.product-category-cover-blur {
  position: absolute;
  width: 280px;
  height: 420px;
  background: linear-gradient(135deg, #0d253f 0%, #0a1e32 100%);
  border-radius: 8px;
  opacity: 0.5;
  filter: blur(25px);
  z-index: 1;
}

.product-category-cover-blur-1 {
  transform: translateX(-20px) translateY(-10px) rotateY(-8deg);
}

.product-category-cover-blur-2 {
  transform: translateX(20px) translateY(10px) rotateY(8deg);
  z-index: 0;
}

/* Text Block Right */
.product-category-text-block {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.product-category-text-title {
  font-family: var(--ff-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: #0d253f;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.product-category-text-description {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 600px;
}

/* Navigation */
.product-category-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 60px;
}

.product-category-dots-line {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
}

.product-category-dot {
  flex: 1;
  height: 3px;
  background: rgba(13, 37, 63, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.product-category-dot.active {
  background: #0d253f;
  height: 4px;
}

.product-category-dot:hover {
  background: rgba(13, 37, 63, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .product-category-slide-content {
    grid-template-columns: 320px 1fr;
    gap: 60px;
  }

  .product-category-cover-main {
    width: 240px;
    height: 360px;
  }

  .product-category-cover-blur {
    width: 240px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .product-categories-slider-section {
    padding: 60px 0;
  }

  .product-category-slide-content {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .product-category-cover {
    justify-content: center;
  }

  .product-category-cover-main {
    width: 200px;
    height: 300px;
  }

  .product-category-cover-blur {
    width: 200px;
    height: 300px;
  }

  .product-category-text-title {
    font-size: 2rem;
  }

  .product-category-text-description {
    font-size: 1rem;
  }

  .product-category-navigation {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .product-categories-slider-section {
    padding: 50px 0;
  }

  .product-category-cover-main {
    width: 180px;
    height: 270px;
  }

  .product-category-cover-blur {
    width: 180px;
    height: 270px;
  }

  .product-category-cover-icon {
    width: 80px;
    height: 80px;
    margin: 24px auto;
  }

  .product-category-cover-icon i {
    font-size: 2.5rem;
  }

  .product-category-text-title {
    font-size: 1.75rem;
  }
}

/* ========== PRODUCT CATEGORIES SECTION (OLD - KEEP FOR REFERENCE) ========== */
.product-categories-section {
  padding: 100px 0;
  background: #ffffff;
}

.product-categories-header {
  text-align: center;
  margin-bottom: 64px;
}

.product-categories-title {
  font-family: var(--ff-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: #0d253f;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.product-categories-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.product-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.product-category-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13, 37, 63, 0.06);
}

.product-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.02) 0%, rgba(37, 99, 235, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-category-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(13, 37, 63, 0.15);
  border-color: #2563eb;
}

.product-category-card:hover::before {
  opacity: 1;
}

.product-category-icon-wrapper {
  position: relative;
  margin-bottom: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-category-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2563eb 0%, #0d253f 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.product-category-card[data-category='baby'] .product-category-icon {
  background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25);
}

.product-category-card[data-category='grocery'] .product-category-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.product-category-card[data-category='household'] .product-category-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.product-category-card[data-category='cosmetic'] .product-category-icon {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.25);
}

.product-category-card[data-category='food'] .product-category-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.product-category-card[data-category='spice'] .product-category-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25);
}

.product-category-icon i {
  font-size: 2.5rem;
  color: #ffffff;
  transition: all 0.4s ease;
}

.product-category-card:hover .product-category-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

.product-category-card[data-category='baby']:hover .product-category-icon {
  box-shadow: 0 12px 32px rgba(236, 72, 153, 0.35);
}

.product-category-card[data-category='grocery']:hover .product-category-icon {
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.35);
}

.product-category-card[data-category='household']:hover .product-category-icon {
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
}

.product-category-card[data-category='cosmetic']:hover .product-category-icon {
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.35);
}

.product-category-card[data-category='food']:hover .product-category-icon {
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.35);
}

.product-category-card[data-category='spice']:hover .product-category-icon {
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.35);
}

.product-category-number {
  font-family: var(--ff-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.product-category-card:hover .product-category-number {
  color: #2563eb;
}

.product-category-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.product-category-title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d253f;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  letter-spacing: -0.5px;
}

.product-category-card:hover .product-category-title {
  color: #2563eb;
}

.product-category-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Product Categories */
@media (max-width: 768px) {
  .product-categories-section {
    padding: 60px 0;
  }

  .product-categories-title {
    font-size: 2.25rem;
  }

  .product-categories-subtitle {
    font-size: 1rem;
  }

  .product-categories-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-category-card {
    padding: 32px 24px;
  }

  .product-category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }

  .product-category-icon i {
    font-size: 2rem;
  }

  .product-category-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .product-categories-section {
    padding: 50px 0;
  }

  .product-categories-header {
    margin-bottom: 40px;
  }

  .product-categories-title {
    font-size: 2rem;
  }

  .product-category-card {
    padding: 28px 20px;
  }

  .product-category-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
  }

  .product-category-icon i {
    font-size: 1.75rem;
  }
}

/* ========== GALLERY SECTION ========== */
.gallery {
  padding: 100px 0;
  background: var(--color-primary);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-header .section-subtitle {
  color: var(--white);
}

.gallery-title {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  font-size: 2.5rem;
  justify-content: center;
}

.gallery-title .title-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  position: relative;
  max-width: 200px;
}

.gallery-title .title-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.gallery-title .title-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.gallery-title .title-text {
  position: relative;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 10px;
}

.gallery-title .title-text::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  border-radius: 2px;
}

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

.filter-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.filter-btn.active {
  background: var(--white);
  color: var(--color-primary);
}

/* Filter Container untuk Gallery Page */
.filter-container {
  margin-bottom: 48px;
}

.filter-tabs {
  display: flex;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
  gap: 0;
}

.filter-tab {
  padding: 16px 32px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-family: var(--ff-body);
}

.filter-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.filter-tab.active {
  color: var(--white);
  border-bottom-color: var(--white);
  font-weight: 600;
}

.filter-tab i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.filter-tab.active i {
  transform: rotate(180deg);
}

.filter-main-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-dropdowns {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.filter-dropdown {
  margin-bottom: 16px;
  animation: fadeIn 0.3s ease;
  text-align: right;
}

.filter-dropdown label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  text-align: right;
}

.filter-select {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--ff-body);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-select:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.filter-select:focus {
  outline: none;
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.filter-select option {
  background: var(--color-primary);
  color: var(--white);
}

.gallery-grid {
  margin-bottom: 48px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 4px 0;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: fadeInUp 0.8s ease backwards;
  display: block;
  background: #fff;
  will-change: transform;
  width: 100%;
}

/* Staggered animation delay untuk efek cascade */
.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}
.gallery-item:nth-child(7) {
  animation-delay: 0.7s;
}
.gallery-item:nth-child(8) {
  animation-delay: 0.8s;
}
.gallery-item:nth-child(9) {
  animation-delay: 0.9s;
}

.gallery-item-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  display: block;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Landscape orientation - lebih lebar */
.gallery-item.landscape {
  grid-column: span 1;
}

.gallery-item.landscape .gallery-item-inner {
  aspect-ratio: 16 / 9;
}

/* Portrait orientation - lebih tinggi */
.gallery-item.portrait {
  grid-column: span 1;
}

.gallery-item.portrait .gallery-item-inner {
  aspect-ratio: 3 / 4;
}

/* Subtle border untuk depth */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* All gallery items have same size - no masonry */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fokuskan area atas untuk gambar kategori Sembako */
.gallery-item[data-subcategory='sembako'] img {
  object-position: top center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.gallery-item img {
  transition: transform 0.5s ease, filter 0.3s ease;
  will-change: transform;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05) contrast(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 36, 0.98), rgba(15, 23, 36, 0.85), rgba(15, 23, 36, 0.5), transparent);
  padding: 40px 28px 28px;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.gallery-item:hover .gallery-overlay-content {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.3;
}

.gallery-item-featured .gallery-overlay h4 {
  font-size: 1.5rem;
}

.gallery-item-wide .gallery-overlay h4 {
  font-size: 1.375rem;
}

.gallery-category {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.load-more-container {
  text-align: center;
}

.gallery .btn-primary {
  background: var(--white);
  color: var(--color-primary);
  border: 2px solid var(--white);
}

.gallery .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  border-color: var(--white);
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-info h2 {
  margin-bottom: 16px;
  color: var(--text);
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: transparent;
}

.contact-item:hover {
  background: rgba(11, 105, 163, 0.03);
  transform: translateX(4px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(11, 105, 163, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(11, 105, 163, 0.3);
}

.contact-text h4 {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.125rem;
}

.contact-text p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #e0e7ef;
  border-radius: 12px;
  background: var(--white);
  background-image: none;
  font-family: var(--ff-body);
  font-size: 16px;
  transition: all 0.3s ease;
  color: var(--text);
}

.form-group select {
  width: 100%;
  padding: 16px 18px;
  padding-right: 45px;
  border: 2px solid #e0e7ef;
  border-radius: 12px;
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  transition: all 0.3s ease;
  color: var(--text);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230b69a3' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 45px;
}

.form-group select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230b69a3' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-position: right 18px center;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(11, 105, 163, 0.1);
  background-color: #fafbfc;
  background-image: none;
}

.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(11, 105, 163, 0.1);
  background-color: #fafbfc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230b69a3' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-position: right 18px center;
  background-size: 12px;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: rgba(11, 105, 163, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* ========== MAP SECTION ========== */
.map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.map-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.map-address {
  text-align: center;
  margin-top: 24px;
}

.map-address p {
  color: var(--muted);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-address i {
  color: var(--color-primary);
  font-size: 1.125rem;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
}

.form-status.success {
  background: #d4edda;
  color: #155724;
  display: block;
}

.form-status.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}

/* ========== CTA PARALLAX SECTION ========== */
.cta-parallax {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.cta-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.85), rgba(11, 105, 163, 0.75));
  z-index: 1;
  display: flex;
  align-items: center;
}

.cta-parallax-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
  width: 100%;
}

.cta-parallax-text {
  flex: 1;
  max-width: 600px;
}

.cta-parallax-title {
  font-family: var(--ff-heading);
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-title-line-1 {
  font-size: 2.5rem;
}

.cta-title-line-2 {
  font-size: 2rem;
  font-weight: 600;
}

.cta-parallax-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0;
}

.cta-parallax-button {
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-btn i {
  font-size: 1.25rem;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive CTA Parallax */
@media (max-width: 768px) {
  .cta-parallax {
    min-height: 350px;
  }

  .cta-parallax-overlay {
    display: flex;
    align-items: center;
  }

  .cta-parallax-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px 0;
    width: 100%;
  }

  .cta-parallax-text {
    max-width: 100%;
    width: 100%;
  }

  .cta-parallax-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .cta-title-line-1 {
    font-size: 1.75rem;
    display: block;
  }

  .cta-title-line-2 {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
  }

  .cta-parallax-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .cta-parallax-button {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cta-btn {
    width: auto;
    min-width: 200px;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-parallax {
    min-height: 300px;
  }

  .cta-parallax-content {
    gap: 20px;
    padding: 30px 0;
  }

  .cta-parallax-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .cta-title-line-1 {
    font-size: 1.5rem;
  }

  .cta-title-line-2 {
    font-size: 1.25rem;
  }

  .cta-parallax-description {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .cta-parallax-button {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .cta-btn i {
    font-size: 1.1rem;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 80px 0 24px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: lowercase;
  letter-spacing: -1px;
}

.footer-description {
  line-height: 1.8;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: var(--white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.social-icon i {
  font-size: 1rem;
}

.footer-section h4 {
  color: var(--white);
  font-family: var(--ff-heading);
  margin-bottom: 24px;
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

.footer-links span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact-links li i {
  color: var(--white);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
}

.footer-cta i {
  transition: transform 0.3s ease;
}

.footer-cta:hover i {
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 8px 0;
}

.visitor-counter {
  margin-top: 16px !important;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.visitor-counter i {
  color: rgba(255, 255, 255, 1);
  font-size: 1rem;
}

.visitor-counter strong {
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top i {
  font-size: 1.25rem;
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-section {
  padding: 100px 0;
  background: var(--white);
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 105, 163, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  font-family: var(--ff-heading);
  font-size: 1.125rem;
  margin-bottom: 4px;
  color: var(--text);
}

.testimonial-info p {
  color: var(--muted);
  font-size: 0.875rem;
}

/* ========== STATS SECTION ========== */
.stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d253f 0%, #0a1e32 100%);
  color: var(--white);
}

.stats-section .section-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}

.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item-modern {
  padding: 24px;
}

.stat-number-modern {
  font-family: var(--ff-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label-modern {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  font-size: 2.5rem;
  justify-content: center;
}

.faq-title .title-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  position: relative;
  max-width: 200px;
}

.faq-title .title-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(13, 37, 63, 0.5);
}

.faq-title .title-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(13, 37, 63, 0.5);
}

.faq-title .title-text {
  position: relative;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 10px;
}

.faq-title .title-text::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: 2px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-primary);
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: rgba(255, 255, 255, 0.9);
}

.faq-question.active {
  color: var(--white);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--white);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  background: var(--white);
  color: var(--text);
}

.faq-answer.active {
  max-height: 500px;
  padding: 16px 24px 28px;
  border-top: 1px solid rgba(13, 37, 63, 0.1);
}

.faq-answer p {
  color: var(--color-primary);
  line-height: 1.8;
  font-weight: 600;
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 120px 0 60px;
  text-align: center;
  color: var(--white);
  margin-top: 80px;
}

.page-header h1 {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 20px 0;
  background: var(--color-surface);
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  font-size: 0.875rem;
}

.breadcrumb-list li {
  color: var(--muted);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--muted);
}

.breadcrumb-list a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
  color: var(--color-primary-dark);
}

/* ========== CONTENT SECTION ========== */
.content-section {
  padding: 80px 0;
  background: var(--white);
}

.content-section:nth-child(even) {
  background: var(--color-surface);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    margin-right: 0;
  }

  .about-image img {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-logo {
    font-size: 2.5rem;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .stats-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievement-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .achievement-cta-action {
    width: 100%;
    justify-content: flex-start;
  }

  .achievement-cta-title {
    font-size: 2.2rem;
  }

  .achievement-cta-subtitle {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }

  .navbar.scrolled {
    margin: 0 !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: none !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(13, 37, 63, 0.2) !important;
  }

  .navbar.scrolled::before,
  .navbar.scrolled::after {
    display: none !important;
    content: none !important;
  }

  .navbar.scrolled .nav-container {
    padding: 12px 18px !important;
    padding-left: 18px !important;
    gap: 20px;
    border: none !important;
    outline: none !important;
    margin: 0 !important;
    margin-left: 0 !important;
  }

  .navbar.scrolled .logo {
    border: none !important;
    outline: none !important;
    margin: 0 !important;
    margin-left: 0 !important;
    padding: 0 !important;
  }

  .navbar.scrolled .logo-img {
    border: none !important;
    outline: none !important;
    margin: 0 !important;
  }

  .navbar.scrolled .nav-container::before,
  .navbar.scrolled .nav-container::after {
    display: none !important;
    content: none !important;
  }

  .navbar.scrolled .logo {
    height: 50px;
  }

  .navbar.scrolled .logo-img {
    max-width: 200px;
  }

  .nav-container {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-md);
    justify-content: flex-start;
    z-index: 999;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu .nav-link {
    display: block;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    color: var(--color-primary) !important;
    font-weight: 600;
    font-size: 1.1rem;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--color-primary-dark) !important;
  }

  .nav-menu .nav-link.active::after {
    display: none;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-email-mobile {
    display: block;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .btn-login-mobile {
    display: block;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
  }

  .btn-login-mobile:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 37, 63, 0.3);
  }

  .nav-actions {
    gap: 8px;
    order: 3;
    justify-content: flex-end;
  }

  .btn-login {
    display: none;
  }

  .mobile-toggle {
    display: block;
    order: 2;
    margin-left: auto;
  }

  .hero {
    padding: 160px 0 60px;
  }

  .about-hero {
    min-height: 90vh;
    padding: 140px 0 80px;
  }

  .history-section {
    padding: 0 0 60px 0;
  }

  .history-header-section {
    padding: 60px 0 40px;
    margin-bottom: 50px;
  }

  .history-overview {
    margin-bottom: 24px;
  }

  .history-intro-card {
    padding: 40px 32px;
    text-align: center;
  }

  .intro-card-header {
    flex-direction: column;
    gap: 16px;
  }

  .history-intro-text {
    margin: 0 auto;
  }

  .history-header-content {
    padding: 0 20px;
    gap: 20px;
  }

  .history-main-title {
    font-size: 2.5rem;
  }

  .history-decorative-left,
  .history-decorative-right {
    max-width: 150px;
    gap: 12px;
  }

  .history-circle {
    width: 10px;
    height: 10px;
  }

  .history-circle-outer {
    width: 12px;
    height: 12px;
  }

  .history-line {
    max-width: 100px;
  }

  .history-underline {
    width: 150px;
  }

  .history-intro-card {
    padding: 40px 30px;
    margin-bottom: 40px;
  }

  .intro-card-header {
    flex-direction: column;
    gap: 16px;
  }

  .intro-card-line {
    max-width: 100px;
  }

  .history-intro-title {
    font-size: 2rem;
  }

  .history-intro-text {
    font-size: 1rem;
  }

  .history-details {
    margin-bottom: 50px;
  }

  .history-detail-item {
    padding: 28px;
  }

  .history-stats-wrapper {
    padding: 28px;
  }

  .history-stats {
    flex-direction: column;
    gap: 24px;
  }

  .history-stat-divider {
    width: 100%;
    height: 1px;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .stat-value {
    font-size: 2.5rem;
  }

  .about-hero-title {
    font-size: 3rem;
  }

  .about-hero-title .title-line-1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .about-hero-title .title-line-2 {
    font-size: 3.5rem;
  }

  .about-hero-description {
    font-size: 1.125rem;
    padding: 0 20px;
  }

  .about-hero-stats {
    gap: 40px;
    padding: 30px 20px;
  }

  .about-stat-number {
    font-size: 2.5rem;
  }

  .about-stat-label {
    font-size: 0.8rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-title-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .hero-title {
    font-size: 2.25rem;
    min-width: auto;
  }

  .hero-content {
    margin-top: 0;
  }

  .hero-buttons {
    flex-direction: row;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    flex: 1;
    min-width: auto;
  }

  .hero-stats {
    gap: 24px;
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stat-item {
    width: 100%;
  }

  .hero-stat-item .stat-number {
    font-size: 2rem;
  }

  .hero-stat-item .stat-label {
    font-size: 0.875rem;
  }

  .hero-stats .hero-buttons {
    margin-left: 0;
    width: 100%;
    flex-direction: row;
  }

  .hero-stats .hero-buttons .btn-primary,
  .hero-stats .hero-buttons .btn-secondary {
    flex: 1;
    min-width: auto;
  }

  /* About Section */
  .about {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: 1;
    transform: none;
  }

  .about-image:hover {
    transform: translateY(-5px);
  }

  .about-image img {
    height: 400px;
  }

  .about-image-badge {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
  }

  .badge-year {
    font-size: 1.5rem;
  }

  .badge-text {
    font-size: 0.75rem;
  }

  .about-content {
    order: 2;
    padding-left: 0;
  }

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

  .about-title {
    font-size: 1.75rem;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .about-highlight-box {
    padding: 20px;
  }

  /* Vision Mission Section */
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vision-image-wrapper {
    margin-top: 60px;
  }

  .vision-quote-wrapper {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .vision-quote-text {
    font-size: 1.75rem;
  }

  /* .vision-mission-visual { */
  /* order: -1; */
  /* } */

  .vision-logo {
    text-align: center;
  }

  .logo-main {
    font-size: 3.5rem;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vision-image-wrapper {
    margin-top: 50px;
  }

  .vision-quote-section {
    padding: 60px 0;
  }

  .vision-quote-wrapper {
    padding: 24px;
  }

  .vision-floating-image {
    animation: floatImage 5s ease-in-out infinite;
  }

  .pikir-acronym {
    gap: 16px;
    margin-bottom: 32px;
  }

  .pikir-main {
    font-size: 3rem;
  }

  .pikir-rest {
    font-size: 1.125rem;
  }

  .pikir-underline {
    left: 50px;
  }

  .pikir-description {
    font-size: 0.95rem;
    padding-left: 50px;
  }

  .pikir-letter {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  /* Partners Section */
  .partners {
    padding: 60px 0;
  }

  .partners-header {
    margin-bottom: 40px;
  }

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

  /* Branches Section */
  .branches {
    padding: 60px 0;
  }

  .branches-header {
    margin-bottom: 40px;
  }

  .branches-title,
  .gallery-title,
  .faq-title {
    font-size: 2rem;
  }

  /* Info Parallax */
  .info-parallax {
    min-height: 300px;
  }

  .info-parallax-overlay {
    padding: 60px 0;
  }

  .info-parallax-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Gallery Section */
  .gallery {
    padding: 60px 0;
  }

  .gallery-header {
    margin-bottom: 40px;
  }

  /* Testimonial Section */
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-header {
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 24px;
  }

  /* FAQ Section */
  .faq-section {
    padding: 60px 0;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-answer.active {
    padding: 0 20px 20px;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid-modern {
    grid-template-columns: 1fr;
  }

  .partners-slider {
    gap: 20px;
  }

  .partners-slider-wrapper::before,
  .partners-slider-wrapper::after {
    width: 90px;
  }

  .partner-item {
    height: 100px;
    width: 160px;
    padding: 16px;
  }

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

  .branches-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .branches-map {
    height: 400px;
  }

  /* All gallery items have same size */
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .description-container {
    height: auto;
    min-height: 400px;
  }

  .description-placeholder {
    min-height: 300px;
  }

  .marker-btn {
    width: 40px;
    height: 40px;
  }

  .marker-btn svg {
    width: 20px;
    height: 20px;
  }

  .description-title {
    font-size: 1.25rem;
  }

  .description-image {
    height: 200px;
    margin-bottom: 20px;
  }

  .description-info {
    gap: 12px;
  }

  .description-info p {
    font-size: 0.9rem;
  }

  .description-info p i {
    font-size: 1rem;
  }

  .services-slider-wrapper {
    height: 600px;
    border-radius: 16px;
  }

  .service-slide-overlay {
    padding: 50px 28px;
  }

  .service-slide-content {
    padding: 40px 36px;
    max-width: 100%;
  }

  .service-slide-icon {
    font-size: 4rem;
    margin-bottom: 24px;
  }

  .service-slide-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .service-slide-text {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }

  .service-slide-btn {
    padding: 16px 36px;
    font-size: 1.05rem;
  }

  .slider-nav {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .slider-nav-prev {
    left: 16px;
  }

  .slider-nav-next {
    right: 16px;
  }

  .slider-dots {
    bottom: 20px;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    width: 100%;
    margin-right: 0;
  }

  .gallery-grid {
    margin-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
  }

  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .scroll-to-top i {
    font-size: 1rem;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* Hero Section */
  .hero {
    padding: 140px 0 40px;
  }

  .hero-title-wrapper {
    gap: 20px;
  }

  .hero-title {
    font-size: 1.75rem;
    min-width: auto;
    line-height: 1.3;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
    margin-bottom: 24px;
  }

  /* About Hero Section */
  .about-hero {
    min-height: 85vh;
    padding: 120px 0 60px;
  }

  .about-hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  .about-hero-subtitle::after {
    width: 40px;
  }

  .about-hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .about-hero-title .title-line-1 {
    font-size: 1.75rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .about-hero-title .title-line-2 {
    font-size: 2.25rem;
  }

  .about-hero-description {
    font-size: 1rem;
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .about-hero-stats {
    gap: 24px;
    padding: 24px 16px;
    margin-top: 40px;
    flex-direction: column;
  }

  .about-stat-item {
    width: 100%;
  }

  .about-stat-number {
    font-size: 2rem;
  }

  .about-stat-label {
    font-size: 0.75rem;
  }

  .about-hero-scroll-indicator {
    bottom: 20px;
  }

  .scroll-mouse {
    width: 24px;
    height: 40px;
  }

  .scroll-text {
    font-size: 0.65rem;
  }

  .history-section {
    padding: 40px 0;
  }

  .history-header-section {
    padding: 50px 0 30px;
    margin-bottom: 40px;
  }

  .history-overview {
    margin-bottom: 24px;
  }

  .history-details {
    grid-template-columns: 1fr;
  }

  .history-stats-wrapper {
    padding: 36px 28px;
  }

  .history-stats {
    gap: 24px;
  }

  .stat-value {
    font-size: 2.75rem;
  }

  .stat-desc {
    font-size: 0.85rem;
  }

  .history-stat-divider {
    height: 50px;
  }

  .history-intro-card {
    padding: 36px 28px;
  }

  .history-year-badge {
    padding: 12px 28px;
    font-size: 1.125rem;
  }

  .history-header-content {
    padding: 0 16px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .history-main-title {
    font-size: 2rem;
    letter-spacing: 1px;
    width: 100%;
    order: 2;
  }

  .history-decorative-left,
  .history-decorative-right {
    max-width: 100px;
    gap: 8px;
    order: 1;
  }

  .history-decorative-right {
    order: 3;
  }

  .history-circle {
    width: 8px;
    height: 8px;
  }

  .history-circle-outer {
    width: 10px;
    height: 10px;
  }

  .history-line {
    max-width: 60px;
  }

  .history-underline {
    width: 120px;
    margin-top: 16px;
  }

  .history-intro-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .history-year-badge {
    font-size: 0.875rem;
    padding: 10px 24px;
  }

  .intro-card-line {
    max-width: 60px;
  }

  .history-intro-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .history-intro-text {
    font-size: 0.95rem;
  }

  .history-details {
    margin-bottom: 40px;
  }

  .history-detail-item {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    text-align: center;
    padding: 24px 20px;
  }

  .detail-number {
    font-size: 2.5rem;
    min-width: auto;
  }

  .detail-content {
    padding-top: 0;
  }

  .detail-title {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .detail-text {
    font-size: 0.9rem;
  }

  .history-stats-wrapper {
    padding: 32px 24px;
  }

  .history-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .history-stat-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 120px;
  }

  .stat-value {
    font-size: 2.5rem;
  }

  .stat-desc {
    font-size: 0.8rem;
  }

  .history-stat-divider {
    height: 40px;
    width: 1px;
  }

  .hero-stats {
    gap: 20px;
    padding: 20px 0;
  }

  .hero-stat-item .stat-number {
    font-size: 1.75rem;
  }

  .hero-stat-item .stat-label {
    font-size: 0.75rem;
  }

  .hero-stats .hero-buttons {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    gap: 12px;
  }

  .hero-stats .hero-buttons .btn-primary,
  .hero-stats .hero-buttons .btn-secondary {
    width: 100%;
    min-width: auto;
  }

  /* About Section */
  .about {
    padding: 40px 0;
  }

  .about-grid {
    gap: 24px;
  }

  .about-image img {
    height: 300px;
  }

  .about-image-badge {
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
  }

  .badge-year {
    font-size: 1.25rem;
  }

  .badge-text {
    font-size: 0.7rem;
  }

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

  .about-title {
    font-size: 1.5rem;
  }

  .about-text {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .about-highlight-box {
    padding: 16px;
    flex-direction: column;
    gap: 12px;
  }

  .highlight-icon {
    font-size: 1.25rem;
  }

  .about-read-more {
    font-size: 0.95rem;
  }

  /* Vision Mission Section */
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vision-mission-visual {
    order: -1;
  }

  .vision-logo {
    text-align: center;
  }

  .logo-main {
    font-size: 3.5rem;
  }

  .vision-image-collage {
    height: 400px;
  }

  /* Partners Section */
  .partners {
    padding: 40px 0;
  }

  .partners-title {
    font-size: 1.75rem;
  }

  .partners-title .title-text {
    font-size: 1.75rem;
  }

  .partners-slider-wrapper::before,
  .partners-slider-wrapper::after {
    width: 70px;
  }

  .partner-item {
    height: 90px;
    width: 140px;
    padding: 12px;
  }

  .partner-item img {
    max-height: 55px;
  }

  /* Branches Section */
  .branches {
    padding: 40px 0;
  }

  .branches-title,
  .gallery-title,
  .faq-title {
    font-size: 1.75rem;
  }

  .branches-map {
    height: 300px;
  }

  .description-container {
    min-height: 300px;
    max-height: 400px;
  }

  .description-image {
    height: 180px;
    margin-bottom: 16px;
  }

  .description-title {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }

  .description-info {
    gap: 10px;
  }

  .description-info p {
    font-size: 0.85rem;
  }

  .location-cta-btn {
    padding: 12px 16px;
    font-size: 0.875rem;
  }

  .location-cta-label {
    font-size: 0.875rem;
  }

  .location-cta-address {
    font-size: 0.75rem;
  }

  /* Info Parallax */
  .info-parallax {
    min-height: 250px;
  }

  .info-parallax-overlay {
    padding: 40px 0;
  }

  .info-parallax-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .info-parallax-item {
    text-align: center;
  }

  .info-parallax-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
  }

  .info-parallax-icon i {
    font-size: 1.75rem;
  }

  .info-parallax-item-title {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }

  .info-parallax-item-text {
    font-size: 0.875rem;
  }

  /* Gallery Section */
  .gallery {
    padding: 40px 0;
  }

  .gallery-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .gallery-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Testimonial Section */
  .testimonial-section {
    padding: 40px 0;
  }

  .testimonial-header {
    margin-bottom: 32px;
  }

  .testimonial-header .section-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .testimonial-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }

  .testimonial-info h4 {
    font-size: 1rem;
  }

  .testimonial-info p {
    font-size: 0.8rem;
  }

  /* FAQ Section */
  .faq-section {
    padding: 40px 0;
  }

  .faq-header {
    margin-bottom: 32px;
  }

  .faq-question {
    padding: 16px;
    font-size: 0.9rem;
  }

  .faq-icon {
    font-size: 1.25rem;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-answer.active {
    padding: 0 16px 16px;
  }

  .faq-answer p {
    font-size: 0.875rem;
  }

  /* Buttons */
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 0.875rem;
  }

  .about-read-more {
    font-size: 0.9rem;
  }

  /* Vision Mission Section */
  .vision-mission-grid {
    gap: 32px;
  }

  .vision-mission-content {
    gap: 32px;
  }

  .vision-mission-title {
    font-size: 1.5rem;
  }

  .vision-text {
    font-size: 1rem;
  }

  .vision-image-wrapper {
    margin-top: 40px;
  }

  .vision-quote-section {
    padding: 40px 0;
  }

  .vision-quote-text {
    font-size: 1.2rem;
  }

  .vision-quote-meta {
    flex-direction: column;
    gap: 6px;
  }

  .vision-quote-image {
    min-height: 220px;
  }

  .pikir-acronym {
    gap: 14px;
    margin-bottom: 24px;
  }

  .pikir-main {
    font-size: 2.5rem;
  }

  .pikir-rest {
    font-size: 1rem;
  }

  .pikir-underline {
    left: 40px;
  }

  .pikir-letter {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .pikir-description {
    font-size: 0.9rem;
    line-height: 1.7;
    padding-left: 40px;
  }

  .mission-item-title {
    font-size: 1.125rem;
  }

  .mission-item-text {
    font-size: 0.9rem;
  }

  .logo-main {
    font-size: 2.5rem;
  }

  .logo-company {
    font-size: 1rem;
  }

  .logo-tagline {
    font-size: 0.75rem;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Contact Section */
  .contact {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    padding: 32px;
  }

  .contact-details {
    gap: 20px;
  }

  .contact-item {
    padding: 16px;
    gap: 16px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  /* Contact Form */
  .contact-form {
    padding: 32px;
  }

  /* Page Header */
  .page-header {
    padding: 80px 0 30px;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }
}
