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

/* Basic reset & body */
* { margin:0; padding:0; box-sizing:border-box; font-family: 'Poppins', sans-serif; }
body {
  background: #05060a;
  color:#333;
  min-height: 100vh;
}

/* Background Animation */
@keyframes gradientBody {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* =============================
   HEADER
============================= */
header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 20px;
  background: transparent;
}
@keyframes gradientHeader {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
.logo { height: 50px; }
nav a { color:#fff; margin-left:20px; text-decoration:none; font-weight:600; }
nav a:hover { text-decoration:underline; }

/* =============================
   LANDING SECTION
============================= */
.landing {
  width: 100%;
  height: 780px;
  position:relative;
  display: flex;
  align-items:center;
  justify-content:center;
}
.landing::before {
  content:""; position:absolute; inset:0; 
  background-image: url("../images/Asset2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}
.landing-content { position:relative; z-index:2; text-align:center; color:#fff; }
.landing-content h1 { font-size:56px; margin-bottom:12px; }
.landing-content p { font-size:22px; margin-bottom:20px; }
.landing-title-img {
    width: 600px; /* adjust as needed */
    max-width: 90%;
    height: auto;
    margin-bottom: 20px;
}

.btn {
  display:inline-block; padding:12px 28px; background:#003366; color:#fff; text-decoration:none; border-radius:6px; font-size:18px;
}
.btn:hover { background:#a1b8cf; }

/* ================================
   GLASSMORPHISM BUTTON SECTION
   ================================ */

   .container {
  width: 1000px;
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.container .btn-glass {
  position: relative;
  width: 250px;
  height: 50px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .btn-glass a {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(38, 10, 104, 0.05);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  padding: 10px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  transition: 0.5s;
  backdrop-filter: blur(15px);
}

.container .btn-glass:hover a {
  letter-spacing: 3px;
}

.container .btn-glass a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(45deg) translateX(0);
  transition: 0.5s;
}

.container .btn-glass:hover a::before {
  transform: skewX(45deg) translateX(200px);
}

/* LIGHT-UP BORDER (TOP & BOTTOM) */
.container .btn-glass::before,
.container .btn-glass::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 10px;
  border-radius: 10px;
  transition: 0.5s;
  transition-delay: 0.5s;
}

.container .btn-glass::before {
  bottom: -5px;
}
.container .btn-glass:hover::before {
  bottom: 0;
  height: 50%;
  width: 80%;
  border-radius: 30px;
}

.container .btn-glass::after {
  top: -5px;
}

.container .btn-glass:hover::after {
  top: 0;
  height: 50%;
  width: 80%;
  border-radius: 30px;
}

/* Button colors */
.container .btn-glass:nth-child(1)::before,
.container .btn-glass:nth-child(1)::after {
  background: #460242;
  box-shadow: 0 0 15px #220577;
}

.container .btn-glass:nth-child(2)::before,
.container .btn-glass:nth-child(2)::after {
  background: #2db2ff;
  box-shadow: 0 0 15px #2db2ff;
}

.container .btn-glass:nth-child(3)::before,
.container .btn-glass:nth-child(3)::after {
  background: #1eff45;
  box-shadow: 0 0 15px #1eff45;
}

/* Footer */
footer {
  align-items:center;
  padding: 18px;
  background: linear-gradient(-45deg,#b0b4d6, #1e1a98, #110d86, #242366, #242366, #e60505);
  background-size: 400% 400%;
  animation: gradientHeader 12s ease infinite;
  color:#fff;
  margin-top:30px;
}
/* Responsive */
@media (max-width:768px){
  .landing { height:600px; }
  .landing-content h1 { font-size:34px; }
  .landing-content p { font-size:16px; margin-bottom:16px; }
  .btn { font-size:14px; padding:10px 20px; }
  header { flex-direction:column; align-items:flex-start; }
  nav a { margin:10px 10px 0 0; }
}

/* About Page */
.about-page {
  background-color: rgb(241, 241, 241);
    padding: 90px;
    background-image: url("../images/service1.jpg");
    background-size: cover;
    background-position: center;
}

.about-hero {
    text-align: center;
    padding: 60px 50px;
    color: rgb(252, 251, 251);
    margin-bottom: 10px;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    top : 20px;
}

.about-hero p {
    font-size: 30px;
}

.about-content {
    max-width: 1000px;
    margin: auto;
    line-height: 1.7;
}

.about-content h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #030303;
}

.about-content p {
    margin-bottom: 10px;
    font-size: 18px;
}
.btn-primary {
            background: linear-gradient(90deg, #ff3a82, #5233ff);
            color: white;
  font-weight: 600;
            font-size: 1rem;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
  transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 20px rgba(255, 58, 130, 0.3);
}

        .btn:hover {
  transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 58, 130, 0.4);
        }

        .gradient-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
  z-index: 1;
            overflow: hidden;
        }

        .gradient-sphere {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
        }

        .sphere-1 {
            width: 40vw;
            height: 40vw;
            background: linear-gradient(40deg, rgba(230, 6, 6, 0.671), rgba(245, 13, 5, 0.4));
            top: 10%;
            left: -10%;
            animation: float-1 15s ease-in-out infinite alternate;
        }

        .sphere-2 {
            width: 45vw;
            height: 45vw;
            background: linear-gradient(240deg, rgba(72, 0, 255, 0.8), rgba(0, 183, 255, 0.4));
            bottom: -20%;
            right: -10%;
            animation: float-2 18s ease-in-out infinite alternate;
        }

        .sphere-3 {
            width: 30vw;
            height: 30vw;
            background: linear-gradient(120deg, rgba(133, 89, 255, 0.5), rgba(98, 216, 249, 0.3));
            top: 60%;
            left: 20%;
            animation: float-3 20s ease-in-out infinite alternate;
        }

        .noise-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            z-index: 5;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        @keyframes float-1 {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(10%, 10%) scale(1.1);
            }
        }

        @keyframes float-2 {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(-10%, -5%) scale(1.15);
            }
        }

        @keyframes float-3 {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }
            100% {
                transform: translate(-5%, 10%) scale(1.05);
                opacity: 0.6;
            }
        }

        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: 40px 40px;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            z-index: 2;
        }

        .glow {
            position: absolute;
            width: 40vw;
            height: 40vh;
            background: radial-gradient(circle, rgba(72, 0, 255, 0.15), transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            animation: pulse 8s infinite alternate;
            filter: blur(30px);
        }

        @keyframes pulse {
            0% {
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(0.9);
            }
            100% {
                opacity: 0.7;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: white;
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
        }

    .square-box {
  width: 250px;          /* size of the square */
  height: 250px;         /* makes it square */
  background: white;     /* box color */
  border-radius: 12px;   /* rounded corners */
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);  /* soft shadow */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Dark theme override */
.theme-dark {
  background: url("../images/background 1.jpeg") center 30% / 110% no-repeat fixed;
  background-color: #0a0d1a;
  position: relative;
}

.theme-dark::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 30% 40%, rgba(255, 0, 0, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(138, 43, 226, 0.15) 0%, transparent 55%),
    linear-gradient(135deg, rgba(10, 13, 26, 0.4) 0%, rgba(5, 6, 10, 0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Fade effect untuk aircraft page */
#aircraftPage {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
  animation: none;
  color: #f5f5f7;
  position: relative;
}

/* About page specific background - same as index page */
.theme-about {
  background: url("../images/background 1.jpeg") center 30% / 110% no-repeat fixed;
  background-color: #0a0d1a;
  animation: none;
  position: relative;
}

.theme-about::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 30% 40%, rgba(255, 0, 0, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(138, 43, 226, 0.15) 0%, transparent 55%),
    linear-gradient(135deg, rgba(10, 13, 26, 0.4) 0%, rgba(5, 6, 10, 0.6) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Heritage page specific background - same as index page */
.theme-heritage {
  background: url("../images/background 1.jpeg") center 30% / 110% no-repeat fixed;
  background-color: #0a0d1a;
  animation: none;
  position: relative;
}

.theme-heritage::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 30% 40%, rgba(255, 0, 0, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(138, 43, 226, 0.15) 0%, transparent 55%),
    linear-gradient(135deg, rgba(10, 13, 26, 0.4) 0%, rgba(5, 6, 10, 0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

/* About Hero Section */
.about-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.glowing-ring-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  z-index: 1;
  pointer-events: none;
}

.glowing-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, 
    rgba(79, 195, 247, 0.4) 0%,
    rgba(79, 195, 247, 0.2) 30%,
    rgba(230, 5, 5, 0.2) 60%,
    rgba(230, 5, 5, 0.4) 100%);
  box-shadow: 
    0 0 100px rgba(79, 195, 247, 0.6),
    0 0 200px rgba(79, 195, 247, 0.4),
    0 0 300px rgba(230, 5, 5, 0.3),
    inset 0 0 100px rgba(79, 195, 247, 0.2);
  animation: ringPulse 4s ease-in-out infinite;
  filter: blur(2px);
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.about-main-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.title-line-1 {
  font-size: 72px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 
    0 0 20px rgba(79, 195, 247, 0.5),
    0 0 40px rgba(79, 195, 247, 0.3);
  position: relative;
  background-image: 
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 8px,
      rgba(79, 195, 247, 0.03) 8px,
      rgba(79, 195, 247, 0.03) 10px
    ),
    repeating-linear-gradient(
      -60deg,
      transparent,
      transparent 8px,
      rgba(79, 195, 247, 0.03) 8px,
      rgba(79, 195, 247, 0.03) 10px
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #ffffff;
  background-size: 20px 20px;
}

.title-line-2 {
  font-size: 64px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 8px 0;
}

.title-line-2::before,
.title-line-2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.title-line-2::before {
  top: 0;
}

.title-line-2::after {
  bottom: 0;
}

.title-location {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 8px;
}

.about-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

.cta-btn-secondary {
  padding: 14px 32px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.about-trust-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .glowing-ring-container {
    width: 400px;
    height: 400px;
  }

  .title-line-1 {
    font-size: 48px;
  }

  .title-line-2 {
    font-size: 40px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* Scroll darkening overlay */
.scroll-dark-overlay {
  position: fixed;
  top: -50px; /* Extend beyond top */
  left: -50px; /* Extend beyond left */
  right: -50px; /* Extend beyond right */
  bottom: -50px; /* Extend beyond bottom */
  width: calc(100vw + 100px); /* Wider than viewport */
  height: calc(100vh + 100px); /* Taller than viewport */
  min-width: calc(100% + 100px);
  min-height: calc(100% + 100px);
  background: rgba(5, 6, 10, 1);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.1s ease-out;
}

.theme-dark header,
.theme-dark footer {
  background: transparent;
  animation: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  z-index: 10;
}

/* Otto-style navigation */
.site-header {
  background: transparent;
  padding: 16px 40px;
  gap: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

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

.header-left {
  justify-content: flex-start;
  flex: 0 0 auto;
}

.header-right {
  justify-content: flex-end;
  flex: 0 0 auto;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.brand-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
  font-weight: 500;
  line-height: 1.2;
}

.header-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hide Contact Us button dalam navigation mobile di desktop */
.header-nav > a.nav-mobile-contact {
  display: none;
}

/* Hide Aircraft link dalam navigation mobile di desktop */
.header-nav > a.nav-mobile-aircraft {
  display: none;
}

/* Hide mobile navigation logo di desktop */
.mobile-nav-logo {
  display: none;
}

.header-nav > * + * {
  margin-left: 0; /* Remove margin, use gap instead */
}

.nav-dropdown + a {
  margin-left: 0 !important; /* Remove inconsistent margin */
}

.header-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.8;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex: 0 0 auto;
  padding: 8px 0;
  transition: opacity 0.3s ease;
  position: relative;
}

.header-nav a:hover {
  opacity: 1;
}

.header-nav a.active {
  opacity: 1;
  text-decoration: underline;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex: 0 0 auto;
}

.nav-dropdown > a {
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-right: 16px;
  padding-left: 0;
  transition: opacity 0.3s ease;
}

.nav-dropdown > a::after {
  content: '▼';
  font-size: 7px;
  margin-left: 6px;
  opacity: 0.6;
  transition: all 0.3s ease;
  display: inline-block;
  position: absolute;
  right: 0;
}

.nav-dropdown:hover > a::after {
  opacity: 1;
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  background: rgba(10, 13, 26, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(-10px);
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(10, 13, 26, 0.95);
  filter: drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.1));
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: all 0.3s ease;
  border-radius: 0;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}

.dropdown-menu a:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dropdown-menu a:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  opacity: 1;
  width: 100%;
  box-sizing: border-box;
}

.dropdown-menu a.active {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  opacity: 1;
  text-decoration: underline;
  width: 100%;
  box-sizing: border-box;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4fc3f7, #5dade2);
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  box-shadow: 0 10px 24px rgba(79, 195, 247, 0.4);
}

.nav-cta:hover {
  filter: brightness(1.05);
}

/* Footer styles */
.theme-dark .site-footer {
  background: transparent;
  margin-top: 40px;
  padding: 48px 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 20;
  width: 100%;
  box-sizing: border-box;
}

/* Footer Content - 3 Column Layout */
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Footer Brand Section (Left) */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-brand-text {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-description {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 300px;
}

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

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

.social-icon:hover {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Footer Links Section (Middle) */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 8px 0;
  opacity: 1;
}

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

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: #ff6b35;
}

/* Footer Contact Section (Right) */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-info h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 8px 0;
  opacity: 1;
}

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

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.contact-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  margin-top: 0;
  transition: all 0.3s ease;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-icon:hover {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  transform: translateY(-2px);
}

.footer-contact-list span,
.footer-contact-list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer-contact-list a:hover {
  color: #ff6b35;
}

/* Legacy footer styles for backward compatibility */
.footer-contact {
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

.footer-col p {
  font-size: 13px;
  opacity: 0.95;
  color: #ffffff !important;
}

/* Ensure phone number is white in all themes */
.site-footer .footer-col p,
.theme-dark .site-footer .footer-col p,
.theme-contact .site-footer .footer-col p,
.site-footer .footer-col p a,
.theme-dark .site-footer .footer-col p a,
.theme-contact .site-footer .footer-col p a {
  color: #ffffff !important;
}

/* Override any link styles for phone numbers in footer */
.site-footer .footer-col p a:link,
.site-footer .footer-col p a:visited,
.site-footer .footer-col p a:hover,
.site-footer .footer-col p a:active {
  color: #ffffff !important;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
  opacity: 0.7;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
  .theme-dark .site-footer {
    padding: 36px 20px 20px;
  }

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

  .footer-brand {
    text-align: center;
    align-items: center;
  }

  .footer-description {
    max-width: 100%;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-contact-info {
    text-align: center;
  }

  .footer-contact-list {
    align-items: center;
  }

  .footer-contact-list li {
    justify-content: center;
  }
}

/* 4-Panel Layout */
.about-main-full {
  padding: 0;
  max-width: 100%;
  margin: 0;
  width: 100%;
}

.four-panel-section {
  margin: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.four-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  min-height: 100vh;
  height: 100vh;
  gap: 0;
}

.panel-text {
  background: rgba(5, 6, 10, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-text-line {
  font-size: 40px;
  font-weight: 800;
  color: #f5f5f7;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  hyphens: none !important; /* Disable hyphens untuk elak text terputus */
}

.panel-text-description {
  font-size: 30px;
  color: rgba(245, 245, 247, 0.8);
  line-height: 1.6;
  margin: 20px 0 0 0;
  font-weight: 400;
  white-space: nowrap; /* Pastikan text sebaris */
  overflow: hidden;
  text-overflow: ellipsis;
}

.gradient-accent-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #4fc3f7 0%, #e60505 100%);
  margin-top: 20px;
}

.panel-number {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s ease, z-index 0.4s ease;
  cursor: pointer;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.panel-number:hover {
  transform: scale(1.1) translateY(-10px);
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.panel-number::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 10, 0.7);
  z-index: 1;
  transition: background 0.4s ease;
}

.panel-number:hover::before {
  background: linear-gradient(135deg, rgba(180, 0, 0, 0.85) 0%, rgba(120, 0, 0, 0.9) 100%);
}

.panel-number-content {
  position: relative;
  z-index: 2;
  padding: 40px 30px;
  text-align: left;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-hashtag {
  font-size: 32px;
  color: #f5f5f7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 700;
}

.gradient-number {
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  left: 30px;
  top: 68%;
  transform: translateY(-50%);
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 4px #ffffff;
  text-stroke: 4px #ffffff;
  text-shadow: none;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
  transition: transform 0.4s ease, filter 0.4s ease, -webkit-text-stroke 0.4s ease;
  z-index: 3;
}

.panel-number:hover .gradient-number {
  transform: translateY(-50%) scale(1.1);
  top: 68%;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.25));
  -webkit-text-stroke: 5px #ffffff;
  text-stroke: 5px #ffffff;
  text-shadow: none;
}

.panel-description {
  font-size: 14px;
  color: #f5f5f7;
  line-height: 1.6;
  opacity: 0.9;
  margin-top: auto;
  padding-bottom: 20px;
  text-align: left;
}

/* Services Page */
.services-page {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

.services-hero {
  text-align: center;
  margin-bottom: 40px;
}

.services-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.services-hero p {
  font-size: 20px;
  opacity: 0.9;
}

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

.service-card {
  background: rgba(7, 13, 52, 0.85);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.service-card h2 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
}

/* Careers Page */
.careers-page {
  padding: 0;
  max-width: 100%;
  margin: 0;
  color: #fff;
  background: transparent;
  position: relative;
}

.careers-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
  pointer-events: none;
}

.careers-page > * {
  position: relative;
  z-index: 1;
}

.careers-hero {
  padding: 120px 40px 40px;
  text-align: center;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.careers-hero-title {
  font-size: 96px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  margin: 0;
}

.join-team-section {
  padding: 40px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.join-team-content {
  width: 100%;
}

.join-team-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  padding-bottom: 24px;
}

.join-team-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.join-team-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 auto 60px auto;
  max-width: 800px;
  text-align: center;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.job-card {
  background: rgba(10, 13, 26, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centerkan content untuk desktop */
  text-align: center; /* Centerkan text untuk desktop */
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
  border-color: rgba(255, 255, 255, 0.05);
}

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

.job-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  position: relative;
  z-index: 1;
  text-align: center; /* Centerkan title untuk desktop */
}

.job-location {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  position: relative;
  z-index: 1;
  text-align: center; /* Centerkan location untuk desktop */
}

.job-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  text-align: center; /* Centerkan description untuk desktop */
}

.job-button {
  display: inline-block;
  padding: 12px 32px;
  background: rgba(37, 99, 235, 0.6);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
  transition: all 0.3s ease;
  align-self: center; /* Centerkan button untuk desktop */
  margin: 20px auto 0 auto; /* Centerkan dengan auto margin */
  position: relative;
  z-index: 1;
}

.job-button:hover {
  background: rgba(59, 130, 246, 0.8);
  transform: translateX(4px);
}

.careers-testimonial {
  padding: 100px 40px 80px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(96, 165, 250, 0.4) 100%);
  position: relative;
  margin-top: 80px;
  clip-path: polygon(0 12%, 100% 0%, 100% 100%, 0% 100%);
  overflow: visible;
}

.testimonial-quote-icon {
  font-size: 240px;
  font-weight: 900;
  color: rgba(100, 100, 100, 0.4);
  position: absolute;
  top: -100px;
  left: 40px;
  line-height: 1;
  font-family: Georgia, serif;
  z-index: 1;
  transform: rotate(180deg);
}

.testimonial-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 60px;
}

.testimonial-text {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 900px;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.testimonial-role {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Responsive Design for Careers Page */
@media (max-width: 1024px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .careers-hero-title {
    font-size: 72px;
  }
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 20px 16px 30px !important;
    text-align: center !important;
  }
  
  .careers-hero-title {
    font-size: 48px;
    text-align: center !important;
    margin: 0 auto !important;
  }
  
  .join-team-section {
    padding: 20px 16px 60px !important;
  }

  .join-team-content {
    text-align: center !important;
  }
  
  .join-team-title {
    font-size: 36px;
    text-align: center !important;
    margin: 0 auto 24px !important;
    padding-bottom: 16px !important;
    position: relative;
  }

  .join-team-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
  }
  
  .join-team-description {
    text-align: center !important;
    margin: 0 auto 60px !important;
  }
  
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .job-title,
  .job-location,
  .job-description {
    text-align: center !important;
  }

  .job-button {
    align-self: center !important; /* Centerkan button */
    margin: 20px auto 0 auto !important;
    display: block !important;
    width: fit-content !important;
    text-align: center !important;
    justify-self: center !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .job-card {
    align-items: center !important;
    text-align: center !important;
  }
  
  .careers-testimonial {
    padding: 60px 20px;
    clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
  }
  
  .testimonial-quote-icon {
    font-size: 120px;
    top: -50px;
    left: 20px;
  }
  
  .testimonial-text {
    font-size: 16px;
  }
}

/* Aircraft Page */
body#aircraftPage {
  background-image: url('../images/aircraft001.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-color: #05060a !important;
  position: relative;
  min-height: 100vh;
}

body#aircraftPage::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  pointer-events: none;
}

body#aircraftPage::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  pointer-events: none;
}

body#aircraftPage .scroll-dark-overlay {
  display: none !important;
}

/* Technology Page - Same background as Aircraft Page */
body#technologyPage {
  background-image: url('../images/aircraft001.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-color: #05060a !important;
  position: relative;
  min-height: 100vh;
}

body#technologyPage::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  pointer-events: none;
}

body#technologyPage::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  pointer-events: none;
}

body#technologyPage .scroll-dark-overlay {
  display: none !important;
}

/* Compliance Page - Same background as Aircraft Page */
body#compliancePage {
  background-image: url('../images/aircraft001.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-color: #05060a !important;
  position: relative;
  min-height: 100vh;
}

body#compliancePage::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  pointer-events: none;
}

body#compliancePage::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  pointer-events: none;
}

body#compliancePage .scroll-dark-overlay {
  display: none !important;
}

/* Darken footer for aircraft pages */
body#aircraftPage .site-footer,
body#technologyPage .site-footer,
body#compliancePage .site-footer {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
}

.aircraft-page {
  padding: 0;
  max-width: 100%;
  margin: 0;
  color: #fff;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0 !important;
}

.unveiling-section {
  width: 100%;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px 0 60px;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  margin-bottom: 0 !important;
}

.old-plan-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

.old-plan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.unveiling-content {
  text-align: center;
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.unveiling-title {
  font-size: 96px;
  font-weight: 300;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0;
  margin-bottom: 40px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 10;
}

.countdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.countdown-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.countdown-number {
  font-size: 100px;
  font-weight: 900;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  text-shadow: 
    0 0 10px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4),
    0 0 50px rgba(255, 255, 255, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.9);
  line-height: 1;
  min-width: 120px;
  text-align: center;
  background: transparent;
  padding: 20px 30px;
  border: none;
  position: relative;
  z-index: 10;
}

.countdown-label {
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  z-index: 10;
  text-shadow: 
    0 0 8px rgba(0, 0, 0, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(255, 255, 255, 0.3);
}

.countdown-separator {
  font-size: 100px;
  font-weight: 900;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  text-shadow: 
    0 0 10px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4),
    0 0 50px rgba(255, 255, 255, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.9);
  line-height: 1;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}

.countdown-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 20px;
  position: relative;
  z-index: 10;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1200px) {
  .countdown-number {
    font-size: 100px;
    min-width: 120px;
    padding: 18px 25px;
  }

  .countdown-separator {
    font-size: 100px;
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .unveiling-section {
    padding: 0 16px 40px !important;
    align-items: flex-start !important;
    min-height: auto !important;
  }

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

  .unveiling-title {
    font-size: 32px;
    margin-top: 0 !important;
    margin-bottom: 30px !important;
    padding-top: 0 !important;
  }

  .countdown-display {
    gap: 10px;
  }

  .countdown-number {
    font-size: 60px;
    min-width: 80px;
    padding: 15px 20px;
    background: transparent;
    border: none;
  }

  .countdown-separator {
    font-size: 60px;
    margin-bottom: 40px;
  }

  .countdown-label {
    font-size: 13px;
    font-weight: 700;
  }

  .countdown-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* Side drawer adjustment untuk screen kecil */
  .header-nav {
    min-width: 240px !important;
    width: 50% !important;
  }

  .unveiling-section {
    padding: 0 12px 32px !important;
    align-items: flex-start !important;
    min-height: auto !important;
  }

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

  .unveiling-title {
    font-size: 24px;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    padding-top: 0 !important;
  }

  .countdown-number {
    font-size: 48px;
    min-width: 70px;
    padding: 12px 16px;
    background: transparent;
    border: none;
  }

  .countdown-separator {
    font-size: 48px;
    margin-bottom: 35px;
  }

  .countdown-display {
    gap: 8px;
  }
}

/* Contact Page */
.theme-contact {
  background: #05060a;
  background-image: url('../images/contact us background.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.theme-contact::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.7);
  z-index: 0;
  pointer-events: none;
}

.theme-contact > * {
  position: relative;
  z-index: 1;
}

.theme-contact .site-footer {
  background: transparent;
  margin-top: 40px;
  padding: 32px 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

.contact-main {
  min-height: 100vh;
  padding-top: 80px;
}

.contact-hero {
  padding: 80px 40px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.3) 0%, rgba(5, 6, 10, 0.5) 50%, rgba(5, 6, 10, 0.7) 100%);
  backdrop-filter: blur(2px);
}

.contact-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.contact-info-card {
  background: rgba(15, 18, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-info-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 32px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  font-size: 32px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 195, 247, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-detail-content h3 {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px 0;
}

.contact-detail-content p {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

.contact-form-card {
  background: rgba(15, 18, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-form-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 32px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-input:focus {
  outline: none;
  border-color: #4fc3f7;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}

.contact-submit-btn {
  padding: 16px 32px;
  background: #e60505;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 8px;
}

.contact-submit-btn:hover {
  background: #c50404;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 5, 5, 0.4);
}

.map-section {
  padding: 60px 0;
  max-width: 100%;
  margin: 0;
  width: 100%;
}

.map-container {
  width: 100%;
}

.map-container h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 32px 0;
  padding: 0 40px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.map-wrapper {
  background: rgba(15, 18, 25, 0.95);
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: blur(10px);
  overflow: hidden;
  width: 100%;
}

.google-map {
  width: 100%;
  height: 500px;
  border-radius: 0;
  filter: grayscale(20%) brightness(0.9);
  transition: filter 0.3s ease;
  display: block;
}

.google-map:hover {
  filter: grayscale(0%) brightness(1);
}

/* Contact Page Animations */
.contact-hero-content .animate-on-load {
  opacity: 0;
  transform: translateY(30px);
}

.contact-hero-content h1.animate-on-load {
  animation: fadeInUp 0.8s ease forwards;
}

.contact-hero-content p.animate-on-load {
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.contact-info-card,
.contact-form-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-info-card.animate,
.contact-form-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.contact-detail-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-info-card.animate .contact-detail-item {
  animation: slideInLeft 0.6s ease forwards;
}

.contact-info-card.animate .contact-detail-item:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-info-card.animate .contact-detail-item:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-icon {
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-detail-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(79, 195, 247, 0.2);
}

.contact-form .form-group {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-form-card.animate .form-group {
  animation: fadeInUp 0.5s ease forwards;
}

.contact-form-card.animate .form-group:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-form-card.animate .form-group:nth-child(2) {
  animation-delay: 0.15s;
}

.contact-form-card.animate .form-group:nth-child(3) {
  animation-delay: 0.2s;
}

.contact-form-card.animate .form-group:nth-child(4) {
  animation-delay: 0.25s;
}

.contact-submit-btn {
  opacity: 0;
}

.contact-form-card.animate .contact-submit-btn {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.3s;
}

.map-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.map-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.map-section.animate .map-container h2 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.map-section.animate .map-wrapper {
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInScale 0.6s ease forwards 0.2s;
}

.map-container h2 {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.map-wrapper {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.contact-input {
  position: relative;
}

.contact-input:focus + .input-line,
.contact-input:valid + .input-line {
  width: 100%;
}

/* News Page */
.news-page-main {
  padding: 0;
  margin: 0;
  width: 100%;
  min-height: calc(100vh - 200px);
  position: relative;
  overflow: hidden;
}

/* Split Container Layout */
.news-split-container {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 200px);
  position: relative;
}

/* Left Panel: Background Image with Content */
.news-left-panel {
  flex: 0 0 65%;
  position: relative;
  min-height: calc(100vh - 200px);
  overflow: hidden;
}

.news-background-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out, transform 0.6s ease-in-out;
  z-index: 1;
}

.news-background-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.news-left-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.news-location-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.news-main-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.news-main-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-bottom: 40px;
}

.news-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #FFD700;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: fit-content;
}

.news-explore-btn:hover {
  background: #FFC700;
  transform: translateX(4px);
}

.arrow-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.news-explore-btn:hover .arrow-icon {
  transform: translateX(4px);
}


/* Right Panel: News Cards List */
.news-right-panel {
  flex: 0 0 35%;
  background: rgba(20, 20, 25, 0.95);
  padding: 60px 40px;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
}

.news-right-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.news-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* New Card Style for Right Panel */
.news-card-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.news-card-image {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: #e0e0e0;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.3;
}

.news-card-date {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card-date::before {
  content: '📅';
  font-size: 14px;
}

.news-card-more {
  font-size: 14px;
  color: #0066cc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: gap 0.3s ease;
}

.news-card-more:hover {
  gap: 8px;
}

.news-card-bookmark {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.news-card-bookmark:hover {
  color: #FFD700;
}

.news-card-bookmark svg {
  width: 100%;
  height: 100%;
}

/* Mobile Hero Section */
.news-mobile-hero {
  display: none;
  position: relative;
  width: 100%;
  min-height: 60vh;
  overflow: hidden;
}

.news-mobile-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out;
  z-index: 1;
}

.news-mobile-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.news-mobile-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  min-height: 60vh;
}

.news-trending-badge {
  display: inline-block;
  background: #FFD700;
  color: #000;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  align-self: flex-start;
}

.news-mobile-hero-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.news-mobile-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.news-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-author-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-author-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.news-author-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.news-mobile-actions {
  display: flex;
  gap: 12px;
}

.news-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Mobile News List */
.news-mobile-list {
  display: none;
  background: #ffffff;
  padding: 0;
}

.news-mobile-cards {
  display: flex;
  flex-direction: column;
}

.news-mobile-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.news-mobile-card:hover {
  background-color: #f5f5f5;
}

.news-mobile-card-image {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: #e0e0e0;
}

.news-mobile-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-mobile-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-mobile-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-mobile-card-time {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

.news-mobile-card-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.news-mobile-card-actions .news-action-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
}

.news-mobile-card-actions .news-action-btn:hover {
  background: #f0f0f0;
  color: #000;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Hide desktop layout */
  .news-split-container {
    display: none;
  }
  
  /* Show mobile layout */
  .news-mobile-hero {
    display: block;
  }
  
  .news-mobile-list {
    display: block;
  }
}

/* News Text and Image Popup Section */
.news-text-popup-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 60px 40px;
  z-index: 2;
  gap: 40px;
}

.news-text-container {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 3;
}

.news-text-content {
  padding: 40px;
  background: rgba(15, 18, 25, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-text-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 24px;
  transition: opacity 0.3s ease;
}

.news-text-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  transition: opacity 0.3s ease;
}

.news-image-popup {
  flex: 1;
  min-height: 400px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(50px) scale(0.9);
  z-index: 3;
}

.news-image-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.news-image-popup img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.news-categories-section {
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  padding-top: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.news-categories-section.moved-down {
  transform: translateY(100vh);
  opacity: 0;
}

.news-categories-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
  pointer-events: none;
}


.news-hero-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
  padding: 80px 0 80px 0;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.news-hero-section.moved-to-side {
  transform: translateX(-40%);
  opacity: 0.3;
}

.news-hero-content {
  position: relative;
  z-index: 2;
  padding-left: 60px;
  padding-right: 40px;
  max-width: 600px;
}

.news-hero-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-weight: 600;
}

.news-hero-title {
  font-size: 72px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 40px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.news-hero-cta {
  display: inline-block;
  padding: 14px 32px;
  background: #e60505;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.news-hero-cta:hover {
  background: #c50404;
  transform: translateX(4px);
}

.news-categories-grid {
  display: flex;
  width: 100%;
  gap: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.news-category-card {
  flex: 1;
  background: rgba(15, 18, 25, 0.1);
  border: none;
  border-radius: 0;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 200px;
  z-index: 1;
}

.news-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Desktop hover effect only */
@media (min-width: 769px) {
.news-category-card:hover,
.news-category-card.active {
  background: #e60505;
}

.news-category-card.active::before {
  background: linear-gradient(90deg, #e60505 0%, #e60505 50%, #ffffff 50%, #ffffff 100%);
}

.news-category-card:hover::before {
  background: linear-gradient(90deg, #e60505 0%, #e60505 50%, #ffffff 50%, #ffffff 100%);
  }
}

.news-category-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1.3;
  margin-top: 20px;
}

.news-category-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

/* News popup container - di atas section */
.news-popup-container {
  position: absolute;
  top: -400px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  max-width: 90%;
  background: rgba(15, 18, 25, 0.95);
  backdrop-filter: blur(10px);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 100;
  border-top: 3px solid #e60505;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.news-popup-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
  pointer-events: auto;
}

.news-popup-container .news-popup-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 4px;
  position: relative;
  background: #1a1a1a;
}

.news-popup-container .news-popup-image img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.3s ease;
}

.news-popup-container.active .news-popup-image img {
  transform: scale(1.02);
}

.news-popup-container .news-popup-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.news-popup-container .news-popup-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

/* News popup content - hidden, content dipindahkan ke container */
.news-popup-content {
  display: none;
}

/* Fullscreen News View */
.news-fullscreen-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #05060a;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow-y: auto;
}

.news-fullscreen-view.active {
  opacity: 1;
  visibility: visible;
}

.news-close-btn {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.news-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.news-fullscreen-content {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.news-fullscreen-image {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
}

.news-fullscreen-image img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.news-fullscreen-text-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 60px;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(5, 6, 10, 0.95);
  -webkit-overflow-scrolling: touch;
}

.news-fullscreen-text {
  max-width: 700px;
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  padding-bottom: 40px;
}

.news-fullscreen-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.news-fullscreen-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.news-fullscreen-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.news-fullscreen-description p {
  margin: 0 0 20px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .news-hero-section.moved-to-side {
    transform: translateX(-60%);
  }

  .news-fullscreen-content {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }

  .news-fullscreen-image {
    height: 50vh;
    min-height: 300px;
    background-color: #2a2a2a; /* Dark gray background if no image */
  }
  
  .news-fullscreen-image img {
    display: block;
  }
  
  .news-fullscreen-image:empty {
    background-color: #2a2a2a !important; /* Dark gray when empty */
  }

  .news-fullscreen-text-wrapper {
    height: auto;
    min-height: 50vh;
    max-height: 100vh;
    padding: 40px 30px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start;
  }

  .news-fullscreen-title {
    font-size: 32px;
  }

  .news-fullscreen-description {
    font-size: 16px;
  }

  .news-fullscreen-description p {
    font-size: 16px;
  }

  .news-close-btn {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}


@media (max-width: 1200px) {
  .news-popup-container {
    width: 450px;
  }
}

@media (max-width: 992px) {
  .news-categories-section {
    padding-top: 0;
  }
  
  .news-popup-container {
    width: 90%;
    max-width: 400px;
    top: -300px;
  }
  
  .news-popup-container .news-popup-image {
    height: 200px;
  }
}

@media (max-width: 1200px) {
  .news-hero-title {
    font-size: 56px;
  }

  .news-category-card h3 {
    font-size: 14px;
  }

  .news-category-card p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  /* Contact page background fix for mobile */
  .theme-contact {
    background-image: url('../images/contact us background.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
  }

  .news-background-wrapper::after {
    background-image: none !important; /* Remove background image on mobile */
    background-color: #1a1a1a !important; /* Dark background instead */
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    filter: none !important; /* Remove filters */
    min-height: 100vh;
    height: 100%;
  }

  .news-hero-section {
    min-height: 60vh;
    padding: 60px 0;
  }

  .news-hero-content {
    padding-left: 40px;
    padding-right: 20px;
    text-align: left !important; /* Align ke tepi kiri untuk tablet */
  }

  .news-hero-label {
    text-align: left !important; /* Align label ke tepi kiri */
  }

  .news-hero-title {
    font-size: 48px !important; /* Besarkan sikit dari 42px */
    margin-bottom: 30px;
    text-align: left !important; /* Align ke tepi kiri */
  }

  .news-text-popup-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .news-text-container {
    max-width: 100%;
  }

  .news-text-title {
    font-size: 32px;
  }

  .news-text-description {
    font-size: 16px;
  }

  .news-image-popup {
    min-height: 300px;
    width: 100%;
  }

  .news-categories-grid {
  flex-direction: column;
  }

  .news-categories-section {
    padding-top: 0;
  }

  .news-popup-container {
    width: 85%;
    max-width: 350px;
    top: -250px;
    padding: 20px;
  }

  .news-popup-container .news-popup-image {
    height: 150px;
    margin-bottom: 15px;
  }

  .news-popup-container .news-popup-text {
    font-size: 13px;
  }

  .news-category-card {
    padding: 30px 24px;
    background: #2a2a2a !important; /* Dark gray background for mobile */
    background-image: none !important; /* Remove any background images */
  }
  
  /* Disable background hover effects on mobile - keep plain dark gray */
  .news-category-card:hover,
  .news-category-card.active,
  .news-category-card:active,
  .news-category-card:focus {
    background: #2a2a2a !important; /* Keep dark gray on hover/active/touch for mobile */
    background-image: none !important;
  }
  
  /* Allow title changes on mobile hover - title can change on mobile */
  .news-hero-title {
    transition: opacity 0.3s ease !important;
  }
  
  /* Remove background image updates for mobile */
  .news-background-wrapper::after {
    background-image: none !important;
    background-color: #1a1a1a !important; /* Dark background instead */
  }

  .news-category-card h3 {
    font-size: 16px;
  }

  .news-category-card p {
    font-size: 13px;
  }
}

/* Admin Dashboard */
.theme-admin {
  background: #05060a;
  min-height: 100vh;
}

.admin-login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #05060a 0%, #0a0d14 100%);
  padding: 20px;
}

.admin-login-box {
  background: rgba(15, 18, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 60px 50px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.admin-login-header {
  text-align: center;
  margin-bottom: 40px;
}

.admin-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.admin-login-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-login-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.admin-login-form {
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.admin-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.admin-input:focus {
  outline: none;
  border-color: #4fc3f7;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
}

.admin-login-btn {
  width: 100%;
  padding: 14px;
  background: #e60505;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admin-login-btn:hover {
  background: #c50404;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 5, 5, 0.4);
}

.admin-login-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-login-footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.admin-login-footer a:hover {
  color: #4fc3f7;
}

.admin-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  height: 100vh;
  background: rgba(10, 12, 18, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.admin-sidebar-header {
  padding: 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-sidebar-logo {
  width: 40px;
  height: 40px;
}

.admin-sidebar-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-nav {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.admin-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-left-color: #4fc3f7;
}

.admin-nav-item.active {
  background: rgba(79, 195, 247, 0.1);
  color: #4fc3f7;
  border-left-color: #4fc3f7;
}

.nav-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.admin-sidebar-footer {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-main {
  margin-left: 260px;
  min-height: 100vh;
  background: #05060a;
  padding: 0;
}

.admin-topbar {
  background: rgba(10, 12, 18, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-page-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-user {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

.admin-section {
  display: none;
  padding: 40px;
}

.admin-section.active {
  display: block;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.admin-stat-card {
  background: rgba(15, 18, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.admin-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  font-size: 36px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 195, 247, 0.1);
  border-radius: 10px;
}

.stat-content h3 {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px 0;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.admin-card {
  background: rgba(15, 18, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.admin-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.admin-card-header h2 {
  margin: 0;
}

.admin-btn-primary {
  padding: 12px 24px;
  background: #e60505;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admin-btn-primary:hover {
  background: #c50404;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 5, 5, 0.4);
}

.admin-btn-small {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 8px;
}

.admin-btn-small:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.admin-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.admin-news-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.admin-news-item:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.news-item-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.05);
}

.news-item-content {
  padding: 20px;
}

.news-item-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.news-item-content p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px 0;
}

.news-item-actions {
  display: flex;
  gap: 8px;
}

.admin-settings-form {
  max-width: 600px;
}

/* Job Applications Styles */
.admin-applications-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-application-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.admin-application-item:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.application-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.application-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.application-position {
  font-size: 14px;
  color: #4fc3f7;
  margin: 0;
  font-weight: 500;
}

.application-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}

.application-details {
  margin-bottom: 20px;
}

.detail-row {
  display: flex;
  margin-bottom: 12px;
  font-size: 14px;
}

.detail-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  min-width: 120px;
}

.detail-row > span:not(.detail-label) {
  color: rgba(255, 255, 255, 0.9);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-reviewed {
  background: rgba(79, 195, 247, 0.2);
  color: #4fc3f7;
  border: 1px solid rgba(79, 195, 247, 0.3);
}

.status-accepted {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-rejected {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.application-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.generate-pdf-btn {
  background: rgba(79, 195, 247, 0.2) !important;
  border-color: rgba(79, 195, 247, 0.3) !important;
  color: #4fc3f7 !important;
}

.generate-pdf-btn:hover {
  background: rgba(79, 195, 247, 0.3) !important;
}

.view-details-btn {
  background: rgba(255, 255, 255, 0.1) !important;
}

.delete-application {
  background: rgba(244, 67, 54, 0.2) !important;
  border-color: rgba(244, 67, 54, 0.3) !important;
  color: #f44336 !important;
}

.delete-application:hover {
  background: rgba(244, 67, 54, 0.3) !important;
}

.admin-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.admin-modal-content {
  background: rgba(15, 18, 25, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  line-height: 1;
}

.admin-modal-close:hover {
  color: #ffffff;
}

.admin-modal-form {
  padding: 32px;
}

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

.admin-modal-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .four-panel-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .panel-text {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .admin-sidebar {
    width: 220px;
  }

  .admin-main {
    margin-left: 220px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .about-main-full {
    padding-top: 0 !important; /* Remove padding - dekat dengan header */
    margin-top: 0 !important;
  }

  .four-panel-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .four-panel-grid {
    grid-template-columns: 1fr;
    min-height: auto !important;
    height: auto !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .panel-text {
    min-height: 200px !important;
    padding: 20px 16px !important; /* Kurangkan padding untuk lebih dekat dengan header */
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important; /* Kurangkan gap antara lines */
  }

  .panel-text-line {
    font-size: 28px !important; /* Kurangkan font size untuk mobile */
    line-height: 1.2 !important; /* Pastikan line height sesuai */
    word-wrap: break-word !important; /* Allow text to wrap */
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries */
    hyphens: none !important; /* Disable hyphens untuk elak text terputus */
  }

  .panel-text-description {
    font-size: 12px !important; /* Kurangkan font size untuk mobile */
    margin-top: 12px !important;
    white-space: normal !important; /* Allow text to wrap jika perlu */
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
    line-height: 1.4 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .panel-number {
    min-height: 200px !important; /* Lebarkan tab - lebih tinggi */
    height: 200px !important;
    width: 100% !important;
  }

  .panel-number-content {
    padding: 15px 20px 30px 20px !important; /* Kurangkan padding-top untuk naikkan text */
    justify-content: flex-start !important; /* Align content ke atas */
  }

  .panel-hashtag {
    font-size: 24px;
    margin-top: 0 !important;
    margin-bottom: 10px !important; /* Kurangkan margin-bottom */
    padding-top: 0 !important;
  }

  .gradient-number {
    font-size: 120px;
    left: 20px !important;
    top: 50% !important; /* Center vertically */
    transform: translateY(-50%) !important;
  }

  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .admin-news-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .news-articles-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-article-image {
    height: 200px;
  }

  .news-article-title {
    font-size: 20px;
  }

  .contact-hero {
    padding: 60px 20px 40px;
  }

  .contact-hero-content h1 {
    font-size: 36px;
  }

  .contact-hero-content p {
    font-size: 16px;
  }

  .contact-section {
    padding: 40px 20px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-submit-btn {
    width: 100%;
  }

  .map-section {
    padding: 40px 0;
  }

  .map-container h2 {
    padding: 0 20px;
  }

  .map-wrapper {
    padding: 0;
  }

  .google-map {
    height: 400px;
  }

  .news-video-container {
    min-height: 280px;
  }

  .news-video {
    min-height: 280px;
  }
}

/* ============================================
   HOME PAGE STYLES
   ============================================ */

.home-page {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  color: #f5f5f7;
  position: relative;
  z-index: 1;
}

/* Hero Industrial Section */
.hero-industrial {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 500px;
  margin-bottom: 60px;
  background: transparent;
  z-index: 2;
}

.hero-inner {
  position: relative;
  padding: 80px 40px 90px;
  max-width: 840px;
  z-index: 1;
}

.hero-centered {
  margin: 0 auto;
  text-align: center;
}

.hero-title-image {
  max-width: 520px;
  width: 100%;
  height: auto;
  margin: 0 auto 40px;
  display: block;
  text-align: center;
  }

  .hero-subtitle {
    font-size: 18px;
  max-width: 600px;
  opacity: 0.75;
    margin: 0 auto 40px;
    line-height: 1.7;
    text-align: center;
}

.hero-subtitle-centered {
  margin: 0 auto;
  }

  .hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 30px auto 30px auto;
  flex-wrap: wrap;
  width: 100%;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #e60505, #ff3a3a);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(230, 5, 5, 0.5);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.primary-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #f5f5f7;
  background: rgba(10, 13, 35, 0.8);
  transition: all 0.3s ease;
}

.secondary-cta:hover {
  filter: brightness(1.05);
  background: rgba(10, 13, 35, 0.9);
}

.hero-caption {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.75;
  text-align: center;
  line-height: 1.5;
}

/* Solutions Strip */
.solutions-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.solutions-image {
  border-radius: 18px;
  background: url("../images/service1.jpg") center center / cover no-repeat;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  min-height: 300px;
}

.solutions-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solutions-text h2 {
  font-size: 28px;
  margin-bottom: 14px;
  color: #f5f5f7;
}

.solutions-text p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 18px;
  line-height: 1.6;
}

.link-cta {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.link-cta:hover {
  text-decoration: underline;
  color: #4fc3f7;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.info-card {
  background: rgba(6, 8, 18, 0.95);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
}

.info-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #f5f5f7;
}

.info-card p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
}

/* App Banner */
.app-banner {
  display: none !important; /* Hide app banner untuk mobile dan desktop */
  visibility: hidden !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.app-banner-text {
  max-width: 520px;
  margin: 0 auto;
}

.app-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  opacity: 0.9;
  margin-bottom: 10px;
  color: #f5f5f7;
}

.app-banner h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #f5f5f7;
}

.app-banner p {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.6;
}

/* Social Media Icons Section */
.social-icons-section {
  margin: 20px 0 160px 0;
  padding: 20px 0 100px 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: relative;
}

.social-icons-section > * {
  position: relative;
  z-index: 1;
}

/* Dark overlay from social icons section to footer */
.home-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: -10%;
  right: -10%;
  bottom: 0;
  width: 120%;
  height: 100vh;
  min-height: 100%;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.1) 55%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.3) 65%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.5) 75%,
    rgba(0, 0, 0, 0.6) 80%,
    rgba(0, 0, 0, 0.65) 85%,
    rgba(0, 0, 0, 0.7) 90%,
    rgba(0, 0, 0, 0.75) 95%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.home-page {
  position: relative;
}

.home-page > * {
  position: relative;
  z-index: 1;
}

.social-icons-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 0;
  flex-wrap: nowrap;
}

  .home-manufacture-image {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 72px auto 32px auto;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.65);
    background-color: #000000;
    min-height: 500px;
  }

.home-manufacture-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: brightness(0.85) contrast(1.05);
  position: relative;
  z-index: 1;
}

/* Fade effect overlay on the image itself */
.home-manufacture-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 15%,
    transparent 30%,
    transparent 70%,
    rgba(0, 0, 0, 0.4) 85%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
  z-index: 3;
}

/* Fade effect is now handled by ::after overlay */

.social-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.social-icon-item p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.9;
  color: #f5f5f7;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: transparent;
  box-shadow: none;
  border-radius: 8px;
  position: relative;
}

.icon-in-progress {
  background: #d3d3d3;
  background-image: 
    linear-gradient(90deg, #000000 50%, #d3d3d3 50%),
    linear-gradient(90deg, #d3d3d3 50%, #000000 50%);
  background-size: 100% 50%;
  background-position: 0 0, 0 50%;
  background-repeat: no-repeat;
}

.icon-services {
  background: #d3d3d3;
}

.icon-services::before {
  content: '';
  position: absolute;
  width: 48px;
  height: 10px;
  background: #000000;
  top: 24px;
  left: 16px;
  border-radius: 2px;
  transform: rotate(5deg);
}

.icon-services::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 10px;
  background: #000000;
  bottom: 24px;
  left: 16px;
  border-radius: 2px;
  transform: rotate(-5deg);
}

.icon-coming-soon {
  background: #d3d3d3;
}

.icon-coming-soon::before {
  content: '';
  position: absolute;
  width: 48px;
  height: 8px;
  background: #000000;
  top: 24px;
  left: 16px;
  border-radius: 2px;
}

.icon-coming-soon::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 8px;
  background: #000000;
  bottom: 24px;
  left: 16px;
  border-radius: 2px;
}

.icon-delivered {
  background: #d3d3d3;
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
}

.icon-delivered::before {
  display: none;
}

/* Icon First Malaysia - Using image with white color, no background */
.icon-first-malaysia {
  background: transparent;
  position: relative;
  background-image: url('../images/firstinmalaysia icon.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1); /* Make icon white */
}

.icon-first-malaysia::before,
.icon-first-malaysia::after {
  display: none;
}

/* New Icons */
.icon-engineering {
  background: transparent;
  position: relative;
  background-image: url('../images/engineering icon.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1); /* Make icon white */
}

.icon-engineering::before,
.icon-engineering::after {
  display: none;
}

.icon-certification-safety {
  background: transparent;
  position: relative;
  background-image: url('../images/icon.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1); /* Make icon white */
}

.icon-certification-safety::before,
.icon-certification-safety::after {
  display: none; /* Hide pseudo-elements */
}

.icon-manufacturing {
  background: transparent;
  position: relative;
  background-image: url('../images/manufacturing.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1); /* Make icon white */
}

.icon-manufacturing::before,
.icon-manufacturing::after {
  display: none;
}

.icon-performance {
  background: transparent;
  position: relative;
  background-image: url('../images/perfomance.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1); /* Make icon white */
}

.icon-performance::before,
.icon-performance::after {
  display: none;
}

.icon-reliability {
  background: transparent;
  position: relative;
  background-image: url('../images/realibility.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1); /* Make icon white */
}

.icon-reliability::before {
  display: none;
}

.icon-reliability::after {
  display: none;
  border: 3px solid #000000;
  border-radius: 50%;
  background: #000000;
}

.social-icons-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.social-icons-text h2 {
    font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 40px;
  margin-bottom: 16px;
  opacity: 0.95;
  color: #f5f5f7;
}

.social-icons-text p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.8;
  color: #f5f5f7;
}

/* Design Mockups Grid */
.mockups-section {
  margin: 80px 0;
  padding: 0 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Home: Our Story + Engineering block under video */
.home-story-section {
  margin-top: 60px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.home-story-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.home-story-merged-card {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
  background-color: #000000;
  min-height: 400px;
  visibility: visible !important;
  opacity: 1 !important;
}

.home-story-merged-card .home-story-card {
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.home-story-merged-card .our-story-card {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.home-story-merged-card .story-gallery-card {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.home-story-row.bottom-row {
  grid-template-columns: 1fr;
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.home-story-merged-card.bottom-merged {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 400px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.home-story-merged-card.bottom-merged .built-on-engineering-card {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.home-story-merged-card.bottom-merged .story-gallery-card-bottom {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.home-story-merged-card.bottom-merged .home-story-text {
  border-radius: 0;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: none;
  margin: 0;
}

.home-story-merged-card.bottom-merged .home-story-image-bottom {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.home-story-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
  background-color: #000000;
}

.our-story-card {
  background-image: none;
  background-color: #000000;
  background-size: cover;
  background-position: center;
}

.our-story-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
  pointer-events: none;
}

.built-on-engineering-card {
  background-image: none;
  background-color: #000000;
  background-size: cover;
  background-position: center;
}

.built-on-engineering-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
  pointer-events: none;
}

.built-on-engineering-card::before {
  display: none;
}

.story-gallery-card-bottom {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.story-gallery-card-bottom::after {
  display: none;
}

.story-gallery-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.story-gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.98) 100%);
  z-index: 2;
  pointer-events: none;
}

.story-gallery-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-gallery-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  min-height: 400px;
}

.story-gallery-slide.active {
  opacity: 1;
  z-index: 1;
}

.story-gallery-card::after {
  display: none;
}

.home-story-overlay {
  position: absolute !important;
  inset: 0;
  padding: 48px 40px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  color: #ffffff !important;
  z-index: 2 !important;
  text-align: left;
  visibility: visible !important;
  opacity: 1 !important;
}

.home-story-overlay.right-overlay {
  background: transparent;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.gallery-slide-text {
  font-size: 32px;
  font-weight: 700;
  color: #ff0000;
  text-transform: none;
  letter-spacing: 0.05em;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.home-story-overlay h3 {
  font-size: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
  text-align: left;
}

.home-story-overlay p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 100%;
  opacity: 0.9;
  text-align: left;
}

/* Play button removed - section now links to heritage page */

/* Make our-story-card link clickable */
.our-story-card {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.our-story-card:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

.built-on-engineering-card {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.built-on-engineering-card:hover {
  transform: scale(1.02);
  opacity: 0.95;
}
  border-color: #ffffff;
  transform: scale(1.05);
}

.home-story-text {
  background: rgba(6, 8, 18, 0.96);
  border-radius: 12px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.04);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-story-text h3 {
  font-size: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

.home-story-text p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  color: #f5f5f7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.home-story-image-bottom {
  position: relative;
  border-radius: 12px;
  min-height: 400px;
  background-image: url('../images/100.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
  background-color: #000000;
}

/* Fade top and bottom of images slightly */
.home-story-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 15%,
    transparent 30%,
    transparent 70%,
    rgba(0, 0, 0, 0.4) 85%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.home-story-image-bottom::before {
  display: none;
}

.our-story-card::before {
  display: none;
}

@media (max-width: 900px) {
  .home-story-section {
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0 16px;
    max-width: 100%;
  }

  .home-story-row,
  .home-story-row.bottom-row {
    grid-template-columns: 1fr;
  }

  .home-story-merged-card {
    grid-template-columns: 1fr !important;
    border-radius: 12px;
  }

  .home-story-merged-card .our-story-card,
  .home-story-merged-card .story-gallery-card,
  .home-story-merged-card .built-on-engineering-card,
  .home-story-merged-card .story-gallery-card-bottom {
    border-radius: 0 !important;
  }

  .home-story-merged-card .our-story-card {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
  }

  .home-story-merged-card .story-gallery-card {
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
  }

  .home-story-merged-card.bottom-merged .built-on-engineering-card {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
  }

  .home-story-merged-card.bottom-merged .story-gallery-card-bottom {
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
  }

  .home-story-overlay,
  .home-story-overlay.right-overlay {
    padding: 32px 24px;
  }

  .home-story-overlay h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .home-story-overlay p {
    font-size: 13px;
    line-height: 1.6;
  }

  .home-story-card,
  .story-gallery-card,
  .story-gallery-card-bottom,
  .story-gallery-slide {
    min-height: 300px;
  }

  .home-story-merged-card {
    min-height: auto;
  }

  .home-story-text {
    padding: 32px 24px;
    min-height: 300px;
    text-align: center;
    align-items: center;
  }

  .home-story-text h3 {
    font-size: 18px;
    margin-bottom: 14px;
    text-align: center;
    width: 100%;
  }

  .home-story-text p {
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    max-width: 100%;
  }

  .home-story-card {
    min-height: 300px;
  }

  .home-story-image-bottom {
    min-height: 300px;
  }

  .home-story-merged-card.bottom-merged {
    max-width: 100%;
  }
}

.news-video-container {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 80px;
  border-radius: 0;
  overflow: hidden;
  background: #05060a;
  position: relative;
  min-height: 350px;
  opacity: 1;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  scroll-margin-top: 80px;
}

/* Home page: make the video section look like a contained "video box" (desktop) */
@media (min-width: 769px) {
  .home-page .news-video-container {
    width: min(980px, 100%);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 26px;
    background: rgba(126, 87, 194, 0.9);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-page .news-video {
    border-radius: 26px;
  }
}

.video-top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffffff;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.3s ease;
}

.news-video-container.video-popup {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.news-video {
  width: 100%;
  height: auto;
  display: block;
  min-height: 350px;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
}

.video-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  z-index: 2;
  transition: background 0.3s ease;
}

.video-mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 100;
  pointer-events: auto;
}

.video-mute-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.video-mute-btn:active {
  transform: scale(0.95);
}

.video-mute-btn .mute-icon,
.video-mute-btn .unmute-icon {
  font-size: 24px;
  display: inline-block;
}

/* Video Controls Container */
.video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 1000;
  pointer-events: auto;
}

.video-control-btn {
  position: relative;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.video-control-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.video-control-btn:active {
  transform: scale(0.95);
}

.video-control-btn .play-icon,
.video-control-btn .pause-icon,
.video-control-btn .mute-icon,
.video-control-btn .unmute-icon {
  font-size: 24px;
  display: inline-block;
}

/* Latest News Section */
.latest-news-section {
  background: transparent;
  padding: 80px 40px;
  margin-top: 60px;
}

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

.latest-news-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.latest-news-subtitle {
  font-size: 18px;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.latest-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.latest-news-card {
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  cursor: pointer;
  border: none;
}

.latest-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.latest-news-card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #e0e0e0;
}

.latest-news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.latest-news-card:hover .latest-news-card-image img {
  transform: scale(1.05);
}

.latest-news-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #4CAF50;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.latest-news-badge-new {
  background: #22c55e;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.6);
  }
}

.latest-news-card-content {
  padding: 24px;
}

.latest-news-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.latest-news-card-date {
  font-size: 12px;
  color: #888888;
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.latest-news-card-description {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .latest-news-section {
    padding: 40px 16px;
    margin-top: 30px;
  }
  
  .latest-news-header {
    margin-bottom: 30px;
  }
  
  .latest-news-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .latest-news-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .latest-news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
  
  .latest-news-card {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    max-width: 100%;
  }
  
  .latest-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .latest-news-card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
  }
  
  .latest-news-card-image img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    display: block;
    min-width: 100%;
    min-height: 100%;
  }
  
  .latest-news-badge {
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 10px;
  }
  
  .latest-news-card-content {
    padding: 12px;
  }
  
  .latest-news-card-title {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  
  .latest-news-card-date {
    font-size: 10px;
    margin-bottom: 8px;
  }
  
  .latest-news-card-description {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .latest-news-section {
    padding: 30px 12px;
    margin-top: 20px;
  }
  
  .latest-news-header {
    margin-bottom: 24px;
  }
  
  .latest-news-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .latest-news-subtitle {
    font-size: 13px;
  }
  
  .latest-news-grid {
    gap: 12px;
  }
  
  .latest-news-card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
  }
  
  .latest-news-card-image img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    display: block;
    min-width: 100%;
    min-height: 100%;
  }
  
  .latest-news-badge {
    top: 8px;
    left: 8px;
    padding: 3px 6px;
    font-size: 9px;
  }
  
  .latest-news-card-content {
    padding: 10px;
  }
  
  .latest-news-card-title {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .latest-news-card-date {
    font-size: 9px;
    margin-bottom: 6px;
  }
  
  .latest-news-card-description {
    font-size: 11px;
    line-height: 1.4;
  }
}

@media (max-width: 992px) {
  .latest-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mockups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  grid-auto-rows: 1fr;
  margin-top: 60px;
  padding: 40px 0;
  position: relative;
}

/* Add visual separator before news grid */
.mockups-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin-bottom: 40px;
}

.mockup-card {
  aspect-ratio: 1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #05060a;
  min-height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(79, 195, 247, 0.3);
}

.mockup-sidebar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 12px;
  z-index: 2;
  backdrop-filter: blur(2px);
}

.red-sidebar {
  background: #e60505;
}

.blue-sidebar {
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  box-shadow: 0 0 25px rgba(0, 82, 204, 0.8), 0 0 40px rgba(0, 102, 255, 0.5), inset 0 0 15px rgba(0, 153, 255, 0.3);
}

.sidebar-text.vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  margin: auto 0;
}

.mockup-content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 67%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.mockup-overlay {
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mockup-overlay h3 {
    font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 8px;
  text-align: center;
}

.mockup-overlay-full {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.9) 100%);
  padding: 40px;
  padding-bottom: 60px;
}

.mockup-overlay-full h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.mockup-brand {
  display: flex;
    flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
}

.brand-aeronas {
  font-size: 12px;
  color: #e60505;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand-aerocraft {
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sidebar-text-bottom {
    font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin-top: auto;
  padding-bottom: 8px;
}

/* Card specific backgrounds */
.card-latest-news,
.card-industry-news {
  background: #1a1a1a;
  background-image: 
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0px, transparent 1px, transparent 20px, rgba(255, 255, 255, 0.08) 21px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0px, transparent 1px, transparent 20px, rgba(255, 255, 255, 0.08) 21px);
}

.card-latest-news::after,
.card-industry-news::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.card-latest-news .mockup-sidebar,
.card-industry-news .mockup-sidebar {
  z-index: 3;
}

.card-latest-news .mockup-content,
.card-industry-news .mockup-content {
  z-index: 2;
}

.card-news-updates {
  background-size: cover;
  background-position: center;
}

.card-aerospace-news {
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-aerospace-news::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(230, 5, 5, 0.4);
  z-index: 1;
}

.card-aerospace-news .mockup-overlay-full {
  position: relative;
  z-index: 2;
}

.card-news-ac {
  background: #0a0a0a;
  background-image: 
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0px, transparent 1px, transparent 20px, rgba(255, 255, 255, 0.08) 21px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0px, transparent 1px, transparent 20px, rgba(255, 255, 255, 0.08) 21px);
}

.card-news-ac::before {
  display: none;
}

.card-news-ac .mockup-overlay-split {
  z-index: 2;
}

.mockup-overlay-split {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  z-index: 3;
}

.mockup-overlay-split .text-left {
  position: absolute;
  left: 40px;
  top: 40px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup-overlay-split .text-right {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 255, 255, 0.5), 0 0 25px rgba(255, 255, 255, 0.3);
  max-width: 95%;
  width: 95%;
  word-wrap: break-word;
  word-break: break-word;
  line-height: 1.5;
  padding: 0 30px;
}

.mockup-overlay-split .text-ac {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
    font-size: 18px;
  font-weight: 700;
  color: #e60505;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card-latest-split {
  display: flex;
  flex-direction: column;
}

.mockup-split-top {
  flex: 2;
  background-size: cover;
  background-position: center;
  position: relative;
}

.mockup-split-bottom {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.split-left-red {
  background: #e60505;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.split-left-red h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.split-left-red p {
    font-size: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
}

.split-right-blue {
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-right-blue h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Responsive Home Page */
@media (max-width: 900px) {
  .hero-inner {
    padding: 50px 24px 60px;
  }

  .solutions-strip {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .social-icons-grid {
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .mockups-grid {
    grid-template-columns: 1fr;
  }
  
  .mockup-overlay-split .text-right {
    font-size: 28px;
    top: 30px;
    max-width: 92%;
    width: 92%;
    padding: 0 20px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9), 0 0 12px rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 480px) {
  .mockup-overlay-split .text-right {
    font-size: 22px;
    top: 20px;
    max-width: 90%;
    width: 90%;
    padding: 0 15px;
    line-height: 1.3;
  }
}

/* Event Page Styles - Similar to News Page */
.event-page-main {
  padding: 0;
  margin: 0;
  width: 100%;
  min-height: calc(100vh - 200px);
  position: relative;
}

.event-background-wrapper {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 200px);
  overflow: visible;
}

.event-background-wrapper::after {
  content: '';
  position: fixed;
  inset: 0;
  background: #05060a;
  z-index: 0;
}

.event-background-wrapper::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.event-hero-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
  padding: 80px 0 80px 0;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.event-hero-section.moved-to-side {
  transform: translateX(-40%);
  opacity: 0.3;
}

.event-hero-content {
  position: relative;
  z-index: 2;
  padding-left: 60px;
  padding-right: 40px;
  max-width: 600px;
}

.event-hero-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-weight: 600;
}

.event-hero-title {
  font-size: 72px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 40px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.event-categories-section {
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  padding-top: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.event-categories-section.moved-down {
  transform: translateY(100vh);
  opacity: 0;
}

.event-categories-grid {
  display: flex;
  width: 100%;
  gap: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.event-category-card {
  flex: 1;
  background: rgba(10, 13, 26, 0.9);
  border: none;
  border-radius: 0;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 200px;
  z-index: 1;
  background-image: none !important;
}

.event-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.event-category-card:hover,
.event-category-card.active {
  background: #e60505 !important;
  background-image: none !important;
}

.event-category-card.active::before {
  background: linear-gradient(90deg, #e60505 0%, #e60505 50%, #ffffff 50%, #ffffff 100%);
}

.event-category-card:hover::before {
  background: linear-gradient(90deg, #e60505 0%, #e60505 50%, #ffffff 50%, #ffffff 100%);
}

.event-category-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1.3;
  margin-top: 20px;
}

.event-category-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

.event-popup-content {
  display: none;
}

/* Fullscreen Event View */
.event-fullscreen-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #05060a;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow-y: auto;
}

.event-fullscreen-view.active {
  opacity: 1;
  visibility: visible;
}

.event-close-btn {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.event-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.event-fullscreen-content {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.event-fullscreen-image {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
}

.event-fullscreen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event-fullscreen-text-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  overflow-y: auto;
  background: rgba(5, 6, 10, 0.95);
}

.event-fullscreen-text {
  max-width: 700px;
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
}

.event-fullscreen-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.event-fullscreen-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.event-fullscreen-location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.event-fullscreen-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 24px;
}

.event-fullscreen-link {
  display: inline-block;
  padding: 14px 32px;
  background: #e60505;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.event-fullscreen-link:hover {
  background: #c50404;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .event-hero-section {
    min-height: 50vh;
    padding: 60px 0 40px 0;
  }

  .event-hero-section.moved-to-side {
    transform: translateX(-60%);
  }

  .event-hero-content {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }

  .event-hero-label {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .event-hero-title {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .event-categories-section {
    padding-bottom: 60px;
  }

  .event-categories-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .event-category-card {
    flex: none;
    width: 100%;
    min-height: auto;
    padding: 24px 20px;
    border-radius: 0;
    margin: 0;
    background: rgba(10, 13, 26, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-image: none !important;
  }

  .event-category-card:last-child {
    border-bottom: none;
  }

  .event-category-card::before {
    height: 2px;
  }

  .event-category-card:hover,
  .event-category-card.active {
    background: rgba(230, 5, 5, 0.9) !important;
    background-image: none !important;
  }

  .event-category-card h3 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 12px;
  }

  .event-category-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .event-fullscreen-content {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }

  .event-fullscreen-image {
    height: 50vh;
    min-height: 300px;
  }

  .event-fullscreen-text-wrapper {
    height: auto;
    min-height: 50vh;
    padding: 40px 30px;
  }

  .event-fullscreen-title {
    font-size: 32px;
  }

  .event-fullscreen-description {
    font-size: 16px;
  }

  .event-close-btn {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .event-background-wrapper::after {
    background: #05060a;
  }
}

/* Compliance Page Styles */
.compliance-page {
  padding: 0;
  max-width: 100%;
  margin: 0;
}

.compliance-hero-section {
  padding: 120px 40px 80px;
  text-align: center;
  background: linear-gradient(135deg, rgba(5, 6, 10, 0.9), rgba(10, 13, 26, 0.9));
}

.compliance-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.compliance-title {
  font-size: 64px;
  font-weight: 700;
  color: #f5f5f7;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compliance-subtitle {
  font-size: 20px;
  color: rgba(245, 245, 247, 0.8);
  line-height: 1.6;
}

.compliance-content-section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.compliance-container {
  width: 100%;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.compliance-card {
  background: rgba(10, 13, 26, 0.6);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compliance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.compliance-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 16px;
}

.compliance-card-description {
  font-size: 16px;
  color: rgba(245, 245, 247, 0.8);
  line-height: 1.6;
}

/* Technology Page Styles */
.technology-page {
  padding: 0;
  max-width: 100%;
  margin: 0;
}

.technology-hero-section {
  padding: 120px 40px 80px;
  text-align: center;
  background: linear-gradient(135deg, rgba(5, 6, 10, 0.9), rgba(10, 13, 26, 0.9));
}

.technology-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.technology-title {
  font-size: 64px;
  font-weight: 700;
  color: #f5f5f7;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.technology-subtitle {
  font-size: 20px;
  color: rgba(245, 245, 247, 0.8);
  line-height: 1.6;
}

.technology-content-section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.technology-container {
  width: 100%;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.technology-card {
  background: rgba(10, 13, 26, 0.6);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technology-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.technology-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 16px;
}

.technology-card-description {
  font-size: 16px;
  color: rgba(245, 245, 247, 0.8);
  line-height: 1.6;
}

/* Manufacturing Section Styles (in Aircraft page) */
.manufacturing-section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.manufacturing-container {
  width: 100%;
}

.manufacturing-content {
  width: 100%;
}

.manufacturing-title {
  font-size: 64px;
  font-weight: 700;
  color: #f5f5f7;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.manufacturing-subtitle {
  font-size: 20px;
  color: rgba(245, 245, 247, 0.8);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 60px;
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.manufacturing-card {
  background: rgba(10, 13, 26, 0.6);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manufacturing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.manufacturing-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 16px;
}

.manufacturing-card-description {
  font-size: 16px;
  color: rgba(245, 245, 247, 0.8);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .compliance-title,
  .technology-title,
  .manufacturing-title {
    font-size: 40px;
  }
  
  .compliance-subtitle,
  .technology-subtitle,
  .manufacturing-subtitle {
    font-size: 16px;
  }
  
  .compliance-grid,
  .technology-grid,
  .manufacturing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .compliance-hero-section,
  .technology-hero-section {
    padding: 80px 20px 60px;
  }
  
  .compliance-content-section,
  .technology-content-section,
  .manufacturing-section {
    padding: 60px 20px;
  }
}

/* Company Page Styles - Volvo-inspired layout */
.sub-nav {
  background: rgba(10, 13, 26, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Aircraft sub-nav: Hide on desktop, show only on mobile */
.aircraft-sub-nav {
  display: none;
}

/* Pastikan sub-nav di belakang header navigation mobile */
@media (max-width: 768px) {
  .sub-nav {
    z-index: 1 !important; /* Lower z-index untuk mobile - di belakang header nav */
    position: relative !important; /* Change dari sticky untuk mobile */
  }

  /* Show aircraft-sub-nav only on mobile */
  .aircraft-sub-nav {
    display: block !important;
  }

  /* Pastikan header navigation mobile di atas sub-nav */
  .header-nav.mobile-open {
    z-index: 99999 !important; /* Higher z-index untuk header nav mobile */
  }

  .site-header {
    z-index: 99998 !important; /* Higher z-index untuk header */
    position: relative !important;
  }
}

.sub-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-nav-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 245, 247, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.sub-nav-link {
  padding: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  text-transform: capitalize;
  background: transparent;
  font-weight: 400;
}

.sub-nav-link:hover {
  color: #fff;
}

.sub-nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
}

/* Sub Navigation Items (for Aircraft page) */
.sub-nav-item {
  padding: 10px 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: capitalize;
  background: transparent;
  font-weight: 400;
}

.sub-nav-item:hover {
  color: #fff;
}

.sub-nav-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 500;
}

/* Sub Navigation Items (for Aircraft page) */
.sub-nav-item {
  padding: 10px 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: capitalize;
  background: transparent;
  font-weight: 400;
}

.sub-nav-item:hover {
  color: #fff;
}

.sub-nav-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 500;
}

.company-main {
  padding: 0;
  max-width: 100%;
  margin: 0;
  width: 100%;
  position: relative;
  overflow: visible;
}

.company-hero-section {
  min-height: 100vh;
  padding: 120px 40px;
  padding-bottom: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  background: url("../images/200jpeg.jpeg") center center / cover no-repeat fixed !important;
  background-color: rgba(5, 6, 10, 0.95) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

.company-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../images/200jpeg.jpeg") center center / cover no-repeat fixed;
  z-index: 0;
}

.company-hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.98) 100%);
  pointer-events: none;
  z-index: 1;
}

.theme-heritage .company-hero-section {
  background: linear-gradient(135deg, rgba(5, 6, 10, 0.95), rgba(10, 13, 26, 0.95));
  padding: 80px 40px;
  min-height: auto;
}

.theme-heritage .company-hero-section::before {
  display: none;
}

.company-content-wrapper {
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hide motion background for new layout */
.company-main .motion-background {
  display: none;
}

/* Company Statistics Section */
.company-statistics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 40px 0;
  position: relative;
  z-index: 4;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  min-width: 0;
  gap: 6px;
  justify-content: center;
}

.company-statistics .stat-icon {
  font-size: 42px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  margin: 0 0 8px 0;
  color: #ffffff;
}

.company-statistics .stat-icon svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-align: center;
  display: block;
  width: 100%;
  margin: 0;
  order: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  white-space: normal;
  line-height: 1.4;
  max-width: 100%;
  text-align: center;
  order: 2;
}

.stat-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-transform: none;
  letter-spacing: 0.03em;
  margin: 0;
  white-space: normal;
  line-height: 1.4;
  max-width: 100%;
  text-align: center;
  order: 3;
}

/* Company Hero Content */
.company-hero-content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.company-hero-title {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.company-hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 600px;
}

/* Company Section Wrapper */
.company-section-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* Features Section */
.company-features-section {
  padding: 100px 0;
  background: #05060a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
}

.feature-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px 0;
}

.feature-button {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease;
}

.feature-button:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.company-about-section {
  padding: 100px 0;
  background: #0a0d1a;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-section-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
}

.about-text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-image-content {
  width: 100%;
  height: 400px;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 12px;
  background-image: url("../images/911.jpeg");
  background-size: cover;
  background-position: center;
}

/* Advantages Section */
.company-advantages-section {
  padding: 100px 0;
  background: #05060a;
}

.advantages-section-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 60px 0;
  text-align: center;
}

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

.advantages-image-content {
  width: 100%;
  height: 500px;
}

.advantages-image-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 12px;
  background-image: url("../images/20.jpeg");
  background-size: cover;
  background-position: center;
}

.advantages-cards-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.advantage-text-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.advantage-intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.advantage-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.advantage-item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.advantage-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px 0;
}

.advantage-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Building for the Future Section */
.company-future-section {
  padding: 100px 0;
  background: #0a0d1a;
}

.future-section-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 60px 0;
  text-align: center;
}

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

.future-image-content {
  width: 100%;
  height: 500px;
}

.future-image-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 12px;
  background-image: url("../images/21.jpeg");
  background-size: cover;
  background-position: center;
}

.future-text-content {
  display: flex;
  flex-direction: column;
}

.future-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.future-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.future-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 16px 0 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Certification Section */
.company-certification-section {
  padding: 100px 0;
  background: #05060a;
}

.certification-section-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 60px 0;
  text-align: center;
}

.certification-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.certification-item {
  padding: 40px 0;
}

.certification-item:first-child {
  padding-top: 0;
}

.certification-item:last-child {
  padding-bottom: 0;
}

.certification-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
}

.certification-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.certification-separator {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 20px 0;
  margin: 0;
}

.advantage-button {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease;
}

.advantage-button:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.theme-heritage .company-content-wrapper {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

.company-heading {
  position: relative;
  margin-bottom: 60px;
}

.theme-heritage .company-heading {
  text-align: center;
  width: 100%;
  margin-bottom: 80px;
}

.company-title {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: #f5f5f7;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Heritage page - smaller title like Volvo */
.theme-heritage .company-title {
  font-size: 48px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 auto;
  display: block;
}

/* Heritage popup image - sebelah kiri bawah title */
.heritage-popup-image {
  position: absolute;
  left: -400px;
  bottom: 0;
  width: 350px;
  height: auto;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 10;
}

.heritage-popup-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.heritage-popup-image.active {
  opacity: 1;
  transform: translateX(0);
}

.theme-heritage .company-heading {
  position: relative;
}

.company-description {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.company-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245, 245, 247, 0.9);
  margin: 0;
  font-weight: 400;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #f5f5f7;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-subtitle.about-us-title {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 32px;
}

.section-subtitle.about-us-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.section-subtitle.capabilities-title {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 32px;
}

.section-subtitle.capabilities-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.capability-card {
  background: rgba(10, 13, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  animation: waveGlow 3s ease-in-out infinite;
}

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

.capability-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 245, 247, 0.9);
  margin: 0;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* ============================================
   MOTION GRAPHICS DESIGN - COMPANY PAGE
   ============================================ */

/* Animated Background Elements */
.motion-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.motion-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(60px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #e60505, #ff3a3a);
  top: 10%;
  left: -10%;
  animation: float1 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #4fc3f7, #29b6f6);
  top: 60%;
  right: -5%;
  animation: float2 25s ease-in-out infinite;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.5));
  bottom: 10%;
  left: 20%;
  animation: float3 30s ease-in-out infinite;
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #e60505, rgba(230, 5, 5, 0.3));
  top: 30%;
  right: 30%;
  animation: float4 22s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(50px, -50px) rotate(120deg); }
  66% { transform: translate(-30px, 30px) rotate(240deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-40px, 40px) rotate(180deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(90deg); }
  75% { transform: translate(-20px, 20px) rotate(270deg); }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -25px) scale(1.2); }
}

/* Animated Typography */
.animated-title {
  position: relative;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  animation: titleReveal 1s ease-out forwards;
}

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

.title-underline {
  width: 200px;
  height: 0;
  background: linear-gradient(90deg, #e60505, #ff3a3a, #e60505);
  margin: 20px 0 0 0;
  animation: underlineExpand 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
  box-shadow: 0 0 20px rgba(230, 5, 5, 0.5);
  display: block;
  transform-origin: left bottom;
  overflow: hidden;
}

@keyframes underlineExpand {
  0% {
    height: 0;
    opacity: 0;
    transform: scaleY(0);
  }
  50% {
    opacity: 0.7;
  }
  100% {
    height: 4px;
    opacity: 1;
    transform: scaleY(1);
  }
}

.animated-subtitle {
  position: relative;
  overflow: hidden;
}

.subtitle-text {
  display: inline-block;
  opacity: 0;
  transform: translateX(-30px);
  animation: subtitleSlide 0.8s ease-out forwards;
}

@keyframes subtitleSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-text[data-delay="0.2"] {
  animation-delay: 0.2s;
}

.fade-in-text[data-delay="0.4"] {
  animation-delay: 0.4s;
}

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

/* Motion Cards with Micro Interactions */
.motion-card {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: cardAppear 0.6s ease-out forwards;
}

.motion-card[data-index="0"] { animation-delay: 0.1s; }
.motion-card[data-index="1"] { animation-delay: 0.2s; }
.motion-card[data-index="2"] { animation-delay: 0.3s; }
.motion-card[data-index="3"] { animation-delay: 0.4s; }
.motion-card[data-index="4"] { animation-delay: 0.5s; }

@keyframes cardAppear {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.motion-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.motion-card:hover::after {
  width: 300px;
  height: 300px;
  animation: waveRipple 3s ease-in-out infinite;
}

@keyframes waveRipple {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.7;
  }
}

.motion-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15), 0 0 40px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
  transform: scale(0);
  animation: iconPop 0.5s ease-out forwards;
  animation-delay: 0.8s;
  transition: transform 0.3s ease;
}

.motion-card[data-index="0"] .card-icon { animation-delay: 0.9s; }
.motion-card[data-index="1"] .card-icon { animation-delay: 1s; }
.motion-card[data-index="2"] .card-icon { animation-delay: 1.1s; }
.motion-card[data-index="3"] .card-icon { animation-delay: 1.2s; }
.motion-card[data-index="4"] .card-icon { animation-delay: 1.3s; }

@keyframes iconPop {
  0% {
    transform: scale(0) rotate(-180deg);
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.motion-card:hover .card-icon {
  transform: scale(1.2) rotate(10deg);
}

/* Enhanced Capability Cards */
.capability-card {
  position: relative;
  background: rgba(10, 13, 26, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
  opacity: 0;
}

.capability-card:hover::before {
  transform: rotate(45deg) translate(50%, 50%);
  opacity: 1;
  animation: waveGlow 3s ease-in-out infinite;
}

@keyframes waveGlow {
  0%, 100% {
    opacity: 0.6;
    transform: rotate(45deg) translate(50%, 50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%) scale(1.1);
  }
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleAnimation 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Enhanced Company Hero Section for Motion Graphics */
/* Company hero section background overlay - removed duplicate, using ::after instead */

.company-content-wrapper {
  position: relative;
  z-index: 2;
}

/* Animated Text Container */
.animated-text-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Mobile Responsive for Motion Graphics */
@media (max-width: 768px) {
  .motion-shape {
    display: none; /* Hide animated shapes on mobile for performance */
  }
  
  .title-underline {
    width: 100px !important;
    margin: 12px auto 0 auto !important;
    height: 3px;
    display: block;
  }
  
  .motion-card {
    animation-delay: 0s !important;
  }
  
  .card-icon {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .capability-card {
    padding: 24px;
  }

  /* Company page mobile - Wave animation and reduced white glow intensity */
  .capability-card::before {
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent) !important;
    animation: waveGlow 3s ease-in-out infinite !important;
  }

  .capability-card:hover::before {
    animation: waveGlow 3s ease-in-out infinite !important;
  }

  .capability-card:hover {
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.08), 0 0 30px rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
  }

  .motion-card::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%) !important;
    animation: waveRipple 3s ease-in-out infinite !important;
  }

  .motion-card:hover {
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.12), 0 0 40px rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  
  .company-title {
    font-size: 64px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries */
    hyphens: none !important; /* Disable hyphens untuk elak text terputus */
  }
  
  .animated-text-container {
    gap: 16px;
  }
  
  .fade-in-text {
    animation-delay: 0s !important;
  }
  
  /* Fix text wrapping for company page mobile */
  .company-text {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries */
    hyphens: none !important; /* Disable hyphens */
    line-height: 1.7 !important;
    max-width: 100% !important;
  }
  
  .capability-text {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries */
    hyphens: none !important; /* Disable hyphens */
    line-height: 1.6 !important;
    max-width: 100% !important;
  }
  
  .section-subtitle {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries */
    hyphens: none !important; /* Disable hyphens */
  }
  
  .subtitle-text {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries */
    hyphens: none !important; /* Disable hyphens */
  }
  
  .company-description {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    hyphens: none !important;
  }
}

/* Capabilities Mind Map */
.capabilities-mindmap {
  position: relative;
  min-height: 700px;
  padding: 100px 60px;
  margin: 60px 0;
}

.mindmap-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.mindmap-center-box {
  background: rgba(230, 5, 5, 0.15);
  border: 2px solid rgba(230, 5, 5, 0.5);
  border-radius: 16px;
  padding: 36px 48px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(230, 5, 5, 0.3);
  transition: all 0.3s ease;
  min-width: 200px;
}

.mindmap-center-box:hover {
  background: rgba(230, 5, 5, 0.25);
  border-color: rgba(230, 5, 5, 0.7);
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(230, 5, 5, 0.4);
}

.mindmap-center-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mindmap-branches {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.mindmap-branch {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 40px;
}

.mindmap-connector {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(230, 5, 5, 0.6), rgba(230, 5, 5, 0.3));
  position: relative;
  flex-shrink: 0;
}

.mindmap-box {
  background: rgba(15, 18, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 32px 36px;
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.mindmap-box:hover {
  background: rgba(15, 18, 25, 1);
  border-color: rgba(230, 5, 5, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(230, 5, 5, 0.3);
}

.mindmap-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #f5f5f7;
  margin: 0 0 14px 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.mindmap-box p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 245, 247, 0.85);
  margin: 0;
}

/* Branch Positions */
.branch-top-left {
  top: 5%;
  left: 10%;
  flex-direction: row;
}

.branch-top-right {
  top: 5%;
  right: 10%;
  flex-direction: row-reverse;
}

.branch-top-right .mindmap-connector {
  background: linear-gradient(270deg, rgba(230, 5, 5, 0.6), rgba(230, 5, 5, 0.3));
}

.branch-right {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  flex-direction: row-reverse;
}

.branch-right .mindmap-connector {
  background: linear-gradient(270deg, rgba(230, 5, 5, 0.6), rgba(230, 5, 5, 0.3));
}

.branch-bottom-right {
  bottom: 5%;
  right: 10%;
  flex-direction: row-reverse;
}

.branch-bottom-right .mindmap-connector {
  background: linear-gradient(270deg, rgba(230, 5, 5, 0.6), rgba(230, 5, 5, 0.3));
}

.branch-bottom-left {
  bottom: 5%;
  left: 10%;
  flex-direction: row;
}

/* Responsive Mind Map */
@media (max-width: 1024px) {
  .capabilities-mindmap {
    min-height: 900px;
    padding: 80px 40px;
  }
  
  .mindmap-branch {
    position: relative;
    margin-bottom: 40px;
  justify-content: center;
    gap: 30px;
  }
  
  .branch-top-left,
  .branch-top-right,
  .branch-right,
  .branch-bottom-right,
  .branch-bottom-left {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    flex-direction: row;
  }
  
  .branch-top-right .mindmap-connector,
  .branch-right .mindmap-connector,
  .branch-bottom-right .mindmap-connector {
    background: linear-gradient(90deg, rgba(230, 5, 5, 0.6), rgba(230, 5, 5, 0.3));
  }
  
  .mindmap-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 50px;
  }
  
  .mindmap-box {
    width: 100%;
    max-width: 320px;
    min-width: auto;
  }
  
  .mindmap-connector {
    width: 80px;
  }
}

.mission-section,
.vision-section,
.values-section,
.heritage-section {
  margin-bottom: 40px;
}

/* Mission Page - Expandable Panels Layout */
.mission-main {
  padding: 0;
  max-width: 100%;
  margin: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: url("../images/background 1.jpeg") center 30% / 110% no-repeat fixed; /* Background asal */
  background-color: rgba(5, 6, 10, 0.95); /* Gelapkan sikit dengan overlay */
}

.mission-main::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.85); /* Dark overlay untuk gelapkan background */
  z-index: 0;
  pointer-events: none;
}

.mission-panels-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  background: transparent;
  z-index: 1;
}

/* Typographic Menu (Left Side) */
.mission-menu {
  position: fixed;
  left: 40px; /* Move lebih ke kiri */
  top: 50%;
  transform: translateY(-50%);
  z-index: 100; /* Pastikan di atas semua */
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0;
}

.mission-menu-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
  transform: translateX(0);
}

.mission-menu-item:hover,
.mission-menu-item.active {
  opacity: 1;
  transform: translateX(10px);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.3);
}

.menu-number {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-menu-item.active .menu-number {
  color: #ffffff; /* Tukar kepada putih */
}

.menu-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-menu-item.active .menu-title {
  color: #ffffff; /* Tukar kepada putih */
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.3);
}

.mission-panels-container {
  display: flex;
  width: calc(100% - 320px); /* Kurangkan width untuk avoid overlap */
  height: 100%;
  position: relative;
  margin-left: 320px; /* Tambah margin untuk lebih space dari menu */
  padding: 0;
  gap: 0;
  align-items: stretch;
  z-index: 2; /* Pastikan di atas overlay */
}

.mission-panel {
  flex: 1;
  height: 100vh;
  position: relative;
  cursor: pointer;
  transition: flex 0.8s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%); /* Rapatkan - kurangkan gap */
  opacity: 0.7;
  margin: 0; /* No negative margin - tidak overlap */
}

.mission-panel:nth-child(1) {
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%); /* Rapatkan - serong ke kanan */
}

.mission-panel:nth-child(2) {
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%); /* Rapatkan - serong tengah */
}

.mission-panel:nth-child(3) {
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%); /* Rapatkan - serong ke kiri */
}

.mission-panel:hover,
.mission-panel.active {
  flex: 2.5;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 1;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 255, 255, 0.2), 0 0 90px rgba(255, 255, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.mission-panel:not(.active):not(:hover) {
  transition: flex 0.8s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-panel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
  filter: brightness(0.7) contrast(1.1); /* Darken images */
}

.mission-panel-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* Dark overlay on image */
  z-index: 1;
  pointer-events: none;
}

/* Motion Card White Glow Animation Background */
.mission-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.08) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.mission-panel:hover::before,
.mission-panel.active::before {
  opacity: 1;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.06) 0%, 
    rgba(255, 255, 255, 0.04) 50%, 
    rgba(255, 255, 255, 0.03) 100%);
}

/* White Glow Ripple Effect for Mission Panels */
.mission-panel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.8s ease, height 0.8s ease;
  pointer-events: none;
  z-index: 2;
}

.mission-panel:hover::after,
.mission-panel.active::after {
  width: 400px;
  height: 400px;
  opacity: 0.6;
  transform: translate(-50%, -50%) scale(1);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.12) 50%, transparent 70%);
}

.mission-panel:hover .mission-panel-image,
.mission-panel.active .mission-panel-image {
  transform: scale(1.1);
  filter: brightness(1.15) contrast(1.2) saturate(1.1) 
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.4)) 
    drop-shadow(0 0 50px rgba(255, 255, 255, 0.3)) 
    drop-shadow(0 0 70px rgba(255, 255, 255, 0.2));
}

.mission-panel-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.mission-panel:hover .mission-panel-overlay,
.mission-panel.active .mission-panel-overlay {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.03) 0%, 
    rgba(255, 255, 255, 0.025) 50%, 
    rgba(255, 255, 255, 0.02) 100%);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.1), inset 0 0 50px rgba(255, 255, 255, 0.05);
}

.mission-panel-content {
  position: absolute;
  bottom: 60px; /* Position at bottom with spacing */
  top: auto;
  left: 50%; /* Center horizontally */
  right: auto;
  transform: translateX(-50%) translateY(20px); /* Center and initial offset */
  padding: 20px 24px 30px 24px; /* Add extra bottom padding for border space */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%); /* Darker overlay */
  color: #f5f5f7;
  z-index: 2;
  border-radius: 8px;
  max-width: 600px;
  width: calc(100% - 120px);
  transition: transform 0.4s ease, background 0.6s ease, padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: contentFadeIn 0.8s ease-out forwards;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  min-height: auto;
  backdrop-filter: blur(10px);
}

.mission-panel[data-panel="1"] .mission-panel-content {
  animation-delay: 0.1s;
}

.mission-panel[data-panel="2"] .mission-panel-content {
  animation-delay: 0.2s;
}

.mission-panel[data-panel="3"] .mission-panel-content {
  animation-delay: 0.3s;
}

@keyframes contentFadeIn {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Disable contentFadeIn animation for mobile */
@media (max-width: 768px) {
  @keyframes contentFadeIn {
    to {
      opacity: 1;
      transform: none;
    }
  }
}

.mission-panel:hover .mission-panel-content,
.mission-panel.active .mission-panel-content {
  transform: translateX(-50%) translateY(0);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.4) 100%);
  backdrop-filter: blur(10px);
  padding: 20px 24px 30px 24px;
}

.mission-panel-expanded-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  text-align: center;
  display: block;
  visibility: hidden;
}

.mission-panel:hover .mission-panel-expanded-content {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 14px;
  margin-bottom: 20px;
  visibility: visible;
}

.mission-panel.active .mission-panel-expanded-content {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 14px;
  margin-bottom: 20px;
  visibility: visible;
}

.mission-panel.expanded .mission-panel-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  justify-content: flex-end; /* Align content to bottom */
  text-align: center; /* Center align text */
}

.mission-panel.expanded .mission-panel-expanded-content {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
  margin-bottom: 20px;
  visibility: visible;
}

.mission-panel-description {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5);
}

.mission-panel-description p {
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  box-sizing: border-box;
}

.mission-panel-description p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none; /* No border on last item */
}

.mission-panel-description strong {
  color: #ffffff;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.6);
}

.mission-panel-title {
  font-size: 48px;
  font-weight: 900;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 25px rgba(255, 255, 255, 0.7),
    0 0 45px rgba(255, 255, 255, 0.5);
  transition: text-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(0);
  animation: titleSlideIn 1s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes titleSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mission-panel:hover .mission-panel-title,
.mission-panel.active .mission-panel-title {
  text-shadow: 
    2px 2px 6px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(255, 255, 255, 0.9),
    0 0 50px rgba(255, 255, 255, 0.7),
    0 0 70px rgba(255, 255, 255, 0.5);
}

.mission-panel-text {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(245, 245, 247, 0.95);
  margin: 0;
  max-width: 420px;
  text-align: center;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  display: none;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease, margin-top 0.5s ease;
  pointer-events: none;
  visibility: hidden;
}

.mission-panel:hover .mission-panel-text {
  opacity: 1;
  max-height: 200px;
  margin-top: 12px;
  transform: translateY(0);
  color: rgba(255, 255, 255, 1);
  pointer-events: auto;
  display: block;
  visibility: visible;
}

.mission-panel.active:not(:hover) .mission-panel-text {
  opacity: 0;
  max-height: 0;
  display: none;
  visibility: hidden;
}



.mission-panel-details {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 245, 247, 0.85);
}

.mission-panel-details h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mission-panel-details h3:first-child {
  margin-top: 0;
}

.mission-panel-details p {
  margin-bottom: 16px;
  color: rgba(245, 245, 247, 0.8);
}

/* Responsive for Mission Panels */
@media (max-width: 1024px) {
  .mission-menu {
    left: 20px; /* Move lebih ke kiri untuk tablet */
  }
  
  .menu-title {
    font-size: 32px; /* Kecilkan sikit */
  }
  
  .mission-panels-container {
    width: calc(100% - 280px); /* Kurangkan width */
    margin-left: 280px; /* Tambah margin */
  }
  
  .mission-panel.active {
    flex: 2;
  }
  
  .mission-panel-content {
    padding: 32px 40px; /* Kurangkan padding untuk tablet */
  }
  
  .mission-panel-title {
    font-size: 42px; /* Besarkan untuk tablet */
    margin-bottom: 10px;
  }
  
  .mission-panel-text {
    font-size: 17px; /* Besarkan untuk tablet */
    max-width: 450px;
  }
}


@media (max-width: 768px) {
  /* Override all desktop animations and opacity for mobile - MUST BE FIRST */
  .mission-panel-content,
  .mission-panel .mission-panel-content,
  .mission-panel[data-panel="1"] .mission-panel-content,
  .mission-panel[data-panel="2"] .mission-panel-content,
  .mission-panel[data-panel="3"] .mission-panel-content,
  .mission-panel.active .mission-panel-content,
  .mission-panel:hover .mission-panel-content,
  .mission-panel.expanded .mission-panel-content {
    animation: none !important;
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    position: relative !important;
    transform: none !important;
  }
  
  .mission-panel-title,
  .mission-panel .mission-panel-title,
  .mission-panel-content .mission-panel-title,
  .mission-panel-content h2,
  .mission-panel[data-panel="1"] .mission-panel-title,
  .mission-panel[data-panel="2"] .mission-panel-title,
  .mission-panel[data-panel="3"] .mission-panel-title,
  .mission-panel.active .mission-panel-title,
  .mission-panel:hover .mission-panel-title {
    animation: none !important;
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    color: #ffffff !important;
  }
  
  .mission-panel-expanded-content,
  .mission-panel .mission-panel-expanded-content,
  .mission-panel[data-panel="1"] .mission-panel-expanded-content,
  .mission-panel[data-panel="2"] .mission-panel-expanded-content,
  .mission-panel[data-panel="3"] .mission-panel-expanded-content,
  .mission-panel.active .mission-panel-expanded-content,
  .mission-panel:hover .mission-panel-expanded-content,
  .mission-panel.expanded .mission-panel-expanded-content {
    animation: none !important;
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    max-height: none !important;
    transform: none !important;
  }
  
  .mission-main {
    padding-top: 0 !important;
    margin-top: 0 !important;
    min-height: auto;
    background-image: url("../images/background 1.jpeg") !important;
    background-size: cover !important;
    background-position: center 30% !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    background-color: rgba(5, 6, 10, 0.95) !important;
  }
  
  .mission-main::before {
    content: '' !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(5, 6, 10, 0.85) !important;
    z-index: 0 !important;
    pointer-events: none !important;
    display: block !important;
  }
  
  .mission-panels-section {
    margin: 0;
    padding: 0;
    flex-direction: column;
    height: auto;
    min-height: auto;
    gap: 0;
    background: transparent;
  }
  
  /* Hide menu untuk mobile */
  .mission-menu {
    display: none !important;
    visibility: hidden !important;
  }
  
  .mission-panels-container {
    flex-direction: column;
    height: auto;
    min-height: auto;
    margin: 0;
    padding: 0;
    width: 100%;
    gap: 0;
    display: flex;
    background: transparent;
  }
  
  .mission-panel {
    flex: 1;
    min-height: auto;
    height: auto;
    width: 100%;
    max-width: 100%;
    clip-path: none !important;
    opacity: 1;
    margin: 0;
    padding: 40px 24px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: none;
    overflow: visible;
    border-radius: 0;
    background: #000000;
  }
  
  .mission-panel:last-child {
    border-bottom: none;
  }
  
  .mission-panel:nth-child(1),
  .mission-panel:nth-child(2),
  .mission-panel:nth-child(3) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important; /* Straight - sama macam about */
  }
  
  /* Hide background images but keep content visible */
  .mission-panel-image {
    display: flex !important;
    background-image: none !important;
    background: transparent !important;
    position: relative !important;
    min-height: auto !important;
    height: auto !important;
    width: 100% !important;
    filter: none !important;
    transform: none !important;
    flex-direction: column !important;
  }
  
  .mission-panel-image::after {
    display: none !important;
  }
  
  .mission-panel-overlay {
    display: none !important;
  }
  
  .mission-panel::before,
  .mission-panel::after {
    display: none !important;
  }
  
  /* CRITICAL: Override desktop animation and opacity FIRST */
  .mission-panel-image .mission-panel-content,
  .mission-panel .mission-panel-image .mission-panel-content,
  .mission-panel[data-panel="1"] .mission-panel-image .mission-panel-content,
  .mission-panel[data-panel="2"] .mission-panel-image .mission-panel-content,
  .mission-panel[data-panel="3"] .mission-panel-image .mission-panel-content {
    animation: none !important;
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-fill-mode: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    position: relative !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }
  
  .mission-panel-content {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
    overflow: visible !important;
    opacity: 1 !important;
    min-height: auto !important;
    max-height: none !important;
    box-shadow: none !important;
    z-index: 2 !important;
    animation: none !important;
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-fill-mode: none !important;
    visibility: visible !important;
    color: #ffffff !important;
  }
  
  .mission-panel-content * {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: auto !important;
  }
  
  .mission-panel-title,
  .mission-panel-content .mission-panel-title,
  .mission-panel-content h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #ffffff !important;
    line-height: 1.4 !important;
    text-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    text-align: left !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
    clear: both !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  
  .mission-panel-text {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    z-index: -1 !important;
  }
  
  .mission-panel-content .mission-panel-text,
  .mission-panel .mission-panel-text,
  .mission-panel[data-panel="1"] .mission-panel-text,
  .mission-panel[data-panel="2"] .mission-panel-text,
  .mission-panel[data-panel="3"] .mission-panel-text {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    z-index: -1 !important;
  }
  
  .mission-panel-expanded-content {
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    width: 100% !important;
    transform: none !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
    transition: none !important;
    clear: both !important;
  }
  
  .mission-panel-description {
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #ffffff !important;
    font-weight: 400 !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    text-shadow: none !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    position: relative !important;
    z-index: 1 !important;
    clear: both !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  
  .mission-panel-description p {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 0 16px 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    line-height: 1.7 !important;
    width: 100% !important;
    border-bottom: none !important;
    color: #ffffff !important;
    clear: both !important;
    position: relative !important;
    z-index: 1 !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  
  .mission-panel-description p:last-child {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: none !important;
  }
  
  .mission-panel-description strong {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.7 !important;
    text-shadow: none !important;
    text-align: left !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  /* Ensure all panels are visible */
  .mission-panel[data-panel="1"],
  .mission-panel[data-panel="2"],
  .mission-panel[data-panel="3"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mission-panel[data-panel="1"] .mission-panel-content,
  .mission-panel[data-panel="2"] .mission-panel-content,
  .mission-panel[data-panel="3"] .mission-panel-content {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    animation: none !important;
  }
  
  .mission-panel[data-panel="1"] .mission-panel-title,
  .mission-panel[data-panel="2"] .mission-panel-title,
  .mission-panel[data-panel="3"] .mission-panel-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
    position: relative !important;
    z-index: 11 !important;
  }
  
  .mission-panel[data-panel="1"] .mission-panel-expanded-content,
  .mission-panel[data-panel="2"] .mission-panel-expanded-content,
  .mission-panel[data-panel="3"] .mission-panel-expanded-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none !important;
    position: relative !important;
    z-index: 11 !important;
  }
  
  .mission-panel[data-panel="1"] .mission-panel-description,
  .mission-panel[data-panel="2"] .mission-panel-description,
  .mission-panel[data-panel="3"] .mission-panel-description {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
  }
  
  .mission-panel[data-panel="1"] .mission-panel-description p,
  .mission-panel[data-panel="2"] .mission-panel-description p,
  .mission-panel[data-panel="3"] .mission-panel-description p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
  }
  
  /* FINAL OVERRIDE - Force all content visible - MUST BE LAST */
  .mission-panel * {
    color: #ffffff !important;
  }
  
  .mission-panel-image,
  .mission-panel .mission-panel-image {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .mission-panel-content,
  .mission-panel .mission-panel-content,
  .mission-panel-image .mission-panel-content,
  .mission-panel .mission-panel-image .mission-panel-content {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    position: relative !important;
    transform: none !important;
    animation: none !important;
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-fill-mode: none !important;
  }
  
  .mission-panel-content * {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    color: #ffffff !important;
  }
  
  .mission-panel-title,
  .mission-panel-content h2,
  .mission-panel .mission-panel-title,
  .mission-panel-content .mission-panel-title {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
    animation: none !important;
  }
  
  .mission-panel-expanded-content,
  .mission-panel .mission-panel-expanded-content,
  .mission-panel-description,
  .mission-panel .mission-panel-description {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
    max-height: none !important;
    overflow: visible !important;
  }
  
  .mission-panel-description p,
  .mission-panel .mission-panel-description p {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
  }
}

/* Milestone Page New Layout */
.milestone-main {
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
}

/* Milestone Hero Section */
.milestone-hero-section {
  min-height: 60vh;
  padding: 120px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  background-color: rgba(5, 6, 10, 0.95);
}

.milestone-hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.milestone-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.milestone-hero-title {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.milestone-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Milestone History Section */
.milestone-history-section {
  padding: 100px 0;
  background: #05060a;
}

.milestone-section-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.history-section-header {
  text-align: center;
  margin-bottom: 80px;
}

.history-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 8px 0;
}

.history-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: capitalize;
}

/* Milestone Items Container */
.milestone-items-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.milestone-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.milestone-item-left {
  /* Image left, content right */
}

.milestone-item-right {
  /* Content left, image right */
}

.milestone-image {
  position: relative;
  width: 100%;
  height: 400px;
  z-index: 1;
}

.milestone-image-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.milestone-img-1 {
  background-image: url("../images/17.jpeg");
}

.milestone-img-2 {
  background-image: url("../images/15.jpeg");
}

.milestone-img-5 {
  background-image: url("../images/16.jpeg");
}

.milestone-img-3 {
  background-image: url("../images/download.jpeg");
}

.milestone-img-4 {
  background-image: url("../images/14.jpeg");
}

.milestone-content {
  position: relative;
  z-index: 2;
}

.milestone-year {
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -60px;
  left: -20px;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.03em;
}

.milestone-year-white {
  color: #ffffff;
  -webkit-text-stroke: 2px #ffffff;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
}

.milestone-year-orange {
  color: #ff6b35;
  -webkit-text-stroke: 2px #ff6b35;
  -webkit-text-fill-color: transparent;
  opacity: 0.4;
}

.milestone-item-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 80px 0 20px 0;
  position: relative;
  z-index: 1;
}

.milestone-item-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Tablet Responsive for Milestone */
@media (max-width: 768px) {
  .milestone-hero-section {
    min-height: 50vh;
    padding: 100px 30px;
    background-image: none !important;
    background-color: rgba(5, 6, 10, 0.95) !important;
  }

  .milestone-hero-title {
    font-size: 56px;
  }

  .milestone-hero-subtitle {
    font-size: 16px;
  }

  .milestone-history-section {
    padding: 80px 0;
  }

  .milestone-section-wrapper {
    padding: 0 30px;
  }

  .history-section-header {
    margin-bottom: 60px;
  }

  .history-title {
    font-size: 40px;
  }

  .milestone-items-container {
    gap: 80px;
  }

  .milestone-item {
    gap: 40px;
  }

  .milestone-image {
    height: 350px;
  }

  .milestone-year {
    font-size: 100px;
    top: -30px;
  }

  .milestone-item-title {
    font-size: 28px;
    margin: 50px 0 18px 0;
  }
}

/* Old milestone styles - kept for backward compatibility if needed */
.milestone-item-old {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.milestone-item-old:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.milestone-year-old {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  display: inline-block;
  padding: 8px 0;
}

/* Heritage Page New Layout */
.heritage-main {
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
}

/* Heritage Hero Section */
.heritage-hero-section {
  min-height: 100vh;
  padding: 120px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  background: url("../images/22.jpeg") center center / cover no-repeat fixed;
  background-color: rgba(5, 6, 10, 0.95);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.heritage-hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.heritage-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-left: 60px;
  margin-bottom: 40px;
  max-width: 800px;
}

.heritage-hero-title {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
  line-height: 1.2;
  text-align: left;
}

.heritage-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
  letter-spacing: 0.05em;
  margin: 0;
  font-weight: 400;
}

.heritage-scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.3s ease;
}

.heritage-scroll-indicator span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.heritage-scroll-indicator:hover {
  opacity: 0.8;
}

.scroll-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid rgba(255, 255, 255, 0.8);
}


/* Vertical Timeline Navigation */
.heritage-timeline-nav {
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.timeline-nav-line {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.timeline-nav-dot {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-nav-dot:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.timeline-nav-dot.active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.timeline-nav-label {
  position: absolute;
  left: 28px;
  white-space: nowrap;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.timeline-nav-dot.active .timeline-nav-label,
.timeline-nav-dot:hover .timeline-nav-label {
  opacity: 1;
}

.timeline-nav-page {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.timeline-nav-dot.active .timeline-nav-page {
  color: #05060a;
  font-weight: 700;
}

/* Introduction Section */
.heritage-intro-section {
  min-height: 100vh;
  padding: 120px 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  background: #05060a;
  overflow: hidden;
}

.heritage-intro-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.heritage-intro-content {
  text-align: left;
  position: relative;
  z-index: 3;
}

.heritage-intro-headline {
  display: flex;
  flex-direction: column;
  margin: 0 0 48px 0;
  line-height: 1.3;
}

.heritage-intro-line1 {
  font-size: 32px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
}

.heritage-intro-line2 {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Georgia', 'Times New Roman', serif;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.heritage-intro-text {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.heritage-intro-text p {
  margin: 0 0 30px 0;
}

.heritage-intro-images {
  position: relative;
  min-height: 600px;
  width: 100%;
}

.heritage-intro-image-item {
  position: absolute;
}

.heritage-intro-img-right {
  right: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1;
}

.heritage-intro-img-left {
  left: 0;
  bottom: 0;
  width: 280px;
  z-index: 2;
}

.heritage-intro-image-placeholder {
  width: 100%;
  padding-top: 75%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.heritage-intro-img-1 {
  background-image: url("../images/heritage102.jpeg");
}

.heritage-intro-img-2 {
  background-image: url("../images/contact us background.jpeg");
}

/* Heritage History Section */
.heritage-history-section {
  position: relative;
  background: #05060a;
}

.heritage-year-section {
  min-height: 100vh;
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  overflow: hidden;
}

.heritage-year-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 1;
  filter: grayscale(40%) brightness(0.3);
}

.heritage-year-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 6, 10, 0.9) 0%, rgba(5, 6, 10, 0.7) 50%, rgba(5, 6, 10, 0.5) 100%);
  z-index: 1;
}

.heritage-year-section:has(.heritage-year-side-image) .heritage-year-bg {
  opacity: 0.15;
}

.heritage-year-side-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.heritage-year-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-year-side-image-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.heritage-bg-1 {
  background-image: url("../images/download.jpeg");
}

.heritage-bg-2 {
  background-image: url("../images/ʟᴏᴠᴇ°°° ғ𝟷_ 😘____.jpeg");
}

.heritage-bg-3 {
  background-image: url("../images/twst3.jpeg");
}

.heritage-year-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.heritage-year-section.has-image .heritage-year-content {
  max-width: 100%;
}

.heritage-year-number {
  font-size: 180px;
  font-weight: 700;
  line-height: 1;
  color: #d4a574;
  margin: 0 0 20px 0;
  font-family: 'Georgia', 'Times New Roman', serif;
  letter-spacing: -0.05em;
  text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.heritage-year-category {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.heritage-year-headline {
  font-size: 48px;
  font-weight: 400;
  color: #d4a574;
  margin: 0 0 32px 0;
  line-height: 1.4;
  font-family: 'Georgia', 'Times New Roman', serif;
  max-width: 100%;
}

.heritage-year-text {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 700px;
  font-family: 'Poppins', sans-serif;
}

/* Company Content Wrapper */
.company-content-wrapper {
  position: relative;
  z-index: 2;
}

/* Heritage Figures Section */
.heritage-figures-section {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.figures-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.figures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.figure-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.figure-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(79, 195, 247, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.figure-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 195, 247, 0.5);
  box-shadow: 0 20px 40px rgba(79, 195, 247, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.figure-number {
  font-size: 64px;
  font-weight: 800;
  color: #4fc3f7;
  margin-bottom: 16px;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.figure-card:hover .figure-number {
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(79, 195, 247, 0.6);
}

.figure-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.figure-card:hover .figure-label {
  color: #fff;
}

/* Responsive for Company Page */
@media (max-width: 1024px) {
  .company-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .company-heading {
    position: relative;
    top: 0;
  }

  .company-title {
    font-size: 80px;
  }

  .theme-heritage .company-title {
    font-size: 40px;
  }

  .heritage-popup-image {
    left: -300px;
    width: 280px;
  }

  .sub-nav-container {
    padding: 20px 30px;
  }

  .timeline-year {
    font-size: 40px;
  }

  .timeline-image {
    max-height: 300px;
  }

  .figures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .figure-number {
    font-size: 56px;
  }

  .figures-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .company-hero-section {
    padding: 80px 20px;
    padding-bottom: 60px;
    align-items: flex-end;
    background-image: url("../images/200jpeg.jpeg") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    background-color: rgba(5, 6, 10, 0.95) !important;
    min-height: 100vh;
    position: relative;
  }

  .company-hero-section::before {
    display: none !important;
  }

  .company-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.98) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .company-content-wrapper {
    position: relative !important;
    z-index: 3 !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .company-statistics {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    margin-bottom: 0 !important;
    padding: 30px 0;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: 100%;
    flex-wrap: nowrap !important;
    position: relative;
    z-index: 4;
  }

  .stat-item {
    width: 100% !important;
    flex: none !important;
    min-width: auto !important;
    position: relative;
    text-align: center !important;
    align-items: center !important;
    gap: 3px !important;
    justify-content: center !important;
  }

  .company-statistics .stat-icon {
    margin: 0 0 6px 0 !important;
  }

  .company-statistics .stat-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  .stat-label {
    font-size: 13px !important;
    margin: 0 !important;
    white-space: normal;
    line-height: 1.3;
    text-align: center !important;
  }

  .stat-value {
    font-size: 18px !important;
    text-align: center !important;
    margin: 0 !important;
    line-height: 1.2 !important;
  }

  .stat-sub {
    font-size: 12px !important;
    margin: 0 !important;
    line-height: 1.3 !important;
  }

  .company-hero-title {
    font-size: 48px;
  }

  .company-hero-subtitle {
    font-size: 16px;
  }

  .company-section-wrapper {
    padding: 0 24px;
  }

  .company-features-section,
  .company-about-section,
  .company-advantages-section,
  .company-future-section,
  .company-certification-section {
    padding: 80px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .about-section-title {
    font-size: 36px;
  }

  .about-image-content {
    height: 350px;
  }

  .advantages-section-title {
    font-size: 36px;
    margin-bottom: 48px;
  }

  .future-section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .certification-section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .certification-item {
    padding: 32px 0;
  }

  .certification-title {
    font-size: 18px;
  }

  .certification-description {
    font-size: 15px;
  }

  .certification-separator {
    padding: 18px 0;
  }

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

  .future-image-content {
    height: 300px;
    order: 2;
  }

  .future-text-content {
    order: 1;
  }

  .future-content {
    gap: 20px;
  }

  .future-text {
    font-size: 15px;
  }

  .future-subtitle {
    font-size: 20px;
    margin-top: 12px;
    padding-top: 20px;
  }

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

  .advantages-image-content {
    height: 300px;
    order: 2;
  }

  .advantages-cards-content {
    order: 1;
  }

  .company-title {
    font-size: 56px;
  }

  .theme-heritage .company-title {
    font-size: 32px;
  }

  .heritage-popup-image {
    left: -250px;
    width: 220px;
    bottom: -20px;
  }

  .company-text {
    font-size: 16px;
  }

  .capabilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .capability-card {
    padding: 20px;
  }

  .capability-text {
    font-size: 15px;
  }

  /* Heritage Page Responsive */
  .heritage-hero-section {
    min-height: 70vh;
    padding: 100px 40px;
    background-attachment: scroll !important;
  }

  .heritage-hero-title {
    font-size: 48px;
  }

  .heritage-hero-subtitle {
    font-size: 16px;
  }

  .heritage-intro-section {
    padding: 80px 40px;
    min-height: auto;
  }

  .heritage-intro-headline {
    font-size: 36px;
  }

  .heritage-intro-text {
    font-size: 16px;
  }

  .heritage-intro-images {
    flex-direction: column;
    gap: 20px;
  }

  .heritage-intro-image-item {
    max-width: 100%;
  }

  .heritage-year-section {
    padding: 80px 40px;
    min-height: auto;
  }

  .heritage-year-content {
    padding-left: 80px;
  }

  .heritage-year-number {
    font-size: 120px;
  }

  .heritage-year-headline {
    font-size: 36px;
  }

  .heritage-year-text {
    font-size: 16px;
  }

  .heritage-timeline-nav {
    left: 25px;
    gap: 10px;
  }

  .timeline-nav-dot {
    width: 16px;
    height: 16px;
  }

  .timeline-nav-label {
    left: 28px;
    font-size: 8px;
  }

  .timeline-nav-page {
    font-size: 7px;
  }

  .timeline-total-pages {
    left: 25px;
    font-size: 7px;
    top: calc(50% + 130px);
  }

  .heritage-figures-section {
    margin-top: 60px;
    padding-top: 40px;
  }

  .figures-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .figures-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .figure-card {
    padding: 30px 20px;
  }

  .figure-number {
    font-size: 48px;
  }

  .figure-label {
    font-size: 14px;
  }
}

  .sub-nav-container {
    padding: 8px 16px !important; /* Kurangkan padding untuk mobile */
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .sub-nav {
    padding: 0 !important; /* Remove extra padding */
  }

  .sub-nav-links {
    width: auto;
    flex-direction: row;
    gap: 12px !important; /* Kurangkan gap untuk mobile */
  }

  .sub-nav-link {
    width: auto;
    text-align: center;
    padding: 8px 16px !important; /* Kurangkan padding untuk mobile */
  }

  .sub-nav-link.active {
    width: auto;
    padding: 8px 16px !important; /* Kurangkan padding untuk active link */
    display: inline-block;
  }
}

/* Job Application Page Styles */
.job-application-main {
  padding: 0;
  max-width: 100%;
  margin: 0;
  width: 100%;
}

.job-application-hero {
  padding: 120px 40px 60px;
  background: rgba(10, 13, 26, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.job-application-container {
  max-width: 1200px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  color: rgba(245, 245, 247, 0.7);
  text-decoration: none;
  margin-bottom: 24px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #f5f5f7;
}

.job-application-title {
  font-size: 64px;
  font-weight: 700;
  color: #f5f5f7;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.job-application-subtitle {
  font-size: 18px;
  color: rgba(245, 245, 247, 0.8);
  margin: 0;
}

.job-application-subtitle span {
  font-weight: 600;
  color: #4fc3f7;
}

.job-application-form-section {
  padding: 0;
  max-width: 100%;
  margin: 0;
  width: 100%;
}

.job-application-form-container {
  background: rgba(10, 13, 26, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.job-application-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-section {
  margin-bottom: 48px;
}

.form-section:last-of-type {
  margin-bottom: 32px;
}

.form-section-title {
  font-size: 24px;
  font-weight: 600;
  color: #f5f5f7;
  margin: 0 0 32px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(79, 195, 247, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 245, 247, 0.9);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(5, 6, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #f5f5f7;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #4fc3f7;
  background: rgba(5, 6, 10, 0.9);
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
}

.form-input::placeholder {
  color: rgba(245, 245, 247, 0.4);
}

.form-input[readonly] {
  background: rgba(5, 6, 10, 0.5);
  cursor: not-allowed;
  opacity: 0.7;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

select.form-input {
  cursor: pointer;
  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='%23f5f5f7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.file-upload-wrapper {
  position: relative;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(5, 6, 10, 0.8);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-label:hover {
  border-color: #4fc3f7;
  background: rgba(5, 6, 10, 0.9);
}

.file-upload-text {
  color: rgba(245, 245, 247, 0.7);
  font-size: 14px;
}

.file-upload-button {
  padding: 8px 16px;
  background: rgba(79, 195, 247, 0.2);
  color: #4fc3f7;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.file-name {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(245, 245, 247, 0.6);
}

.checkbox-group {
  margin-bottom: 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(245, 245, 247, 0.9);
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4fc3f7;
}

.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.submit-button {
  flex: 1;
  padding: 16px 32px;
  background: linear-gradient(135deg, #4fc3f7, #5dade2);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(79, 195, 247, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.cancel-button {
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 245, 247, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.cancel-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive for Job Application */
@media (max-width: 768px) {
  .job-application-hero {
    padding: 80px 20px 40px;
  }

  .job-application-title {
    font-size: 40px;
  }

  .job-application-form-section {
    padding: 0;
  }

  .job-application-form-container {
    padding: 32px 20px;
    border-radius: 8px;
    margin: 0 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions {
    flex-direction: column;
  }

  .submit-button,
  .cancel-button {
    width: 100%;
  }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
    flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

/* Default hamburger spans (will be hidden on mobile if new structure exists) */
.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Body lock when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
  .site-header {
    padding: 16px 24px;
  }

  .header-nav {
    gap: 24px;
  }

  .hero-inner {
    padding: 100px 32px 80px;
  }

  .hero-title-image {
    max-width: 450px;
  }
}

/* Mobile Styles - MUST be after tablet styles untuk override */
@media (max-width: 768px) {

  .social-icons-grid {
    gap: 32px;
  }

  .container {
    width: 90%;
    max-width: 900px;
  }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
  /* Header & Navigation - Logo dan menu icon sebaris */
  .site-header {
    padding: 12px 16px;
    flex-wrap: nowrap;
    position: relative;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
  }

  .header-left {
    order: 1 !important;
    flex: 0 0 auto !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: auto !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    order: 2 !important;
    margin-left: auto !important;
    flex: 0 0 auto !important;
    flex-direction: column !important;
    justify-content: space-around !important;
    width: 44px !important;
    height: 44px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    z-index: 1001 !important;
    position: relative !important;
  }
  
  .mobile-menu-toggle span {
    width: 100% !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    transform-origin: center !important;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px) !important;
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px) !important;
  }

  .header-right {
    order: 3 !important;
    display: none !important;
  }

  .header-nav {
    order: 3;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 50% !important;
    max-width: 50% !important;
    min-width: 280px !important;
    height: 100vh !important;
    background: rgba(5, 6, 10, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: stretch !important;
    padding: 0 !important;
    gap: 0 !important;
    z-index: 99999 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
    transform: translateX(-100%) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5), 2px 0 8px rgba(0, 0, 0, 0.3) !important;
    isolation: isolate !important;
  }

  /* Dark background untuk mobile navigation di aircraft page - hide countdown */
  body.menu-open .header-nav.mobile-open {
    background: rgba(5, 6, 10, 0.99) !important;
  }

  /* Hide countdown/timer ketika mobile menu open di aircraft page */
  body.menu-open .unveiling-section,
  body.menu-open .countdown-container,
  body.menu-open .countdown-display {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* Pastikan main content hidden ketika menu open */
  body.menu-open main.aircraft-page {
    display: none !important;
    visibility: hidden !important;
  }

  /* Close button di navigation - menggunakan mobile-menu-toggle */
  .mobile-menu-toggle.active {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    z-index: 100000 !important;
  }

  .header-nav.mobile-open {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
    animation: slideInFromLeft 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 99999 !important;
    position: fixed !important;
    isolation: isolate !important;
  }

  /* Pastikan navigation mobile di depan semua elemen contact page - sama macam page lain */
  body.theme-contact .header-nav {
    z-index: 99999 !important;
    position: fixed !important;
    display: none !important;
    transform: translateX(-100%) !important;
  }

  body.theme-contact .header-nav.mobile-open {
    z-index: 99999 !important;
    position: fixed !important;
    display: flex !important;
    transform: translateX(0) !important;
  }

  /* Pastikan semua elemen contact page di belakang navigation apabila menu open */
  body.theme-contact .contact-main,
  body.theme-contact .contact-hero,
  body.theme-contact .contact-section,
  body.theme-contact .contact-info-card,
  body.theme-contact .contact-container,
  body.theme-contact .contact-details,
  body.theme-contact .contact-detail-item,
  body.theme-contact .site-footer {
    z-index: 1 !important;
    position: relative !important;
  }

  /* Apabila navigation mobile open, semua contact page content pergi ke belakang */
  body.theme-contact.menu-open .contact-main,
  body.theme-contact.menu-open .contact-hero,
  body.theme-contact.menu-open .contact-section,
  body.theme-contact.menu-open .contact-info-card,
  body.theme-contact.menu-open .contact-container,
  body.theme-contact.menu-open .contact-details,
  body.theme-contact.menu-open .contact-detail-item,
  body.theme-contact.menu-open .site-footer,
  body.theme-contact.menu-open .contact-hero-content,
  body.theme-contact.menu-open .contact-form {
    z-index: 0 !important;
    position: relative !important;
    opacity: 0.3 !important;
    filter: blur(2px) !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, filter 0.3s ease !important;
  }

  /* Pastikan navigation mobile closed secara default di contact page - sama macam page lain */
  body.theme-contact .header-nav {
    display: none !important;
    transform: translateX(-100%) !important;
  }

  body.theme-contact .header-nav.mobile-open {
    display: flex !important;
    transform: translateX(0) !important;
  }

  body.theme-contact:not(.menu-open) {
    overflow: auto !important;
    position: relative !important;
  }

  body.theme-contact.menu-open {
    overflow: hidden !important;
    position: fixed !important;
  }

  /* Smooth close animation */
  .header-nav:not(.mobile-open) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-100%) !important;
    animation: slideOutToLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes slideInFromLeft {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideOutToLeft {
    from {
      transform: translateX(0);
      opacity: 1;
    }
    to {
      transform: translateX(-100%);
      opacity: 0;
    }
  }

  /* Overlay background untuk side drawer - menutupi seluruh layar */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999 !important;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    cursor: pointer;
    animation: fadeInOverlay 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  /* Pastikan navigation links boleh click - overlay tidak block navigation area */
  body.menu-open .header-nav,
  body.menu-open .header-nav * {
    pointer-events: auto !important;
  }

  /* Pastikan semua navigation links boleh click dan navigate */
  .header-nav a {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 1001 !important;
    position: relative !important;
  }

  /* Pastikan overlay tidak block navigation area (50% kiri) */
  body.menu-open::before {
    pointer-events: auto;
  }

  /* Overlay hanya block clicks di luar navigation (50% kanan) */
  @media (max-width: 768px) {
    body.menu-open::before {
      clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
    }
  }

  /* Fade out overlay when closing */
  body:not(.menu-open)::before {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    animation: fadeOutOverlay 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes fadeInOverlay {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes fadeOutOverlay {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }

  /* Pastikan body tidak scroll ketika menu open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    touch-action: none;
  }

  /* Touch action untuk mobile navigation items */
  .header-nav a,
  .header-nav .nav-dropdown > a,
  .dropdown-menu a {
    touch-action: manipulation;
  }

  /* Navigation items - Vertical layout centered di tengah page */
  .header-nav {
    display: flex !important;
    flex-direction: column !important;
    padding-top: 70px !important; /* Space for absolute positioned logo */
    padding-bottom: 0 !important;
    gap: 0 !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 100vh !important;
    position: relative !important;
  }

  /* Navigation items - centerkan di tengah */
  .header-nav > a:not(.nav-mobile-contact),
  .header-nav > .nav-dropdown {
    width: 100% !important;
  }

  /* Mobile Navigation Logo - Atas kiri */
  .mobile-nav-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 20px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
    background: transparent !important;
    flex: 0 0 auto !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10 !important;
  }

  .mobile-nav-logo .brand-mark {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    text-decoration: none !important;
  }

  .mobile-nav-logo .logo {
    height: 28px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .mobile-nav-logo .brand-text {
    font-size: 11px !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    opacity: 0.9 !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
  }

  .header-nav > a,
  .header-nav > .nav-dropdown {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
  }

  /* Semua main navigation items - Clean, centered, minimal design */
  .header-nav > a {
    padding: 20px 16px !important;
    font-size: 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-right: none !important;
    border-top: none !important;
    text-align: center !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
    align-items: center !important;
    justify-content: center !important;
    letter-spacing: 0.02em !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: none !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
    margin: 0 !important;
    white-space: nowrap !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 1001 !important;
    position: relative !important;
    display: flex !important;
    width: 100% !important;
  }

  .header-nav > a:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  /* First navigation link after logo should have border-top */
  .mobile-nav-logo + a {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .header-nav > a:last-child {
    border-bottom: none !important;
  }

  .header-nav > a:hover,
  .header-nav > a:active,
  .header-nav > a:focus {
    background: rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 1) !important;
  }

  /* Contact Us button dalam navigation mobile - sama design dengan items lain */
  .header-nav > a.nav-mobile-contact {
    display: flex !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 20px 16px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    line-height: 1.5 !important;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .header-nav > a.nav-mobile-contact:hover,
  .header-nav > a.nav-mobile-contact:active,
  .header-nav > a.nav-mobile-contact:focus {
    background: rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 1) !important;
  }

  /* Dropdown container - HIDE Aircraft navigation di mobile sahaja */
  .nav-dropdown {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }

  /* Show Aircraft link in mobile menu */
  .nav-mobile-aircraft {
    display: flex !important;
    visibility: visible !important;
    width: 100% !important;
    padding: 20px 16px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .nav-mobile-aircraft:hover,
  .nav-mobile-aircraft:active,
  .nav-mobile-aircraft:focus {
    background: rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 1) !important;
  }

  /* Aircraft main link - SAMA dengan items lain - COMPACT - MUAT DALAM SATU PAGE */
  .header-nav .nav-dropdown > a,
  .header-nav.mobile-open .nav-dropdown > a,
  .nav-dropdown > a {
    width: 100% !important;
    padding: 20px 16px !important;
    font-size: 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-right: none !important;
    border-top: none !important;
    text-align: center !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
    align-items: center !important;
    justify-content: center !important;
    letter-spacing: 0.01em !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 1) !important;
    text-transform: none !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    display: flex !important;
    position: relative !important;
    margin: 0 !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease;
    pointer-events: auto !important;
    z-index: 1001 !important;
  }

  .nav-dropdown > a:hover,
  .nav-dropdown > a:active {
    background: rgba(255, 255, 255, 0.05) !important;
  }

  /* Arrow indicator untuk dropdown - SHOW di mobile dengan style Reddit */
  .nav-dropdown > a::after {
    content: '▼' !important;
    font-size: 10px !important;
    margin-left: 8px !important;
    opacity: 0.6 !important;
    transition: transform 0.2s ease, opacity 0.2s ease !important;
    display: inline-block !important;
    position: relative !important;
    right: 0 !important;
  }

  .nav-dropdown.active > a::after {
    transform: rotate(180deg) !important;
    opacity: 1 !important;
  }

  /* Dropdown menu - SHOW di mobile apabila active - Reddit style */
  .dropdown-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease, opacity 0.3s ease !important;
    background: rgba(0, 0, 0, 0.2) !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 500px !important;
    overflow: visible !important;
  }

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

  .dropdown-menu a {
    padding: 12px 16px !important;
    font-size: 14px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
    justify-content: center !important;
    text-align: left !important;
    min-height: auto !important;
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 1) !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    transition: background-color 0.2s ease, color 0.2s ease;
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 1001 !important;
    position: relative !important;
    text-decoration: none !important;
  }

  .dropdown-menu a:last-child {
    border-bottom: none !important;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:active,
  .dropdown-menu a:focus {
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 1) !important;
  }


  /* Contact button - HIDE COMPLETELY di mobile */
  .header-right {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .header-right.mobile-open {
    display: none !important; /* Hide header-right completely di mobile */
  }

  /* REMOVED: .nav-cta styling - semua button Contact Us harus hidden di mobile */

  .brand-mark {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: auto !important;
    margin-top: 2px !important;
    padding-top: 1px !important;
  }

  .brand-text {
    font-size: 10px !important;
    letter-spacing: 0.15em !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    opacity: 0.9 !important;
  }

  .logo {
    height: 32px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  /* Hero Sections - Compact seperti Spotify - FORCE dengan !important */
  .hero-industrial {
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
    background: transparent !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-inner {
    padding: 60px 24px 40px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    width: 100% !important;
    overflow-x: hidden !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  
  .hero-inner * {
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries */
    hyphens: none !important; /* Disable hyphens */
    white-space: normal !important;
    box-sizing: border-box !important;
  }
  
  .hero-inner p,
  .hero-inner .hero-subtitle,
  .hero-inner .hero-caption {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .hero-centered {
    margin: 0 auto !important;
    text-align: center !important;
    width: 100% !important;
  }

  /* Dark blue background untuk mobile - semua page kecuali contact us */
  body:not(.theme-contact) {
    background: #0a0d1a !important; /* Dark blue background untuk mobile */
    background-image: none !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: scroll !important;
    min-height: 100vh !important;
  }
  
  /* Override untuk semua theme classes kecuali contact */
  body.theme-dark:not(.theme-contact),
  .theme-dark:not(.theme-contact),
  body.theme-about:not(.theme-contact),
  body.theme-heritage:not(.theme-contact),
  body.theme-careers:not(.theme-contact),
  body.theme-news:not(.theme-contact),
  body.theme-services:not(.theme-contact),
  body.theme-aircraft:not(.theme-contact),
  body.theme-technology:not(.theme-contact),
  body.theme-compliance:not(.theme-contact),
  body.theme-company:not(.theme-contact),
  body.theme-mission:not(.theme-contact),
  body.theme-milestone:not(.theme-contact) {
    background-image: url("../images/background 1.jpeg") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    background-color: #0a0d1a !important;
    min-height: 100vh !important;
    position: relative !important;
  }

  body.theme-dark:not(.theme-contact)::before,
  .theme-dark:not(.theme-contact)::before,
  body.theme-about:not(.theme-contact)::before,
  body.theme-heritage:not(.theme-contact)::before,
  body.theme-careers:not(.theme-contact)::before,
  body.theme-news:not(.theme-contact)::before,
  body.theme-services:not(.theme-contact)::before,
  body.theme-aircraft:not(.theme-contact)::before,
  body.theme-technology:not(.theme-contact)::before,
  body.theme-compliance:not(.theme-contact)::before,
  body.theme-company:not(.theme-contact)::before,
  body.theme-mission:not(.theme-contact)::before,
  body.theme-milestone:not(.theme-contact)::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: 
      radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.25) 0%, transparent 55%),
      radial-gradient(circle at 30% 40%, rgba(255, 0, 0, 0.18) 0%, transparent 55%),
      radial-gradient(circle at 70% 60%, rgba(138, 43, 226, 0.15) 0%, transparent 55%),
      linear-gradient(135deg, rgba(10, 13, 26, 0.4) 0%, rgba(5, 6, 10, 0.6) 100%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
  }
  
  body.theme-mission::before,
  body.theme-milestone::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(5, 6, 10, 0.85) !important; /* Dark overlay untuk gelapkan */
    z-index: 0 !important;
    pointer-events: none !important;
  }

  /* Pastikan contact us page kekalkan background asal */
  body.theme-contact {
    background: #05060a !important;
    background-image: url('../images/contact us background.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    min-height: 100vh !important;
  }

  .hero-title-image {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 16px !important;
    margin: 0 auto 32px !important; /* Tambah spacing dengan subtitle untuk mobile */
    display: block !important;
    max-height: 140px !important;
    height: auto !important;
    object-fit: contain !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Compact spacing - Kecilkan text untuk mobile - SANGAT KECIL */
  .hero-subtitle,
  .hero-subtitle-centered {
    font-size: 16px !important; /* Increase font size untuk lebih konsisten dengan desktop */
    line-height: 1.7 !important; /* Line height yang lebih baik */
    padding: 0 16px !important;
    margin: 0 auto 32px !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries sahaja - TIDAK TERPUTUS */
    hyphens: none !important; /* Disable hyphens untuk elak text terputus dengan hyphen */
    white-space: normal !important;
    overflow: visible !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    text-overflow: clip !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .hero-actions {
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 24px auto 24px auto !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .primary-cta {
    width: 100% !important;
    max-width: 280px !important;
    padding: 14px 24px !important;
    font-size: 14px !important;
    min-height: 48px !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-caption {
    font-size: 13px !important;
    margin-top: 24px !important;
    opacity: 0.75 !important;
    text-align: center !important;
    line-height: 1.6 !important;
    padding: 0 16px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries */
    hyphens: none !important; /* Disable hyphens */
    white-space: normal !important;
    overflow: visible !important;
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Social Icons Section - Compact layout */
  .social-icons-section {
    padding: 48px 20px;
  }

  .social-icons-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    justify-items: center !important;
    align-items: center !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 20px !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    margin-bottom: 40px !important;
  }
  
  .social-icons-grid * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .social-icon-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    padding: 0 8px !important;
    gap: 8px !important;
  }
  
  .social-icon-item * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .icon-box {
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto !important;
    min-width: 60px !important;
    min-height: 60px !important;
  }

  .social-icon-item p {
    font-size: 12px !important;
    margin-top: 0 !important;
    line-height: 1.5 !important;
    letter-spacing: 0.05em !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries sahaja */
    hyphens: none !important; /* Disable hyphens untuk elak text terputus */
    white-space: normal !important;
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 8px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    display: block !important;
  }

  .social-icons-text {
    padding: 24px 16px 0;
    max-width: 100% !important;
    width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  
  .social-icons-text * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .social-icons-text h2 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: center;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries sahaja */
    hyphens: none !important; /* Disable hyphens untuk elak text terputus */
    white-space: normal !important;
    padding: 0 16px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    display: block !important;
  }

  .social-icons-text p {
    font-size: 14px;
    line-height: 1.7 !important; /* Tambah line height untuk readability */
    text-align: center;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries sahaja - TIDAK TERPUTUS */
    hyphens: none !important; /* Disable hyphens untuk elak text terputus dengan hyphen */
    white-space: normal !important;
    padding: 0 16px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    display: block !important;
  }

  /* Video Section */
  .news-video-container {
    margin: 0 auto 40px auto !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 250px !important;
    position: relative !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65) !important;
    background: #05060a !important;
  }

  .news-video {
    width: 100% !important;
    height: auto !important;
    min-height: 250px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px !important;
    display: block !important;
  }

  .video-controls {
    bottom: 16px !important;
    right: 16px !important;
    gap: 10px !important;
  }

  .video-control-btn {
    width: 48px !important;
    height: 48px !important;
    font-size: 20px !important;
    min-width: 48px !important;
    min-height: 48px !important;
  }

  /* News Cards Grid - Compact */
  .mockups-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 32px 20px !important;
  }

  .mockup-card,
  .news-card {
    min-height: 250px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
    position: relative !important;
    aspect-ratio: 16/9 !important;
  }

  .mockup-card::after,
  .news-card::after {
    background-size: cover !important;
    background-position: center !important;
    border-radius: 12px !important;
  }

  /* News card text sizes - Compact */
  .news-card h3,
  .news-card .news-title {
    font-size: 12px;
    line-height: 1.3;
  }

  .news-card p,
  .news-card .news-description {
    font-size: 10px;
    line-height: 1.4;
  }

  /* App Banner - Compact */
  .app-banner {
    display: none !important; /* Hide app banner untuk mobile */
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  /* Footer - Compact */
  .site-footer {
    padding: 32px 16px 20px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-col h4 {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .footer-col p {
    font-size: 12px;
    color: #ffffff !important;
  }
  
  /* Ensure phone number is white in mobile for all themes */
  .site-footer .footer-col p,
  .theme-dark .site-footer .footer-col p,
  .theme-contact .site-footer .footer-col p,
  .site-footer .footer-col p a,
  .theme-dark .site-footer .footer-col p a,
  .theme-contact .site-footer .footer-col p a {
    color: #ffffff !important;
  }
  
  /* Override any link styles for phone numbers in footer (mobile) */
  .site-footer .footer-col p a:link,
  .site-footer .footer-col p a:visited,
  .site-footer .footer-col p a:hover,
  .site-footer .footer-col p a:active {
    color: #ffffff !important;
    text-decoration: none;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom p {
    font-size: 11px;
  }

  /* About Page - Compact */
  .about-hero {
    padding: 28px 16px;
    text-align: center;
  }

  .about-hero h1 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .about-hero p {
    font-size: 11px;
    line-height: 1.4;
  }

  .about-content {
    padding: 0 16px 28px;
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 16px;
    margin-top: 18px;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .about-content p {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  /* Company Page - Compact */
  .company-hero-section {
    padding: 40px 16px 50px;
    align-items: flex-end;
    background-image: url("../images/200jpeg.jpeg") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    background-color: rgba(5, 6, 10, 0.95) !important;
    min-height: 100vh;
    position: relative;
  }

  .company-hero-section::before {
    display: none !important;
  }

  .company-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.98) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .company-content-wrapper {
    position: relative !important;
    z-index: 3 !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .company-statistics {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 0 !important;
    padding: 24px 0;
    width: 100% !important;
    max-width: 100%;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    position: relative;
    z-index: 4;
  }

  .stat-item {
    width: 100% !important;
    flex: none !important;
    min-width: auto !important;
    position: relative;
    text-align: center !important;
    align-items: center !important;
    gap: 2px !important;
    justify-content: center !important;
  }

  .company-statistics .stat-icon {
    margin: 0 0 5px 0 !important;
  }

  .company-statistics .stat-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  .stat-label {
    font-size: 12px !important;
    margin: 0 !important;
    white-space: normal;
    line-height: 1.3;
    text-align: center !important;
  }

  .stat-value {
    font-size: 16px !important;
    text-align: center !important;
    margin: 0 !important;
    line-height: 1.2 !important;
  }

  .stat-sub {
    font-size: 11px !important;
    margin: 0 !important;
    line-height: 1.3 !important;
  }

  .company-hero-title {
    font-size: 36px;
  }

  .company-hero-subtitle {
    font-size: 14px;
  }

  .company-section-wrapper {
    padding: 0 16px;
  }

  .company-features-section,
  .company-about-section,
  .company-advantages-section,
  .company-future-section,
  .company-certification-section {
    padding: 40px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px;
  }

  .about-section-title {
    font-size: 24px;
  }

  .about-image-content {
    height: 250px;
  }

  .advantages-section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .future-section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .future-content-grid {
    gap: 30px;
  }

  .future-image-content {
    height: 250px;
  }

  .future-content {
    gap: 18px;
  }

  .future-text {
    font-size: 14px;
  }

  .future-subtitle {
    font-size: 18px;
    margin-top: 10px;
    padding-top: 18px;
  }

  .advantages-image-content {
    height: 250px;
  }

  .certification-section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .certification-list {
    gap: 0;
  }

  .certification-item {
    padding: 24px 0;
  }

  .certification-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .certification-description {
    font-size: 14px;
  }

  .certification-separator {
    font-size: 20px;
    padding: 16px 0;
  }

  .advantage-card {
    padding: 20px;
  }

  .company-heading {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: center;
  }

  /* Mission Page Mobile - Black background only */
  .mission-panel {
    padding: 32px 20px !important;
    background: #000000 !important;
  }
  
  .mission-panel-image {
    display: flex !important;
    background-image: none !important;
    background: transparent !important;
    position: relative !important;
    min-height: auto !important;
    height: auto !important;
    width: 100% !important;
    filter: none !important;
    transform: none !important;
    flex-direction: column !important;
  }
  
  .mission-panel-image::after {
    display: none !important;
  }

  .mission-panel-overlay {
    display: none !important;
  }
  
  .mission-panel::before,
  .mission-panel::after {
    display: none !important;
  }
  
  .mission-panel-content {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
    overflow: visible !important;
    opacity: 1 !important;
    min-height: auto !important;
    max-height: none !important;
    box-shadow: none !important;
    z-index: 2 !important;
    animation: none !important;
    visibility: visible !important;
  }
  
  /* Force center ALL child elements in mission-panel-content for mobile 480px */
  .mission-panel-content *,
  .mission-panel-content h2,
  .mission-panel-content p,
  .mission-panel-content div,
  .mission-panel-content span {
    text-align: center !important; /* Center all child elements */
    margin-left: 0 !important; /* Remove left margin */
    margin-right: 0 !important; /* Remove right margin */
    width: 100% !important; /* Full width for proper centering */
    max-width: 100% !important; /* Full width */
    box-sizing: border-box !important;
    padding-left: 0 !important; /* Remove left padding */
    padding-right: 0 !important; /* Remove right padding */
  }
  
  .mission-panel-content h2,
  .mission-panel-content .mission-panel-title,
  .mission-panel-title {
    display: block !important; /* Block level for centering */
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .mission-panel-content p {
    display: block !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .mission-panel-content .mission-panel-text,
  .mission-panel-text {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    z-index: -1 !important;
  }
  
  .mission-panel-content * {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .mission-panel-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    text-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    text-align: left !important;
  }
  
  .mission-panel-text {
    display: none !important;
  }
  
  .mission-panel-expanded-content {
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    width: 100% !important;
    transform: none !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
    transition: none !important;
  }
  
  .mission-panel-description {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #ffffff !important;
    font-weight: 400 !important;
    padding: 0 !important;
    margin: 0 !important;
    text-shadow: none !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  .mission-panel-title,
  .mission-panel-content .mission-panel-title,
  .mission-panel-content h2 {
    margin: 0 0 18px 0 !important;
    line-height: 1.4 !important;
    clear: both !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  .mission-panel-expanded-content {
    margin-top: 0 !important;
    clear: both !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  .mission-panel-description {
    line-height: 1.7 !important;
    clear: both !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  .mission-panel-description p {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    line-height: 1.7 !important;
    width: 100% !important;
    border-bottom: none !important;
    color: #ffffff !important;
    clear: both !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  .mission-panel-description p:last-child {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: none !important;
  }
  
  .mission-panel-description strong {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.7 !important;
    text-shadow: none !important;
    text-align: left !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  /* Ensure all panels are visible for 480px */
  .mission-panel[data-panel="1"],
  .mission-panel[data-panel="2"],
  .mission-panel[data-panel="3"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mission-panel[data-panel="1"] .mission-panel-content,
  .mission-panel[data-panel="2"] .mission-panel-content,
  .mission-panel[data-panel="3"] .mission-panel-content {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mission-panel[data-panel="1"] .mission-panel-title,
  .mission-panel[data-panel="2"] .mission-panel-title,
  .mission-panel[data-panel="3"] .mission-panel-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mission-panel[data-panel="1"] .mission-panel-expanded-content,
  .mission-panel[data-panel="2"] .mission-panel-expanded-content,
  .mission-panel[data-panel="3"] .mission-panel-expanded-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .company-content-wrapper {
    padding: 0 16px;
    max-width: 100%;
  }

  .theme-heritage .company-content-wrapper {
    padding: 0 20px;
  }

  .theme-heritage .company-hero-section {
    padding: 60px 20px;
  }

  .company-content h2 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .company-content p {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  
  /* Milestone Page Mobile - New Layout */
  .milestone-hero-section {
    min-height: 50vh;
    padding: 80px 20px;
    background-image: none !important;
    background-color: rgba(5, 6, 10, 0.95) !important;
  }

  .milestone-hero-title {
    font-size: 42px;
  }

  .milestone-hero-subtitle {
    font-size: 14px;
  }

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

  .milestone-section-wrapper {
    padding: 0 20px;
  }

  .history-section-header {
    margin-bottom: 50px;
  }

  .history-subtitle {
    font-size: 12px;
  }

  .history-title {
    font-size: 32px;
  }

  .milestone-items-container {
    gap: 60px;
  }

  .milestone-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .milestone-item-right {
    /* On mobile, reverse order so content comes first */
  }

  .milestone-item-right .milestone-content {
    order: 1;
  }

  .milestone-item-right .milestone-image {
    order: 2;
  }

  .milestone-image {
    height: 250px;
  }

  .milestone-year {
    font-size: 80px;
    top: -20px;
    left: -10px;
  }

  .milestone-item-title {
    font-size: 24px;
    margin: 40px 0 16px 0;
  }

  .milestone-item-text {
    font-size: 14px;
  }

  /* Old milestone styles - kept for backward compatibility */
  .milestone-item-old {
    margin-bottom: 32px !important;
    padding-bottom: 24px !important;
  }
  
  .milestone-year-old {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    padding: 6px 0 !important;
  }
  
  .company-title {
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 24px !important;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
  }

  .capability-card {
    padding: 20px;
    text-align: center !important; /* Centerkan content */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .capability-text {
    font-size: 15px;
    line-height: 1.5;
    text-align: center !important; /* Centerkan text */
    margin: 0 auto !important;
    width: 100%;
  }

  /* Centerkan title "Our Capabilities" untuk mobile */
  .section-subtitle.capabilities-title {
    text-align: center !important;
    margin: 40px auto 32px auto !important;
    width: 100%;
  }

  /* Heritage Page Mobile - Compact */
  .heritage-hero-section {
    min-height: 60vh;
    padding: 80px 20px;
    background-attachment: scroll !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
  }

  .heritage-hero-content {
    margin-left: 20px !important;
    margin-bottom: 60px !important;
    max-width: calc(100% - 40px) !important;
  }

  .heritage-hero-title {
    font-size: 32px;
  }

  .heritage-hero-subtitle {
    font-size: 14px;
  }

  .heritage-scroll-indicator {
    bottom: 40px;
  }

  .heritage-scroll-indicator span {
    font-size: 10px;
  }

  .heritage-intro-section {
    padding: 60px 20px;
  }

  .heritage-intro-headline {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .heritage-intro-text {
    font-size: 14px;
  }

  .heritage-intro-text p {
    margin-bottom: 20px;
  }

  .heritage-intro-images {
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
  }

  .heritage-intro-image-item {
    max-width: 100%;
  }

  .heritage-year-section {
    padding: 60px 20px;
  }

  .heritage-year-content {
    padding-left: 0;
  }

  .heritage-year-number {
    font-size: 80px;
    margin-bottom: 16px;
  }

  .heritage-year-category {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .heritage-year-headline {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .heritage-year-text {
    font-size: 14px;
  }

  .heritage-timeline-nav {
    display: none;
  }

  .timeline-total-pages {
    display: none;
  }

  .timeline-image-container {
    margin-top: 12px;
    max-height: 180px;
    border-radius: 6px;
    overflow: hidden;
  }

  .heritage-scroll-indicator-bar {
    left: 16px;
    height: 50vh;
  }

  /* Contact Page - Compact */
  .contact-hero {
    padding: 28px 16px 20px;
    text-align: center;
  }

  .contact-hero-content h1 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .contact-form-container {
    padding: 20px 16px;
    max-width: 100%;
  }

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

  .form-group label {
    font-size: 12px;
    margin-bottom: 6px;
    display: block;
  }

  .form-group input,
  .form-group textarea {
    font-size: 13px; /* Kecilkan untuk mobile */
    padding: 8px 10px;
    min-height: 38px;
    width: 100%;
    border-radius: 6px;
    -webkit-appearance: none;
  }

  .form-group textarea {
    min-height: 80px;
    resize: vertical;
  }

  .submit-btn {
    width: 100%;
    padding: 8px 16px;
    font-size: 11px;
    min-height: 36px;
    border-radius: 6px;
    margin-top: 6px;
  }

  /* News Page - Compact */
  .news-background-wrapper::after {
    background-image: none !important; /* Remove background image on mobile */
    background-color: #1a1a1a !important; /* Dark background instead */
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    filter: none !important; /* Remove filters */
    min-height: 100vh;
    height: 100%;
  }
  
  .news-category-card {
    background: #2a2a2a !important; /* Dark gray background for mobile */
    background-image: none !important; /* Remove any background images */
  }
  
  .news-category-card:hover,
  .news-category-card.active {
    background: #2a2a2a !important; /* Keep dark gray on hover/active for mobile */
  }

  .news-hero-section {
    padding: 28px 16px 20px;
    text-align: left !important; /* Align ke tepi kiri */
    background: url("../images/darkwallpaper .jpeg") center 30% / 110% no-repeat fixed !important; /* Same as main background */
    background-color: rgba(5, 6, 10, 0.95) !important; /* Dark overlay */
    position: relative;
    z-index: 1;
    min-height: 40vh;
  }
  
  .news-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 6, 10, 0.85) !important; /* Dark overlay untuk gelapkan background */
    z-index: 0;
    pointer-events: none;
  }

  .news-hero-content {
    text-align: left !important; /* Align content ke tepi kiri */
    padding-left: 16px !important;
    padding-right: 16px !important;
    position: relative;
    z-index: 2; /* Above overlay */
  }

  .news-hero-label {
    text-align: left !important; /* Align label ke tepi kiri */
  }

  .news-hero-content h1,
  .news-hero-title {
    font-size: 32px !important; /* Besarkan sikit dari 22px */
    line-height: 1.3;
    margin-bottom: 8px;
    text-align: left !important; /* Align ke tepi kiri */
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 16px;
  }

  .news-card {
    border-radius: 8px;
    overflow: hidden;
  }

  /* Aircraft Page - Compact */
  .unveiling-section {
    padding: 28px 16px 20px;
    text-align: center;
  }

  .unveiling-content h1 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .unveiling-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Services/Careers Page - Compact */
  .careers-hero {
    padding: 28px 16px 20px;
    text-align: center;
  }

  .careers-hero-title {
    font-size: 20px;
    line-height: 1.3;
  }

  /* Container adjustments */
  .container {
    width: 100%;
    padding: 0 20px;
    margin: 30px auto;
  }

  .container .btn-glass {
    width: 100%;
    max-width: 100%;
    margin: 12px 0;
  }

  /* Buttons - Touch Friendly, kekalkan readable */
  .btn,
  .btn-primary,
  .btn-glass a {
    min-height: 44px; /* Touch-friendly minimum */
    padding: 12px 24px;
    font-size: 16px; /* Kekalkan readable */
    border-radius: 6px;
  }

  /* Sub Navigation */
  .sub-nav {
    padding: 0 !important; /* Remove extra padding */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sub-nav-container {
    flex-wrap: nowrap;
    gap: 10px;
    min-width: max-content;
    padding: 8px 16px !important; /* Kurangkan padding untuk mobile */
  }

  .sub-nav a,
  .sub-nav-link {
    padding: 8px 16px !important; /* Kurangkan padding untuk mobile */
    font-size: 13px;
    min-height: 36px !important; /* Kurangkan min-height */
    white-space: nowrap;
    border-radius: 6px;
  }

  .sub-nav-link.active {
    padding: 8px 16px !important; /* Kurangkan padding untuk active link */
  }

  /* Home Page - Compact */
  .home-page {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  
  .home-page * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .home-page section {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* Hero Industrial */
  .hero-industrial {
    margin-bottom: 24px;
    min-height: auto;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  
  .hero-industrial * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Social Icons Section */
  .social-icons-section {
    margin: 24px 0 32px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    padding: 0 !important;
  }

  .home-manufacture-image {
    margin: 0 auto 32px auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    position: relative !important;
    min-height: 300px !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65) !important;
    background-color: #000000 !important;
  }

  .home-manufacture-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px !important;
    max-height: 400px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    filter: brightness(0.85) contrast(1.05) !important;
    border-radius: 12px !important;
  }

  .social-icons-text {
    margin-top: 0 !important;
    padding: 0 !important;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .social-icons-text .home-manufacture-image {
    margin-bottom: 32px !important;
    margin-top: 0 !important;
  }

  .social-icons-text h2 {
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    padding: 0 20px !important;
    font-size: 20px !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #ffffff !important;
  }

  .social-icons-text p {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
    padding: 0 20px !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #f5f5f7 !important;
    opacity: 0.9 !important;
  }

  .mockups-section {
    margin: 0 !important;
    padding: 0 16px !important;
  }

  .news-video-container {
    margin: 0 auto 40px auto !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    min-height: 250px !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65) !important;
    background: #05060a !important;
    position: relative !important;
  }

  .news-video {
    width: 100% !important;
    height: auto !important;
    min-height: 250px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px !important;
    display: block !important;
  }

  .home-story-section {
    display: block !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    padding: 0 16px !important;
  }

  .home-story-row {
    margin-bottom: 24px !important;
  }

  .home-story-merged-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65) !important;
  }

  .story-gallery-card,
  .story-gallery-card-bottom {
    min-height: 300px !important;
    border-radius: 0 !important;
  }

  .story-gallery-slide {
    min-height: 300px !important;
    background-size: cover !important;
    background-position: center !important;
  }
  
  .social-icons-section * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mockups Section */
  .mockups-section {
    margin: 24px 0;
    padding: 0;
  }

  /* Section spacing */
  section {
    margin-bottom: 0;
  }

  section + section {
    margin-top: 0;
  }

  /* Prevent horizontal scroll - PENTING */
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  html {
    overflow-x: hidden;
    width: 100%;
  }

  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  img {
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
  }

  /* Ensure all images are properly contained and styled */
  .about-image-content img,
  .advantages-image-content img,
  .future-image-content img,
  .story-image,
  .engineering-image,
  .about-image-placeholder,
  .advantages-image-placeholder {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px !important;
    max-width: 100% !important;
  }

  /* Video responsive improvements */
  video,
  .news-video {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px !important;
  }

  /* Pastikan semua containers tidak overflow */
  .container,
  .home-page,
  section {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Pastikan text tidak overflow - Comprehensive text wrapping */
  h1, h2, h3, h4, h5, h6, p, span, a, div {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries */
    hyphens: none !important; /* Disable auto hyphens untuk elak text terputus */
    white-space: normal !important;
    max-width: 100% !important;
  }
  
  /* Specific fixes for common text elements */
  .brand-text,
  .hero-subtitle,
  .hero-caption,
  .social-icon-item p,
  .social-icons-text p,
  .social-icons-text h2 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Break pada word boundaries sahaja */
    hyphens: none !important; /* Disable hyphens */
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: 100% !important;
  }

  /* Video container */
  .news-video-container {
    margin: 0 auto 40px auto !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    min-height: 250px !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65) !important;
    background: #05060a !important;
  }

  .news-video {
    width: 100% !important;
    height: auto !important;
    min-height: 250px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px !important;
    display: block !important;
  }

  /* Better text alignment - Comprehensive fixes */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries */
    hyphens: none !important; /* Disable hyphens */
    white-space: normal !important;
    max-width: 100% !important;
  }

  p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries */
    hyphens: none !important; /* Disable hyphens */
    white-space: normal !important;
    max-width: 100% !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
  
  /* Fix for all text containers */
  .hero-inner,
  .hero-subtitle,
  .hero-caption,
  .social-icons-text,
  .social-icon-item,
  .social-icon-item p {
    overflow-x: hidden !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Normal break pada word boundaries */
    hyphens: none !important; /* Disable hyphens */
    white-space: normal !important;
    max-width: 100% !important;
  }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
  .site-header {
    padding: 10px 12px;
    gap: 12px;
  }

  .logo {
    height: 36px;
  }

  .brand-text {
    font-size: 8px;
  }

  .header-nav {
    gap: 10px;
    margin: 0 6px;
  }

  .header-nav a {
    font-size: 8px; /* Lebih kecil untuk small mobile */
    padding: 6px 0;
    letter-spacing: 0.1em;
  }

  .nav-dropdown > a {
    padding: 6px 10px 6px 0;
    font-size: 8px; /* Lebih kecil untuk small mobile */
  }

  .nav-dropdown > a::after {
    font-size: 4px;
    margin-left: 2px;
  }

  .dropdown-menu {
    min-width: 110px;
    padding: 6px 0;
  }

  .dropdown-menu a {
    font-size: 8px; /* Lebih kecil untuk small mobile */
    padding: 8px 10px;
    min-height: 32px;
    letter-spacing: 0.1em;
  }

  .nav-cta {
    padding: 6px 10px;
    font-size: 8px; /* Lebih kecil untuk small mobile */
    letter-spacing: 0.1em;
  }

  .brand-text {
    font-size: 7px; /* Lebih kecil untuk small mobile */
  }

  .logo {
    height: 32px; /* Lebih kecil untuk small mobile */
  }

  .hero-inner {
    padding: 32px 12px 24px;
  }

  .hero-title-image {
    margin-bottom: 28px; /* Tambah spacing dengan subtitle untuk tablet */
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 40px; /* Tambah spacing dengan button untuk tablet */
  }

  .hero-actions {
    gap: 8px;
  }

  .primary-cta {
    padding: 10px 18px;
    font-size: 14px;
    min-height: 44px;
  }

  .social-icons-section {
    padding: 24px 12px;
  }

  .social-icons-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    justify-items: center !important;
    align-items: start !important;
    padding: 0 12px !important;
  }

  .social-icon-item {
    width: 100% !important;
    max-width: 160px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .icon-box {
    width: 45px;
    height: 45px;
  }

  .social-icon-item p {
    font-size: 9px;
    margin-top: 6px;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: none !important; /* Disable hyphens untuk elak text terputus */
    white-space: normal !important;
    text-align: center !important;
    max-width: 100% !important;
    padding: 0 4px !important;
  }

  .social-icons-text {
    padding: 20px 12px 0;
  }

  .social-icons-text h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .social-icons-text p {
    font-size: 13px;
  }


  .company-hero-section {
    padding: 60px 16px 40px;
  }

  .company-heading {
    font-size: 30px;
    margin-bottom: 40px;
  }

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

  .company-content h2 {
    font-size: 24px;
  }

  .about-hero {
    padding: 40px 16px;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .about-content {
    padding: 0 16px 40px;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .contact-hero {
    padding: 60px 16px 40px;
  }

  .contact-hero-content h1 {
    font-size: 30px;
  }

  .contact-form-container {
    padding: 32px 16px;
  }

  .news-hero-section {
    padding: 60px 16px 40px;
  }

  .news-hero-content h1 {
    font-size: 30px;
  }

  .news-grid {
    padding: 40px 16px;
    gap: 24px;
  }

  .unveiling-section {
    padding: 60px 16px 40px;
  }

  .unveiling-content h1 {
    font-size: 30px;
  }

  .careers-hero {
    padding: 60px 16px 40px;
  }

  .careers-hero-title {
    font-size: 30px;
  }

  .app-banner {
    display: none !important; /* Hide app banner untuk tablet */
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .mockups-grid {
    padding: 40px 16px;
    gap: 20px;
  }

  .site-footer {
    padding: 36px 16px 20px; /* Normal padding - tiada button Contact Us di mobile */
  }

  .footer-contact {
    gap: 32px;
  }

  .header-nav {
    padding: 60px 16px 16px;
    justify-content: center;
  }

  .header-nav a {
    padding: 8px 0;
    font-size: 12px;
    min-height: 36px;
  }

  .nav-dropdown > a {
    padding: 8px 0;
    min-height: 36px;
  }

  .dropdown-menu {
    margin-top: 2px;
    padding: 2px 0;
  }

  .dropdown-menu a {
    padding: 6px 12px;
    font-size: 11px;
    min-height: 32px;
  }

  /* Hide semua Contact Us button di mobile - delete semua button Contact Us */
  /* Note: .header-nav > a.nav-mobile-contact TIDAK di-hide - ini adalah link di mobile navigation */
  .header-right,
  .header-right *,
  .header-right .nav-cta,
  .site-header .header-right,
  .site-header .header-right *,
  .site-header .header-right .nav-cta,
  .nav-cta,
  a.nav-cta,
  a[class*="nav-cta"],
  a[href*="contact.html"].nav-cta {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    clip: rect(0, 0, 0, 0) !important;
  }
}

/* Landscape Mobile (max-width: 768px and orientation: landscape) */
@media (max-width: 768px) and (orientation: landscape) {
  .heritage-front-hero {
    min-height: auto;
    padding: 5px 16px;
  }

  .hero-inner {
    padding: 32px 16px 24px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}
