@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Poppins:wght@400;500;600&display=swap');

/* BRAND COLOR PALETTE */
:root {
  --deep-blue: #0D1B3D;
  --marine-blue: #1E3A8A;
  --ocean-blue: #4B6FB5;
  --omega-red: #E0001A;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --shadow-sm: 0 4px 6px -1px rgba(13, 27, 61, 0.05), 0 2px 4px -1px rgba(13, 27, 61, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(13, 27, 61, 0.08), 0 4px 6px -2px rgba(13, 27, 61, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(13, 27, 61, 0.1), 0 10px 10px -5px rgba(13, 27, 61, 0.04);
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius-lg: 20px;
  --radius-md: 12px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--deep-blue);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--marine-blue);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--omega-red);
}

/* UTILITY CLASSES */
.section {
  padding: 100px 0;
  position: relative;
}
.section.bg-light {
  background-color: var(--light-gray);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.text-red { color: var(--omega-red); }
.text-blue { color: var(--ocean-blue); }

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--omega-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--omega-red);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--deep-blue);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--ocean-blue);
  max-width: 600px;
  margin: 0 auto 60px auto;
}

/* WAVE ACCENT */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 0;
}
.wave-divider svg {
  width: 100%;
  height: 40px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.btn-primary {
  background-color: var(--omega-red);
  color: var(--white);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--omega-red), #ff334b);
  z-index: -1;
  transition: opacity var(--transition-fast);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(224, 0, 26, 0.4);
}
.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background-color: var(--white);
  color: var(--deep-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-blue {
  background-color: transparent;
  color: var(--marine-blue);
  border: 2px solid var(--marine-blue);
}
.btn-outline-blue:hover {
  background-color: var(--marine-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* HEADER (NAVBAR) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 20px 0;
  background-color: transparent;
}
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 45px;
  height: 45px;
  background-color: var(--omega-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-headings);
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--white);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
}
.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ocean-blue);
  letter-spacing: 1px;
}
.header.scrolled .logo-title {
  color: var(--deep-blue);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 8px 0;
}
.header.scrolled .nav-link {
  color: var(--deep-blue);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--omega-red);
  transition: width var(--transition-fast);
}
.nav-link:hover::after {
  width: 100%;
}
.header.scrolled .nav-link:hover {
  color: var(--omega-red);
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.dropdown-toggle svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--white);
  min-width: 250px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-normal);
  list-style: none;
  border: 1px solid rgba(13, 27, 61, 0.05);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}
.dropdown-item a {
  display: block;
  padding: 10px 16px;
  color: var(--deep-blue);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
}
.dropdown-item a:hover {
  background-color: var(--light-gray);
  color: var(--omega-red);
  padding-left: 20px;
}

.nav-cta {
  margin-left: 16px;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition-fast);
}
.header.scrolled .hamburger span {
  background-color: var(--deep-blue);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 27, 61, 0.95) 0%, rgba(30, 58, 138, 0.85) 60%, rgba(75, 111, 181, 0.7) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(224, 0, 26, 0.15);
  border: 1px solid rgba(224, 0, 26, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--omega-red);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero-title span {
  background: linear-gradient(120deg, var(--white) 60%, var(--ocean-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating icons in hero */
.floating-element {
  position: absolute;
  z-index: 1;
  opacity: 0.12;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.fe-1 { top: 15%; right: 10%; width: 80px; height: 80px; animation-delay: 0s; }
.fe-2 { bottom: 20%; right: 20%; width: 120px; height: 120px; animation-delay: 1.5s; }
.fe-3 { bottom: 15%; left: 5%; width: 70px; height: 70px; animation-delay: 3s; }
.fe-4 { top: 25%; left: 25%; width: 90px; height: 90px; animation-delay: 4.5s; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 10;
}
.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--omega-red);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

/* SECTION TENTANG */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-info-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--deep-blue);
}

.about-desc {
  color: rgba(13, 27, 61, 0.8);
  font-size: 1.05rem;
  margin-bottom: 30px;
}
.about-desc p {
  margin-bottom: 16px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 27, 61, 0.03);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(75, 111, 181, 0.1);
}
.about-card-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(30, 58, 138, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--marine-blue);
}
.about-card-icon svg {
  width: 22px;
  height: 22px;
}
.about-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-blue);
}

.about-media {
  position: relative;
}
.about-media::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--ocean-blue);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}
.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* SECTION KEUNGGULAN */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(13, 27, 61, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.feature-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: rgba(30, 58, 138, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--marine-blue);
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}
.feature-card-icon svg {
  width: 28px;
  height: 28px;
}
.feature-card:hover .feature-card-icon {
  background-color: var(--omega-red);
  color: var(--white);
  transform: rotateY(180deg);
}
.feature-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--deep-blue);
}
.feature-card-desc {
  font-size: 0.95rem;
  color: rgba(13, 27, 61, 0.7);
}

/* SECTION PROGRAM PELATIHAN */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.program-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 27, 61, 0.03);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.program-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.program-card:hover .program-media img {
  transform: scale(1.1);
}
.program-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(13, 27, 61, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.program-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.program-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--deep-blue);
}
.program-desc {
  font-size: 0.95rem;
  color: rgba(13, 27, 61, 0.7);
  margin-bottom: 24px;
  flex-grow: 1;
}
.program-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ocean-blue);
  border-top: 1px solid rgba(13, 27, 61, 0.05);
  padding-top: 20px;
  margin-bottom: 20px;
}
.program-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.program-meta-item svg {
  width: 14px;
  height: 14px;
}

/* SECTION ALUR PENDIDIKAN */
.timeline-container {
  position: relative;
  margin: 60px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.timeline-line {
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, var(--marine-blue) 0%, var(--ocean-blue) 50%, var(--omega-red) 100%);
  z-index: 1;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.timeline-number {
  width: 100px;
  height: 100px;
  background-color: var(--white);
  border: 4px solid var(--marine-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--marine-blue);
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}
.timeline-step:nth-child(2) .timeline-number { border-color: var(--marine-blue); color: var(--marine-blue); }
.timeline-step:nth-child(3) .timeline-number { border-color: var(--ocean-blue); color: var(--ocean-blue); }
.timeline-step:nth-child(4) .timeline-number { border-color: var(--ocean-blue); color: var(--ocean-blue); }
.timeline-step:nth-child(5) .timeline-number { border-color: var(--omega-red); color: var(--omega-red); }

.timeline-step:hover .timeline-number {
  transform: scale(1.1);
  background-color: var(--marine-blue);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}
.timeline-step:nth-child(5):hover .timeline-number {
  background-color: var(--omega-red);
}

.timeline-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--deep-blue);
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: 0.85rem;
  color: rgba(13, 27, 61, 0.7);
  padding: 0 10px;
}

/* SECTION COUNTER */
.counter-section {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--marine-blue) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.counter-item {
  text-align: center;
}
.counter-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--font-headings);
  background: linear-gradient(135deg, var(--white) 60%, rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.counter-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ocean-blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* SECTION GALLERY */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filter-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  background-color: var(--light-gray);
  color: var(--deep-blue);
  transition: all var(--transition-fast);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background-color: var(--marine-blue);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  columns: 4 250px;
  column-gap: 20px;
  margin: 0 auto;
}
.gallery-item {
  margin-bottom: 20px;
  break-inside: avoid;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  background-color: var(--light-gray);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all var(--transition-slow);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(13, 27, 61, 0.9) 0%, rgba(13, 27, 61, 0.4) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.gallery-item-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--ocean-blue);
  letter-spacing: 1px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 27, 61, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}
.lightbox.active .lightbox-content {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}
.lightbox-close:hover {
  background-color: var(--omega-red);
}

/* SECTION TESTIMONI */
.testimonial-section {
  overflow: hidden;
  position: relative;
}
.testi-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: 350px;
}
.testi-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 27, 61, 0.03);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px);
  transition: all var(--transition-slow);
}
.testi-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.testi-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--marine-blue);
}
.testi-meta {
  display: flex;
  flex-direction: column;
}
.testi-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--deep-blue);
}
.testi-prof {
  font-size: 0.85rem;
  color: var(--ocean-blue);
  font-weight: 500;
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}
.testi-stars svg {
  width: 14px;
  height: 14px;
  fill: #FBBF24;
}
.testi-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(13, 27, 61, 0.8);
  position: relative;
  padding-left: 30px;
}
.testi-quote::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -15px;
  font-size: 4rem;
  color: rgba(75, 111, 181, 0.15);
  font-family: serif;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.testi-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(13, 27, 61, 0.15);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.testi-dot.active {
  width: 30px;
  border-radius: 6px;
  background-color: var(--omega-red);
}

/* SECTION FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 27, 61, 0.02);
  overflow: hidden;
  transition: all var(--transition-normal);
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(75, 111, 181, 0.08);
}
.faq-trigger {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-blue);
  background: none;
}
.faq-trigger svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition-normal);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  background-color: rgba(245, 247, 250, 0.4);
}
.faq-content-inner {
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: rgba(13, 27, 61, 0.75);
}
.faq-content-inner ul {
  margin-top: 10px;
  padding-left: 20px;
}
.faq-item.active .faq-trigger {
  color: var(--omega-red);
}
.faq-item.active .faq-trigger svg {
  transform: rotate(45deg);
}

/* SECTION FAQ INNER BOLD & DETAILS */
.faq-content-inner p {
  margin-bottom: 12px;
}
.faq-content-inner strong {
  color: var(--deep-blue);
  font-weight: 600;
}

/* SECTION CTA */
.cta-section {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--marine-blue) 50%, var(--ocean-blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.cta-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.2;
}
.cta-desc {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

/* FOOTER */
.footer {
  background-color: var(--deep-blue);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--ocean-blue);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-subtitle {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}
.footer-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--omega-red);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 0.9rem;
}
.footer-link a:hover {
  color: var(--omega-red);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--omega-red);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-fast);
}
.footer-social-icon:hover {
  background-color: var(--omega-red);
  transform: translateY(-3px);
}
.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}

/* FLOATING WA BUTTON */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  animation: pulseWa 2s infinite;
}
.floating-wa svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ANIMATIONS */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

@keyframes pulseWa {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.fade-in-up.appear {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.fade-in-left.appear {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.fade-in-right.appear {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.zoom-in.appear {
  opacity: 1;
  transform: scale(1);
}

/* RESPONSIVE MEDIA QUERIES (MOBILE FIRST) */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    height: 350px;
  }
  .timeline-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: 30px;
  }
  .timeline-line {
    top: 0;
    left: 45px;
    width: 3px;
    height: 90%;
  }
  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }
  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header {
    background-color: var(--deep-blue);
    padding: 15px 0;
  }
  .header.scrolled {
    padding: 12px 0;
  }
  .logo-title {
    color: var(--white);
  }
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background-color: var(--deep-blue);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 30px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-link {
    color: var(--white) !important;
    font-size: 1.1rem;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border: none;
    min-width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height var(--transition-normal);
  }
  .dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 10px 0;
  }
  .dropdown-item a {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
  }
  .nav-cta {
    margin-left: 0;
    width: 80%;
    text-align: center;
  }
  .nav-cta .btn {
    width: 100%;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .counter-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .counter-num {
    font-size: 2.8rem;
  }
  .gallery-grid {
    columns: 2 150px;
  }
  .testi-slider {
    height: 480px;
  }
  .testi-card {
    padding: 24px;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-desc {
    font-size: 1rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================
   SECTION KANTOR PELAYANAN / LOKASI KAMI
   ========================================== */
.office-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.office-bg-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  line-height: 0;
  z-index: 1;
}
.office-bg-pattern svg {
  width: 100%;
  height: auto;
}

.badge-red {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--omega-red);
  background-color: rgba(224, 0, 26, 0.08);
  border: 1px solid rgba(224, 0, 26, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.office-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 40px;
  position: relative;
  z-index: 5;
  margin-top: 50px;
  align-items: stretch;
}

.office-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 27, 61, 0.03);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.office-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.office-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(13, 27, 61, 0.08);
  padding-bottom: 24px;
  margin-bottom: 8px;
}
.logo-icon-large {
  width: 80px;
  height: 80px;
  font-size: 2.2rem;
  border-radius: 50%;
  background-color: var(--omega-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 4px solid rgba(224, 0, 26, 0.1);
  margin-bottom: 12px;
}
.office-logo-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--deep-blue);
  letter-spacing: 0.5px;
}
.office-logo-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ocean-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.office-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  color: rgba(13, 27, 61, 0.8);
  line-height: 1.6;
}
.office-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.office-detail-text a {
  color: var(--omega-red);
  font-weight: 600;
  transition: color var(--transition-fast);
}
.office-detail-text a:hover {
  color: var(--marine-blue);
  text-decoration: underline;
}

.office-cta-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}
.btn-cta-map {
  background-color: var(--omega-red);
  color: var(--white);
  border-radius: 30px;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.btn-cta-map:hover {
  background-color: #ff334b;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(224, 0, 26, 0.3);
}
.btn-cta-wa {
  border: 2px solid var(--marine-blue);
  color: var(--marine-blue);
  background-color: transparent;
  border-radius: 30px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all var(--transition-normal);
}
.btn-cta-wa:hover {
  background-color: var(--marine-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Social Media Row Styles */
.office-social-section {
  border-top: 1px solid rgba(13, 27, 61, 0.08);
  padding-top: 24px;
  margin-top: 8px;
}
.office-social-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--deep-blue);
  margin-bottom: 6px;
}
.office-social-subtitle {
  font-size: 0.8rem;
  color: rgba(13, 27, 61, 0.6);
  line-height: 1.5;
  margin-bottom: 16px;
}
.social-icons-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.social-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(13, 27, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(13, 27, 61, 0.03);
}
.social-btn:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 10px 20px rgba(13, 27, 61, 0.15);
}
.social-btn svg {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-fast);
}

/* Brand Colored Icons */
.sb-tiktok svg { fill: #000000; }
.sb-tiktok:hover {
  background-color: #000000;
  border-color: #000000;
}
.sb-tiktok:hover svg {
  fill: #ffffff;
  filter: drop-shadow(1.5px 0px 0px #00f2fe) drop-shadow(-1.5px 0px 0px #fe0979);
}

.sb-instagram svg { fill: #E1306C; }
.sb-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  border-color: transparent;
}
.sb-instagram:hover svg {
  fill: #ffffff;
}

.sb-instagram-off svg { fill: #C13584; }
.sb-instagram-off:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  border-color: transparent;
}
.sb-instagram-off:hover svg {
  fill: #ffffff;
}

.sb-facebook svg { fill: #1877F2; }
.sb-facebook:hover {
  background-color: #1877F2;
  border-color: #1877F2;
}
.sb-facebook:hover svg { fill: #ffffff; }

.sb-youtube svg { fill: #FF0000; }
.sb-youtube:hover {
  background-color: #FF0000;
  border-color: #FF0000;
}
.sb-youtube:hover svg { fill: #ffffff; }

/* Maps wrapper styling */
.office-map-wrapper {
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 27, 61, 0.03);
}
.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-floating-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(13, 27, 61, 0.95);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--white);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 280px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
}
.mfc-pin {
  font-size: 1.3rem;
  margin-top: 2px;
}
.mfc-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mfc-title {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 800;
}
.mfc-tag {
  font-size: 0.7rem;
  background-color: var(--omega-red);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 30px;
  font-weight: 600;
  align-self: flex-start;
  margin-bottom: 2px;
}
.mfc-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ocean-blue);
}
.mfc-desc {
  font-size: 0.65rem;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* MINIMAL FOOTER STYLES */
.footer-bottom-minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  width: 100%;
}
.footer-links-minimal {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-links-minimal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}
.footer-links-minimal a:hover {
  color: var(--omega-red);
}
.divider-dot {
  color: rgba(255, 255, 255, 0.3);
}
.footer-tagline-minimal {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ocean-blue);
}

/* RESPONSIVE STYLES FOR OFFICE SECTION */
@media (max-width: 1024px) {
  .office-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .office-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .office-card {
    padding: 30px 20px;
  }
  .office-cta-btns {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .office-map-wrapper {
    height: 350px;
  }
  .footer-bottom-minimal {
    flex-direction: column;
    text-align: center;
  }
}

