vb body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(270deg, #1e88e5, #4fc3f7, #0097e6, #1e88e5, #4fc3f7, #0097e6, #1e88e5);
  background-size: 2000% 2000%;
  animation: headerGradientMove 24s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 0;
  min-height: 100px;
  height: 100px;
  display: flex;
  align-items: center;
}

@keyframes headerGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  position: relative;
  max-width: 1200px;
  height: 80vh;
  margin: 3em auto;
  padding: 4em 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 64, 128, 0.1);
  background: transparent !important;
  animation: aestheticHeroIn 1.2s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes aestheticHeroIn {
0% {
  opacity: 0;
  transform: translateY(50px) scale(0.98);
  filter: blur(12px);
}
60% {
  opacity: 1;
  filter: blur(2px);
  transform: translateY(-8px) scale(1.01);
}
100% {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
}

/* === Hero Slider Styles - Full Image + Smooth Animation === */

.hero-container {
position: relative;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}

.hero-slide {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
opacity: 0;
transition: opacity 2s ease;
border-radius: 20px;
overflow: hidden;
pointer-events: none;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.hero-slide.active {
opacity: 1;
pointer-events: auto;
}

.hero-slide.active .hero-image {
box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 1.5px 8px rgba(0,0,0,0.10);
border: 3px solid rgba(255,255,255,0.7);
}

.hero-blur-bg {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background-size: cover;
background-position: center;
filter: blur(20px);
opacity: 0.7;
z-index: 1;
border-radius: 20px;
}

.hero-image-container {
position: relative;
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}

.hero-image {
max-width: 80vw;
max-height: 70vh;
width: 100%;
height: auto;
object-fit: contain;
border-radius: 15px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
background: rgba(255,255,255,0.05);
z-index: 2;
cursor: pointer;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
transform: scale(1.02);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem;
  color: #fff;
  background: none;
  border-radius: 20px;
  pointer-events: auto;
  max-width: 80%;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  color: #003366;
  margin: 0 auto 1.5rem auto;
  font-family: 'Special Gothic Expanded One', sans-serif;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.15);
  width: 100%;
  text-align: center;
  max-width: 800px;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease-out;
  position: relative;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #0066cc;
  margin-bottom: 2rem;
  font-weight: 600;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
  font-size: 1.1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button.primary {
  background: linear-gradient(135deg, #003366, #0066cc);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.cta-button.secondary {
  background: white;
  color: #003366;
  border: 2px solid #003366;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
}

.cta-button.secondary:hover {
  background: #003366;
  color: white;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 2rem;
    max-width: 90%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
}

.hero-prev,
.hero-next {
  display: none;
}

.tentang-modern {
  padding: 4em 2em;
  background: linear-gradient(135deg, #e6f0ff, #ffffff);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 64, 128, 0.1);
  margin: 3em auto;
  max-width: 1200px;
}

.tentang-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
}

.tentang-image {
  flex: 1 1 40%;
  text-align: center;
}

.tentang-img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.tentang-content {
  flex: 1 1 55%;
  font-family: 'Poppins', sans-serif;
  color: #2c3e50;
}

.tentang-content h2 {
  font-size: 2.5rem;
  color: #004080;
  margin-bottom: 1rem;
  font-family: 'Special Gothic Expanded One', sans-serif;
}

.tentang-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .tentang-container {
    flex-direction: column;
  }

  .tentang-content h2 {
    font-size: 2rem;
  }

  .tentang-content p {
    text-align: justify;
  }
}


.cta-button {
display: inline-block;
padding: 0.8em 1.5em;
background: linear-gradient(135deg, #004080, #007bff);
color: white;
font-size: 1.1rem;
font-weight: bold;
border-radius: 50px;
text-decoration: none;
transition: transform 0.3s ease, box-shadow 0.3s ease;
animation: bounce 0.8s infinite alternate; /* Animation for button */
}

@keyframes bounce {
from {
    transform: translateY(0); /* Original position */
}
to {
    transform: translateY(-5px); /* Slightly raised */
}
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.visimisi-modern {
background: #ffffff;
padding: 4em 2em;
border-radius: 20px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
max-width: 1200px;
margin: 3em auto;
position: relative;
overflow: hidden;
border: 2px solid #004080;
}

.visimisi-modern::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(90deg, #004080, #0077cc, #004080);
animation: gradientMove 3s linear infinite;
}

.visimisi-modern::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
  linear-gradient(45deg, transparent 48%, #004080 49%, #004080 51%, transparent 52%),
  linear-gradient(-45deg, transparent 48%, #004080 49%, #004080 51%, transparent 52%);
background-size: 30px 30px;
opacity: 0.03;
animation: patternMove 20s linear infinite;
pointer-events: none;
}

@keyframes gradientMove {
0% {
  background-position: 0% 50%;
}
100% {
  background-position: 100% 50%;
}
}

@keyframes patternMove {
0% {
  background-position: 0 0;
}
100% {
  background-position: 30px 30px;
}
}

.visimisi-modern h2 {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
color: #004080;
margin-bottom: 2rem;
font-family: 'Special Gothic Expanded One', sans-serif;
position: relative;
padding-bottom: 15px;
}

.visimisi-modern h2::after {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 0;
width: 100px;
height: 3px;
background: #004080;
border-radius: 2px;
}

.section-header {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title.blur-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 2rem;
  font-family: 'Special Gothic Expanded One', sans-serif;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
  width: 100%;
  display: inline-block;
}

.section-title.blur-text::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100px;
  height: 3px;
  background: #004080;
  border-radius: 2px;
}

.visimisi-grid {
display: flex;
flex-wrap: wrap;
gap: 2em;
justify-content: center;
position: relative;
z-index: 1;
}

.visimisi-grid::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 2px;
height: 80%;
background: linear-gradient(to bottom, transparent, #004080, transparent);
}

.visimisi-card {
flex: 1 1 45%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(5px);
padding: 2rem;
border-radius: 15px;
box-shadow: 0 8px 25px rgba(0, 64, 128, 0.1);
transition: all 0.3s ease;
border: 1px solid rgba(0, 64, 128, 0.1);
position: relative;
overflow: hidden;
}

.visimisi-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: #004080;
transition: all 0.3s ease;
}

.visimisi-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 30px rgba(0, 64, 128, 0.15);
border-color: rgba(0, 64, 128, 0.2);
}

.visimisi-card:hover::before {
width: 8px;
background: linear-gradient(to bottom, #004080, #0077cc);
}

.visimisi-card h3 {
font-size: 1.6rem;
color: #004080;
margin-bottom: 1rem;
font-family: 'Poppins', sans-serif;
font-weight: 600;
padding-left: 1rem;
}

.visimisi-card p,
.visimisi-card ul {
font-size: 1rem;
line-height: 1.8;
color: #2c3e50;
font-family: 'Poppins', sans-serif;
padding-left: 1rem;
}

.visimisi-card ul {
list-style: none;
padding-left: 1.2em;
}

.visimisi-card li {
margin-bottom: 0.5rem;
position: relative;
padding-left: 1.5rem;
}

.visimisi-card li::before {
content: '→';
position: absolute;
left: 0;
color: #004080;
font-weight: bold;
}

@media (max-width: 768px) {
.visimisi-grid::before {
  display: none;
}

.visimisi-card {
  flex: 1 1 100%;
}
}

.komitmen-modern,
.struktur-modern {
background: linear-gradient(to bottom right, #ffffff, #f4f7f9);
padding: 3rem;
margin: 3rem auto;
border-radius: 1.5rem;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.5);
max-width: 1100px;
position: relative;
overflow: hidden;
}

.tentang-modern h2,
.komitmen-modern h2,
.struktur-modern h2 {
font-size: 2rem;
font-weight: 600;
position: relative;
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
color: #1a202c;
}

.tentang-modern h2::after,
.komitmen-modern h2::after,
.struktur-modern h2::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 60px;
background: #3182ce;
border-radius: 2px;
}

.tentang-modern p,
.komitmen-modern p,
.komitmen-modern li,
.struktur-modern p {
font-size: 1rem;
color: #4a5568;
line-height: 1.7;
}

.komitmen-modern ul {
list-style: none;
padding: 0;
margin-top: 1.2rem;
}

.komitmen-modern li {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.75rem;
}

.komitmen-modern li::before {
content: "✔";
position: absolute;
left: 0;
color: #38a169;
font-weight: bold;
}

.struktur-modern .staff-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}

.struktur-modern .staff-member {
background: #edf2f7;
padding: 1.5rem;
border-radius: 1rem;
text-align: center;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
transition: transform 0.3s ease;
}

.struktur-modern .staff-member:hover {
transform: translateY(-5px);
}

.struktur-modern .staff-member h3 {
font-size: 1.25rem;
font-weight: 600;
color: #2d3748;
}

.struktur-modern .staff-member p {
font-size: 0.95rem;
color: #718096;
}

.wave-divider {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}


.cta-text {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  margin-top: 0; /* Atur margin atas jika perlu */
}

.cta-text:hover {
  transform: scale(1.05);
}

.mobile-nav {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100vh - 100px);
  background: linear-gradient(135deg, #1e88e5 0%, #4fc3f7 100%);
  padding: 3.5rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 1001;
  overflow-y: auto;
  box-sizing: border-box;
}

.mobile-nav.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  display: block;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 1.2rem;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  outline: none;
  background: transparent !important;
  color: #fff !important;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(255,255,255,0.08) !important;
  color: #4fc3f7 !important;
}

.mobile-nav a.active, .mobile-nav a.current {
  background: rgba(255,255,255,0.18) !important;
  color: #4fc3f7 !important;
}

@media (max-width: 480px) {
  .mobile-nav {
    padding: 3.5rem 0.5rem 2rem 0.5rem;
  }
}

.header-left,
.header-center,
.header-right {
flex: 1;
text-align: center;
padding: 0 1rem;
}

.header-right {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 1rem;
}

/* Enhanced Hamburger/X Button Styles for Bold Red X */
.overlay {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 12px;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1101;
}
.overlay:focus {
  outline: 2px solid #4fc3f7;
}
.overlay.active {
  background: #D7263D;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.button {
  width: 32px;
  height: 6px;
  background: #fff;
  border-radius: 3px;
  position: relative;
  transition: 0.4s cubic-bezier(0.6, -0.46, 0.21, 1.3);
}
.button:before, .button:after {
  content: "";
  position: absolute;
  left: 0;
  width: 32px;
  height: 6px;
  background: #fff;
  border-radius: 3px;
  transition: 0.4s cubic-bezier(0.6, -0.46, 0.21, 1.3);
}
.button:before {
  top: -12px;
}
.button:after {
  top: 12px;
}
.overlay.active .button {
  background: transparent;
}
.overlay.active .button:before {
  top: 0;
  transform: rotate(45deg);
  background: #fff;
}
.overlay.active .button:after {
  top: 0;
  opacity: 1;
  transform: rotate(-45deg);
  background: #fff;
}

/* Remove old .hamburger styles if present */
.hamburger { display: none !important; }

@media (max-width: 768px) {
  .header-inner.new-header-layout {
    padding: 0 1rem;
    justify-content: space-between;
  }

  .logo-nav-container {
    flex: 1;
    justify-content: flex-start;
  }

  .logo {
    max-width: 120px;
  }

  .main-nav {
    display: none;
  }

  .header-center-mobile {
    display: flex;
    align-items: center;
  }

  .header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .wrapper {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    width: auto;
    flex: none;
  }

  .cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    min-width: auto;
    box-shadow: none;
  }

  .cta span:nth-child(2) svg {
    width: 40px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .header-inner.new-header-layout {
    padding: 0 0.5rem;
  }

  .logo {
    max-width: 100px;
  }

  .cta {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .cta span:nth-child(2) svg {
    width: 35px;
    height: 22px;
  }
}

/* Remove all other mobile header styles */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  
  .header-inner.new-header-layout,
  .logo-nav-container,
  .logo-container {
    height: 70px !important;
  }
  
  .logo {
    height: 45px !important;
    width: auto !important;
  }
}

@media (max-width: 480px) {
  .header-inner.new-header-layout,
  .logo-nav-container,
  .logo-container {
    height: 60px !important;
  }
  
  .logo {
    height: 35px !important;
  }
}

/* Logo tetap rata kiri */
.header-left {
text-align: left;
}

/* Kontainer logo + judul */
.logo-container {
display: flex;
align-items: center;
}

.logo {
width: 180px;
height: 45px;
object-fit: contain;
}

.contact-button {
  background: linear-gradient(135deg, #5768ff, #7b4fff);
  color: #fff;
  padding: 0.7em 1.5em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  height: 38px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(87, 104, 255, 0.3);
}

.contact-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(87, 104, 255, 0.4);
}

.contact-button:hover::before {
  left: 100%;
}

.mobile-contact-button {
  display: none;
  background: linear-gradient(135deg, #5768ff, #7b4fff);
  color: #fff;
  padding: 0.7em 1.5em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(87, 104, 255, 0.3);
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.mobile-contact-button:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 20px rgba(87, 104, 255, 0.4);
}

@media (max-width: 768px) {
  .mobile-contact-button {
    display: block;
  }
  
  .contact-button {
    display: none;
  }
}

/* Untuk memastikan teks tidak terlalu besar */
header h1 {
font-size: 1.1rem;
margin: 0;
color: #ffffff;
font-family: 'Poppins', sans-serif;
}

.header-center {
flex: 1;
justify-content: center;
text-align: center;
margin: 0 2rem;
}

.tagline {
font-size: 1rem;
font-weight: 600;
color: #ffffff;
font-family: 'Poppins', sans-serif;
white-space: nowrap;
}

header.scrolled {
  background-color: rgba(0, 64, 128, 0.70);
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header h1 {
  font-size: 1rem;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
 
/* Link nav */
nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

header nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 0.5em;
  font-weight: bold;
  transition: color 0.3s;
}

header nav a:hover {
  color: #ffdd57;
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


html {
  scroll-behavior: smooth;
}
  
footer {
  background: linear-gradient(135deg, #153a5b 0%, #1e4d7b 100%);
  color: #f4faff;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  font-family: 'Poppins', Arial, sans-serif;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #56ccf2, #2f80ed, #56ccf2);
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 60px 32px 30px;
  position: relative;
  z-index: 1;
}

.footer-section {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-section h3, .footer-section h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #56ccf2;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after, .footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #56ccf2, #2f80ed);
  border-radius: 2px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #e6f0ff;
  transition: transform 0.3s ease;
}

.contact-info p:hover {
  transform: translateX(5px);
}

.contact-info i {
  font-size: 1.3rem;
  color: #56ccf2;
  transition: transform 0.3s ease;
}

.contact-info p:hover i {
  transform: scale(1.2);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 1rem;
  color: #b3c6e6;
  margin: 0;
  position: relative;
  display: inline-block;
}

.footer-bottom p::before {
  content: '©';
  margin-right: 5px;
  color: #56ccf2;
}

/* Floating elements animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.footer-section::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, transparent, rgba(86, 204, 242, 0.1), transparent);
  z-index: -1;
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px 20px;
  }

  .footer-section {
    padding: 15px;
  }

  .footer-section h3, .footer-section h4 {
    font-size: 1.2rem;
  }

  .contact-info p {
    font-size: 1rem;
  }
}

nav {
  margin-top: 0.5em;
}

nav a {
  color: white;
  margin: 0 0.8em;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background-color: #e6f2ff;
  padding: 2em;
  text-align: center;
}

.hero .cta {
  display: inline-block;
  margin-top: 1em;
  padding: 0.7em 1.5em;
  background-color: #004080;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.section {
  padding: 2em;
}

.section h2 {
  color: #004080;
}

.staff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
}

.staff-member {
  flex: 1 1 calc(50% - 1em);
  background-color: #f5f5f5;
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  text-align: center;
}

footer {
  font-size: 0.9em;
}

/* Responsiveness */
@media (max-width: 768px) {
  nav a {
    display: block;
    margin: 0.5em 0;
  }

  .staff-member {
    flex: 1 1 100%;
  }

  .hero h2 {
    font-size: 1.5em;
  }

  .hero p {
    font-size: 1em;
  }
}

/* Responsiveness */
@media (max-width: 768px) {
  nav a {
    display: block;
    margin: 0.5em 0;
  }

  .staff-member {
    flex: 1 1 100%;
  }

  .hero h2 {
    font-size: 1.5em;
  }

  .hero p {
    font-size: 1em;
  }
}

@media (max-width: 600px) {
  .logo {
    height: 120px !important;
    width: auto !important;
    max-width: 100vw !important;
    min-width: 120px !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 100px !important;
    width: auto !important;
    max-width: 100vw !important;
    min-width: 100px !important;
    display: block !important;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
  }

  nav {
    text-align: center;
    margin-top: 0.5em;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 0.5em;
  }

  .header-left,
  .header-center,
  .header-right {
    text-align: center;
    flex: none;
  }

  header h1 {
    font-size: 1rem;
  }

  .tagline {
    font-size: 0.95rem;
  }
}

/* Remove all slider-related CSS */
.slider,
.slides,
.slide,
.prev,
.next {
  display: none;
}

.produk-modern {
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
padding: 3em 2em;
margin: 3em auto;
max-width: 1200px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Background decorative elements */
.produk-modern::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
  radial-gradient(circle at 20% 20%, rgba(0, 64, 128, 0.03) 0%, transparent 50%),
  radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
  linear-gradient(45deg, transparent 48%, rgba(0, 64, 128, 0.02) 49%, rgba(0, 64, 128, 0.02) 51%, transparent 52%);
background-size: 100% 100%, 100% 100%, 30px 30px;
pointer-events: none;
}

.floating-shape {
position: absolute;
opacity: 0.08;
filter: blur(1px);
animation: float 15s infinite ease-in-out;
pointer-events: none;
}

.shape1 {
width: 180px;
height: 180px;
background: #004080;
top: -60px;
left: -60px;
animation-delay: 0s;
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
transform: rotate(15deg);
}

.shape2 {
width: 120px;
height: 120px;
background: #007bff;
bottom: -40px;
right: 10%;
animation-delay: 2s;
clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
transform: rotate(-10deg);
}

.shape3 {
width: 100px;
height: 100px;
background: #004080;
top: 30%;
left: 80%;
animation-delay: 4s;
clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
transform: rotate(5deg);
}

@keyframes float {
0%, 100% {
  transform: translateY(0) rotate(var(--rotation));
}
50% {
  transform: translateY(-20px) rotate(calc(var(--rotation) + 5deg));
}
}

.shape1 { --rotation: 15deg; }
.shape2 { --rotation: -10deg; }
.shape3 { --rotation: 5deg; }

/* Add subtle gradient overlay */
.produk-modern::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
  radial-gradient(circle at 20% 20%, rgba(0, 64, 128, 0.03) 0%, transparent 50%),
  radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
  linear-gradient(45deg, transparent 48%, rgba(0, 64, 128, 0.02) 49%, rgba(0, 64, 128, 0.02) 51%, transparent 52%);
background-size: 100% 100%, 100% 100%, 30px 30px;
pointer-events: none;
}

/* Add subtle shine effect */
.produk-modern::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(
  135deg,
  rgba(255, 255, 255, 0.1) 0%,
  rgba(255, 255, 255, 0) 50%,
  rgba(255, 255, 255, 0.1) 100%
);
pointer-events: none;
}

/* Rest of the existing produk-modern styles */
.produk-header {
text-align: center;
margin-bottom: 3rem;
position: relative;
z-index: 1;
}

.produk-header .produk-title {
  font-size: 2.7rem !important;
  font-family: 'Special Gothic Expanded One', sans-serif !important;
  color: #004080 !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  position: relative !important;
  display: inline-block !important;
}

.produk-grid {
position: relative;
z-index: 1;
}

.produk-title {
  font-size: 2.5rem;
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-weight: 700;
  color: #004080;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
  display: inline-block;
}

.produk-title::after {
content: "";
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: -10px;
width: 80px;
height: 3px;
background: linear-gradient(90deg, #004080, #007bff);
border-radius: 2px;
}

.produk-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
padding: 0;
max-width: 1200px;
margin: 0 auto;
}

.produk-card {
background: white;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
flex-direction: column;
position: relative;
border: 1px solid rgba(0, 0, 0, 0.05);
}

.produk-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #004080, #007bff);
opacity: 0;
transition: opacity 0.3s ease;
}

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

.produk-card:hover::before {
opacity: 1;
}

.produk-image {
width: 100%;
height: 220px;
object-fit: cover;
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.produk-card:hover .produk-image {
transform: scale(1.08);
}

.produk-card h3 {
font-size: 1.3rem;
color: #004080;
margin: 1.2rem 1.2rem 0.8rem;
font-family: 'Poppins', Arial, sans-serif;
font-weight: 600;
position: relative;
padding-bottom: 0.5rem;
}

.produk-card h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 2px;
background: #007bff;
transition: width 0.3s ease;
}

.produk-card:hover h3::after {
width: 60px;
}

.produk-card p {
font-size: 0.95rem;
color: #555;
margin: 0 1.2rem 1.2rem;
line-height: 1.6;
flex-grow: 1;
text-align: left;
font-family: 'Poppins', Arial, sans-serif;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
.produk-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
}

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

.produk-image {
  height: 200px;
}

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

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

.produk-image {
  height: 180px;
}

.produk-title {
  font-size: 1.8rem;
}
}

@keyframes heroZoomIn {
0% { transform: scale(0.97); }
100% { transform: scale(1); }
}

.contact-info .social-link {
  color: #ffdd57;
  font-size: 0.95em;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.contact-info .social-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.contact-info i.fab {
  font-size: 1.3em;
  margin-right: 8px;
  vertical-align: middle;
}

.contact-info .social-link {
  color: #ffdd57;
  font-size: 0.95em;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.contact-info .social-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.header-inner.new-header-layout {
display: flex;
align-items: center;
justify-content: space-between;
height: 120px;
max-width: 1200px;
margin: 0 auto;
padding: 0 2.2em 0 2.8em;
width: 100%;
}

.logo-nav-container {
display: flex;
align-items: center;
gap: 1.2em;
height: 120px;
}

.logo-container {
display: flex;
align-items: center;
height: 120px;
margin-left: 0.2em;
}

.logo {
height: 110px;
width: auto;
object-fit: contain;
display: block;
}

.main-nav {
display: flex;
align-items: center;
gap: 1.5em;
margin-left: 1.2em;
height: 58px;
}

.nav-link {
color: #fff;
font-size: 1.08rem;
font-weight: 600;
text-decoration: none;
padding: 0.2em 0.3em;
position: relative;
transition: color 0.2s;
line-height: 1.2;
display: flex;
align-items: center;
height: 58px;
}

.header-right {
display: flex;
align-items: center;
gap: 1em;
height: 58px;
}

.contact-button {
background: #5768ff;
color: #fff;
padding: 0.45em 1.1em;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
transition: background 0.2s, color 0.2s;
border: none;
height: 38px;
display: flex;
align-items: center;
}

.hamburger {
width: 32px;
height: 32px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
cursor: pointer;
padding: 0.2rem;
background: none;
border: none;
}

.hamburger span {
display: block;
height: 3px;
width: 100%;
background-color: #ffffff;
border-radius: 3px;
transition: transform 0.4s cubic-bezier(0.6, -0.46, 0.21, 1.3), background 0.2s;
margin: 3px 0;
}

@media (max-width: 900px) {
.header-inner.new-header-layout,
.logo-nav-container,
.logo-container {
  height: 85px;
}
.logo {
  height: 75px;
}
.header-inner.new-header-layout {
  padding: 0 1em 0 1.5em;
}
}

@media (max-width: 700px) {
.header-inner.new-header-layout,
.logo-nav-container,
.logo-container {
  height: 70px;
}
.logo {
  height: 60px;
}
.header-inner.new-header-layout {
  padding: 0 0.5em 0 0.7em;
}
}

@media (max-width: 600px) {
.header-inner,
.header-inner.new-header-layout {
  align-items: center !important;
  height: 120px !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
}
.hamburger {
  height: 120px !important;
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}
}

@media (max-width: 480px) {
.header-inner,
.header-inner.new-header-layout {
  height: 100px !important;
}
.hamburger {
  height: 100px !important;
}
}

/* Updated Mobile Styles */
@media (max-width: 768px) {
.header-inner {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.main-nav {
  display: none;
}
.logo {
  width: 32px;
  height: 32px;
}
.contact-button {
  font-size: 0.85rem;
  padding: 0.4em 0.8em;
}
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
.header-inner.new-header-layout {
  padding: 0 0.5rem;
  height: 50px;
}

.logo {
  width: 28px;
  height: 28px;
}

.logo-container h1 {
  font-size: 0.8rem;
}

.contact-button {
  font-size: 0.8rem;
  padding: 0.3em 0.6em;
}

.hero {
  min-height: 250px;
}

.hero-image {
  max-height: 30vh;
}

.hero-caption {
  font-size: 0.85rem;
  bottom: 10px;
}

.tentang-content h2 {
  font-size: 1.6rem;
}

.tentang-content p {
  font-size: 0.9rem;
}

.visimisi-card h3 {
  font-size: 1.3rem;
}

.produk-card h3 {
  font-size: 1.1rem;
}

.produk-card p {
  font-size: 0.85rem;
}
}

@media (min-width: 769px) {
  .header-center-mobile {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .header-center-mobile {
    display: flex !important;
  }
  .main-nav {
    display: none !important;
  }
}

.hero-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.indicator:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.indicator.active {
  background: #fff;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hero-indicators {
    bottom: 15px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

.wrapper {
  display: flex;
  justify-content: center;
}

.cta {
  display: flex;
  padding: 6px 25px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: white;
  background: #1e88e5;
  transition: 1s;
  box-shadow: 4px 4px 0 #4fc3f7;
  transform: skewX(-15deg);
  align-items: center;
}

.cta:focus {
  outline: none; 
}

.cta:hover {
  transition: 0.5s;
  box-shadow: 6px 6px 0 #4fc3f7;
  background: #4fc3f7;
}

.cta span:nth-child(2) {
  transition: 0.5s;
  margin-right: 0px;
}

.cta:hover span:nth-child(2) {
  transition: 0.5s;
  margin-right: 25px;
}

.cta span {
  transform: skewX(15deg);
}

.cta span:nth-child(2) {
  width: 16px;
  margin-left: 15px;
  position: relative;
  top: 12%;
}

.cta span:nth-child(2) svg {
  width: 40px;
  height: 26px;
}

/* SVG animations */
path.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

path.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta:hover path.three {
  animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
  0% {
    fill: white;
  }
  50% {
    fill: #FBC638;
  }
  100% {
    fill: white;
  }
}

/* Mobile styles */
.mobile-wrapper {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.mobile-cta {
  font-size: 14px;
  padding: 5px 20px;
}

.mobile-cta span:nth-child(2) svg {
  width: 32px;
  height: 20px;
}

@media (max-width: 768px) {
  .wrapper {
    display: none;
  }
  
  .mobile-wrapper {
    display: flex;
  }
}

.header-center-mobile {
  display: flex;
  align-items: center;
  position: static;
  top: auto;
  left: auto;
  transform: none;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

@keyframes mobileMenuFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-30px); }
}
.mobile-nav.menu-closing {
  animation: mobileMenuFadeOut 0.4s forwards;
}

.produk-title,
.produk-card h3,
.produk-card p {
  font-family: 'Poppins', Arial, sans-serif !important;
}

.produk-card p {
  font-family: 'Poppins', Arial, sans-serif !important;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.1px;
}

.footer-section h4,
.footer-section p,
.contact-info p {
  font-family: 'Playfair Display', 'Poppins', Arial, sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.1px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e6f0ff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.1);
  color: #56ccf2;
}

.social-link i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.2);
}

.social-link i.fa-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-link i.fa-whatsapp {
  color: #25D366;
}

/* Scroll Reveal Text Animation */
.reveal-text {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.reveal-text span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: revealText 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  will-change: transform, opacity;
}

@keyframes revealText {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Blur Text Animation Styles */
.blur-text {
  position: relative;
  display: inline-block;
  color: #004080;
  text-align: center;
  width: 100%;
  visibility: hidden; /* Hide initially */
}

.blur-text.animate {
  visibility: visible; /* Show when animation starts */
}

.blur-text span {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-20px);
  animation: none;
  visibility: visible; /* Keep spans visible when parent is visible */
}

.blur-text.animate span {
  animation: introBlur 0.3s ease-out forwards;
}

.blur-text.animate span:nth-child(1) { animation-delay: 0.05s; }
.blur-text.animate span:nth-child(2) { animation-delay: 0.1s; }
.blur-text.animate span:nth-child(3) { animation-delay: 0.15s; }
.blur-text.animate span:nth-child(4) { animation-delay: 0.2s; }
.blur-text.animate span:nth-child(5) { animation-delay: 0.25s; }
.blur-text.animate span:nth-child(6) { animation-delay: 0.3s; }
.blur-text.animate span:nth-child(7) { animation-delay: 0.35s; }
.blur-text.animate span:nth-child(8) { animation-delay: 0.4s; }
.blur-text.animate span:nth-child(9) { animation-delay: 0.45s; }
.blur-text.animate span:nth-child(10) { animation-delay: 0.5s; }
.blur-text.animate span:nth-child(11) { animation-delay: 0.55s; }

@keyframes introBlur {
  0% {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title.blur-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 2rem;
  font-family: 'Special Gothic Expanded One', sans-serif;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
  width: 100%;
  display: inline-block;
}

.section-title.blur-text::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100px;
  height: 3px;
  background: #004080;
  border-radius: 2px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .section-title.blur-text {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .blur-text span {
    transform: translateY(-15px);
  }

  @keyframes introBlur {
    0% {
      filter: blur(6px);
      opacity: 0;
      transform: translateY(-15px);
    }
    100% {
      filter: blur(0);
      opacity: 1;
      transform: translateY(0);
    }
  }

  .section-title.blur-text::after {
    width: 80px;
    height: 2px;
  }
}

@media (max-width: 480px) {
  .section-title.blur-text {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }

  .blur-text span {
    transform: translateY(-10px);
  }

  @keyframes introBlur {
    0% {
      filter: blur(4px);
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      filter: blur(0);
      opacity: 1;
      transform: translateY(0);
    }
  }

  .section-title.blur-text::after {
    width: 60px;
    height: 2px;
  }
}

/* Loader Styles */
.loader {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  transition: width 0s 1.4s ease;
}

.loader .loader__icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.loader .loader__icon svg {
  transform-origin: 0 0;
}

.loader .loader__tile {
  position: absolute;
  left: 0;
  width: 0;
  height: 20%;
  background-color: #007AE5;
  transition: width 0.7s ease;
}

.loader .loader__tile:nth-child(0) {
  top: calc(-1 * 20%);
  transition-delay: -0.2s;
}

.loader .loader__tile:nth-child(1) {
  top: calc(0 * 20%);
  transition-delay: 0s;
}

.loader .loader__tile:nth-child(2) {
  top: calc(1 * 20%);
  transition-delay: 0.2s;
}

.loader .loader__tile:nth-child(3) {
  top: calc(2 * 20%);
  transition-delay: 0.4s;
}

.loader .loader__tile:nth-child(4) {
  top: calc(3 * 20%);
  transition-delay: 0.6s;
}

.loader .loader__tile:nth-child(5) {
  top: calc(4 * 20%);
  transition-delay: 0.8s;
}

.loader--active {
  width: 100%;
  transition-delay: 0s;
}

.loader--active .loader__icon {
  opacity: 1;
  transition: opacity 0.5s 1.4s ease;
}

.loader--active .loader__tile {
  width: 100%;
}

.loader--active .loader__tile:nth-child(0) {
  transition-delay: -0.2s;
}

.loader--active .loader__tile:nth-child(1) {
  transition-delay: 0s;
}

.loader--active .loader__tile:nth-child(2) {
  transition-delay: 0.2s;
}

.loader--active .loader__tile:nth-child(3) {
  transition-delay: 0.4s;
}

.loader--active .loader__tile:nth-child(4) {
  transition-delay: 0.6s;
}

.loader--active .loader__tile:nth-child(5) {
  transition-delay: 0.8s;
}

.tracking-title {
  display: inline-block;
  opacity: 0;
  letter-spacing: -0.1em;
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: 2.5rem;
  color: #004080;
  font-weight: 700;
  margin-bottom: 1.5rem;
  transition: none;
}

.tracking-title.animate {
  animation: trackingIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes trackingIn {
  0% {
    opacity: 0;
    letter-spacing: -0.1em;
    transform: scale(0.95);
  }
  40% {
    opacity: 1;
    letter-spacing: 0.15em;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    letter-spacing: 0.05em;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .tracking-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .tracking-title {
    font-size: 1.5rem;
  }
}

.produk-header .produk-title.tracking-title {
  font-size: 2.5rem !important;
  font-family: 'Special Gothic Expanded One', sans-serif !important;
  font-weight: 700 !important;
  color: #004080 !important;
  margin-bottom: 2rem !important;
  letter-spacing: 0.05em !important;
  text-align: center !important;
  display: inline-block !important;
}

@media (max-width: 768px) {
  .produk-header .produk-title.tracking-title {
    font-size: 2rem !important;
  }
}
@media (max-width: 480px) {
  .produk-header .produk-title.tracking-title {
    font-size: 1.8rem !important;
  }
}

.produk-title.tracking-title span {
  display: inline-block;
  opacity: 0;
  transform: scale(0.8);
  animation: centerOutProduk 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.produk-title.tracking-title.animate span {
  /* Animation delay will be set by JS */
}

@keyframes centerOutProduk {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.reveal-wrapper .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #38bdf8;
  will-change: transform, left, opacity;
}

.reveal-wrapper.animate .line {
  animation:
    line-grow 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards,
    line-move-stay 0.7s cubic-bezier(0.77, 0, 0.175, 1) forwards 1.2s,
    line-fadeout 1s linear forwards 1.9s;
}

.produk-reveal-text {
  font-size: 2.5rem;
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-weight: 700;
  color: #004080;
  transform: translateX(-100%);
  opacity: 0;
  will-change: transform, opacity;
}

.reveal-wrapper.animate .produk-reveal-text {
  animation: text-swipe 1s cubic-bezier(0.77, 0, 0.175, 1) forwards 1.15s;
}

@keyframes line-grow {
  0% { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}
@keyframes line-move-stay {
  0%   { left: 0; opacity: 1; }
  100% { left: 100%; opacity: 1; }
}
@keyframes line-fadeout {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes text-swipe {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}