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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  background: #ffffff;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 44px;
}

.btn-primary {
  background-color: #ffffff;
  color: #03224c;
}

.btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #03224c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* ===== BANNER SECTION ===== */
.banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 50, 0.55);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  color: white;
  text-align: left;
}

.banner-left h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 10px;
}

.banner-left em {
  font-style: italic;
  color: #ffcc00;
}

/* ===== ABOUT US SECTION ===== */
.about {
  position: relative;
  background: #ffffff;
  padding: 50px 0 10px;
  z-index: 2;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  top: -80px;
  z-index: 10;
}

.about-box {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 35px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-radius: 0;
  position: relative;
  transition: all 0.3s ease;
  border-top: 5px solid #00224d;
}

.about-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-top-color: #ffcc00;
}

.about-box h2 {
  font-size: 1.5rem;
  color: #00224d;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* ===== STATS FULLWIDTH SECTION ===== */
.stats-fullwidth {
  display: flex;
  width: 100%;
  margin-top: 40px;
  background: transparent;
}

.stat-item {
  flex: 1;
  text-align: center;
  position: relative;
  background: transparent;
  padding: 40px 20px;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    #e0e0e0 20%, 
    #e0e0e0 80%, 
    transparent 100%);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #00224d;
  margin-bottom: 15px;
  line-height: 1;
  display: block;
}

.stat-item h3 {
  font-size: 1.2rem;
  color: #ffcc00;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== ABOUT US SECTION 2===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 44px;
}

.btn-primary {
  background-color: #ffffff;
  color: #03224c;
}

.btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #03224c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.get-started-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: white;
  padding: 12px 30px;
  border: 2px solid white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 44px;
}

.get-started-btn:hover {
  background: white;
  color: #00224d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 34, 77, 0.6);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  color: white;
  text-align: left;
}

.banner-left {
  width: 100%;
  text-align: left;
}

.banner-left h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 30px;
}

.banner-left em {
  font-style: italic;
  color: #ffcc00;
}

.company-overview {
  padding: 100px 0;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.overview-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.overview-text {
  flex: 1;
}

.overview-text h2 {
  font-size: 2.5rem;
  color: #00224D;
  margin-bottom: 30px;
  font-weight: 700;
}

.overview-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.overview-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.beyond-compare-section {
  padding: 100px 0;
  background: #ffffff;
}

/* ===== SOUTHEAST ASIA BANNER ===== */
.southeast-banner {
  position: relative;
  width: 100vw;
  min-height: 70vh;
  background-color: #00224d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 0px;
}

.southeast-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding-left: 8%;
  padding-top: 30px;
}

.southeast-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.southeast-text h2 span {
  color: #ffcc00;
}

.southeast-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 550px;
}

.southeast-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

.southeast-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-right: 0;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* ===== SERVICE DETAIL SECTION ===== */
.service-detail {
  width: 100%;
  background-color: #fff;
  padding: 80px 0;
  color: #000;
  overflow: hidden;
}

.service-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 50px;
  padding: 0 5%;
}

.service-left {
  flex: 1.2;
}

.service-left h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  color: #00224d;
}

/* ===== ACCORDION IMPROVED STYLES ===== */
.accordion {
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  background: #fff;
}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  background: #fff;
  position: relative;
}

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

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 20px 50px 20px 0;
  cursor: pointer;
  position: relative;
  color: #111;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  background: #fff;
  display: flex;
  align-items: center;
  min-height: 70px;
}

.accordion-header:hover {
  color: #00224d;
  background: #f8f9fa;
}

/* CSS Pure Solution untuk Panah Plus/Minus */
.accordion-header::before,
.accordion-header::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #00224d;
  transition: all 0.3s ease;
}

.accordion-header::before {
  width: 18px;
  height: 2px;
  right: 20px;
}

.accordion-header::after {
  width: 2px;
  height: 18px;
  right: 28px;
  transform: translateY(-50%) rotate(0deg);
}

.accordion-item.active .accordion-header::before {
  background: #ffcc00;
}

.accordion-item.active .accordion-header::after {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
  background: #ffcc00;
}

.accordion-item.active .accordion-header {
  color: #00224d;
  background: #fff;
}

.accordion-content {
  display: none;
  padding: 0 0 25px 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  animation: fadeIn 0.3s ease;
  background: #fff;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* Hover effects untuk accordion item */
.accordion-item:hover {
  background: #f8f9fa;
}

.accordion-item.active {
  background: #fff;
}

.service-footer {
  font-size: 0.95rem;
  color: #555;
  margin-top: 30px;
  line-height: 1.6;
  padding: 25px;
  background: #f8f9fa;
  border-left: 4px solid #ffcc00;
  border-radius: 0 8px 8px 0;
}

.service-footer strong {
  color: #00224d;
  font-weight: 700;
}

.service-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #000;
  min-height: 500px;
}

.media-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #f0f0f0;
}

.service-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
  border-radius: 8px;
}

#service-video {
  background: #000;
  min-height: 400px;
}

.service-right video,
.service-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
  border-radius: 8px;
}

/* Loading state untuk media container */
.media-container.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #00224d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}

.media-container.loading::after {
  content: "Loading...";
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  transform: translateX(-50%);
  color: #00224d;
  font-size: 0.9rem;
  z-index: 10;
}

/* ===== OUR PRODUCT===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  background: #ffffff;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 44px;
}

.btn-primary {
  background-color: #ffffff;
  color: #03224c;
}

.btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #03224c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.get-started-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: white;
  padding: 12px 30px;
  border: 2px solid white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 44px;
}

.get-started-btn:hover {
  background: white;
  color: #00224d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ===== BANNER (FOTO POLOS) ===== */
.banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

/* Overlay untuk meningkatkan readability teks */
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 50, 0.3); /* Overlay ringan untuk kontras */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  color: white;
  text-align: left;
}

.banner-left {
  width: 100%;
  text-align: left;
}

.banner-left h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 30px;
}

.banner-left em {
  font-style: italic;
  color: #ffcc00;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 0;
  background: #ffffff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  opacity: 1 !important;
  transform: none !important;
}

.content-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 80vh;
}

.text-content {
  flex: 0 0 50%;
  text-align: left;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.active .text-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.text-content h2 {
  font-size: 2.2rem;
  color: #001932;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.text-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

.text-content-right {
  text-align: right;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.active .text-content-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.text-content-right p {
  text-align: right;
}

.image-content {
  flex: 0 0 50%;
  display: flex;
  align-items: stretch;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.active .image-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.content-section-reverse .image-content {
  opacity: 0;
  transform: translateX(-40px);
}

.content-section-reverse.active .image-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.content-section-reverse .text-content-right {
  opacity: 0;
  transform: translateX(40px);
}

.content-section-reverse.active .text-content-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  /* HAPUS transition dan transform untuk menghilangkan efek zoom */
}

/* ===== PRODUCT GRID SECTION ===== */
.product-grid-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.product-grid-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

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

.product-grid-header h2 {
  font-size: 2.5rem;
  color: #00224d;
  margin-bottom: 20px;
  font-weight: 700;
}

.product-grid-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* HAPUS transition untuk menghilangkan efek zoom */
}

.product-content {
  padding: 30px;
}

.product-content h3 {
  font-size: 1.5rem;
  color: #00224d;
  margin-bottom: 15px;
  font-weight: 700;
}

.product-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  margin-bottom: 25px;
}

.product-features li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-weight: bold;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00224d;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 44px;
  width: 100%;
  text-align: center;
}

.product-cta:hover {
  background: #001933;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 34, 77, 0.3);
}

/* ===== SPECIFICATIONS SECTION ===== */
.specifications-section {
  padding: 80px 0;
  background: #ffffff;
}

.specifications-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

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

.specifications-header h2 {
  font-size: 2.5rem;
  color: #00224d;
  margin-bottom: 20px;
  font-weight: 700;
}

.specifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.spec-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.spec-card:hover {
  transform: translateY(-5px);
  border-color: #00224d;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.spec-icon {
  font-size: 3rem;
  color: #00224d;
  margin-bottom: 20px;
}

.spec-card h3 {
  font-size: 1.3rem;
  color: #00224d;
  margin-bottom: 15px;
  font-weight: 700;
}

.spec-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background-color: #03224c;
  color: #fff;
  padding: 80px 5% 0;
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  min-height: 80vh;
}

.hero-text {
  flex: 1.1;
  min-width: 300px;
  padding-bottom: 80px;
}

.hero-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e6f0;
  margin-bottom: 30px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 450px;
  margin-bottom: 0;
}

.circle-bg {
  display: none;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  z-index: 2;
  position: relative;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}

/* ===== CONTACT SECTION ===== */
.container {
  width: 80%;
  margin: 30px auto;
  background: #ffffff;
  display: flex;
  padding: 30px;
  box-shadow: 0px 3px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  border-radius: 8px;
}

.left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.left img {
  width: 80%;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

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

.right {
  width: 50%;
  padding-left: 30px;
}

.right h2 {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #00224d;
}

.required {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 0;
  border: 1px solid #ccc;
  background: #f8f9fa;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #00224d;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(0, 34, 77, 0.1);
}

form textarea {
  height: 120px;
  resize: vertical;
  min-height: 100px;
}

.btn {
  width: 100%;
  padding: 14px;
  background: #0a2345;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: #081a33;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10, 35, 69, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes accordionSlideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.slide-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-animation.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE MENU STYLES ===== */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .banner-left h1 {
    font-size: 2.5rem;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
}

@media (max-width: 1024px) {
  .southeast-content {
    width: 60%;
  }

  .southeast-text h2 {
    font-size: 2rem;
  }

  .about-container {
    top: -200px;
  }
  
  .stat-item {
    padding: 35px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-item h3 {
    font-size: 1.1rem;
  }
  
  .stat-item p {
    font-size: 0.95rem;
  }

  .service-right {
    min-height: 400px;
  }

  .hero-container {
    align-items: center;
  }
  
  .hero-text {
    padding-bottom: 60px;
  }

  /* Accordion Responsive */
  .accordion-header {
    font-size: 1.1rem;
    padding: 18px 45px 18px 0;
    min-height: 65px;
  }
  
  .accordion-header::before {
    right: 18px;
  }
  
  .accordion-header::after {
    right: 26px;
  }
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    top: -180px;
  }

  .about-box {
    width: 90%;
    text-align: center;
  }
  
  .stats-fullwidth {
    flex-direction: column;
    margin-top: 50px;
  }
  
  .stat-item {
    padding: 40px 25px;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .stat-number {
    font-size: 2.3rem;
  }
  
  .hamburger-menu {
    display: flex;
  }
}

/* ===== MOBILE OPTIMIZATION (768px and below) ===== */
@media (max-width: 768px) {
  .banner {
    height: 70vh;
    min-height: 500px;
  }
  
  .banner-left h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .banner-left p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
  }
  
  .about {
    padding: 100px 0 30px;
  }
  
  .about-container {
    top: -120px;
    width: 95%;
  }
  
  .about-box {
    min-width: unset;
    padding: 25px 20px;
    margin-bottom: 20px;
  }
  
  .stats-fullwidth {
    margin-top: 30px;
  }
  
  .stat-item {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
    
 /* ===== About us 2 (768px and below) ===== */
 .banner {
    height: 70vh;
    min-height: 500px;
  }
  
  .banner-left h1 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .banner-left p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .get-started-btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 200px;
  }
    
  .company-overview,
  .beyond-compare-section {
    padding: 70px 0;
  }
  
  .overview-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .overview-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .overview-image {
   border-radius: 8px;
  }
  
 /* Content section mobile */
  .text-content {
    padding: 50px 30px;
  }
  
  .text-content h2 {
    font-size: 1.8rem;
  }
  
  .text-content p {
    font-size: 1rem;
    text-align: center;
  }
  
  .image-content {
    min-height: 40vh;
  }
  
  /* Product grid mobile */
  .product-grid-section,
  .specifications-section {
    padding: 60px 0;
  }
  
  .product-grid-header,
  .specifications-header {
    margin-bottom: 40px;
  }
  
  .product-grid-header h2,
  .specifications-header h2 {
    font-size: 2rem;
  }
  
  .product-grid-header p {
    font-size: 1rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .product-card {
    margin: 0 auto;
    max-width: 400px;
  }
  
  .product-content {
    padding: 25px;
  }
  
  .product-content h3 {
    font-size: 1.3rem;
  }
  
  .specifications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .spec-card {
    padding: 30px 25px;
  }
  
  .spec-card h3 {
    font-size: 1.2rem;
  }
  
  .southeast-banner {
    flex-direction: column;
    padding: 50px 20px;
    text-align: center;
    min-height: auto;
  }
  
  .southeast-content {
    width: 100%;
    padding: 0;
  }
  
  .southeast-text h2 {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.3;
  }
    
  .southeast-image {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 30px;
  }
  
  .service-detail {
    padding: 50px 0;
  }
  
  .service-container {
    padding: 0 15px;
    gap: 30px;
    flex-direction: column;
  }
  
  .service-left h2 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .accordion-header {
    font-size: 1rem;
    padding: 16px 40px 16px 0;
    min-height: 60px;
  }
  
  .accordion-header::before {
    width: 16px;
    right: 15px;
  }
  
  .accordion-header::after {
    height: 16px;
    right: 22px;
  }
  
  .accordion-content {
    font-size: 0.95rem;
    padding: 0 0 20px 0;
  }
  
  .service-right {
    min-height: 300px;
    order: -1;
  }
  
  .hero-section {
    padding: 60px 15px 0;
  }
  
  .hero-container {
    min-height: auto;
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero-text {
    padding-bottom: 40px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  
  .hero-text p {
    font-size: 0.95rem;
    margin: 0 auto 25px;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .btn-primary, 
  .btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 14px 20px;
  }
  
  .hero-image {
    min-height: 250px;
    margin-bottom: 30px;
    align-items: center;
  }
  
  .hero-image img {
    max-width: 300px;
  }
  
  .container {
    width: 95%;
    padding: 20px 15px;
    margin: 20px auto;
    flex-direction: column;
  }
  
  .left,
  .right {
    width: 100%;
    padding: 0;
  }
  
  .left {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 60vh;
    min-height: 400px;
  }
  
  .banner-left h1 {
    font-size: 1.5rem;
  }
  
  .banner-left p {
    font-size: 0.9rem;
  }
  
  .about-container {
    top: -80px;
  }
  
  .about-box {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  /* ===== About us 2 (max 480px) ===== */
  .banner {
    height: 60vh;
    min-height: 400px;
  }
  
  .banner-left h1 {
    font-size: 1.6rem;
  }
  
  .banner-left p {
    font-size: 0.9rem;
  }
  
  .get-started-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    justify-content: center;
    max-width: 180px;
  }
  
  .company-overview,
  .beyond-compare-section {
    padding: 50px 0;
  }
  
  .container {
    width: 95%;
  }
  
  .overview-text h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .overview-text p {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .beyond-compare-header h2 {
    font-size: 1.6rem;
  }
  
  .beyond-compare-header .subtitle {
    font-size: 1rem;
  }
  
  .cards-container {
    gap: 15px;
  }
  
  .card {
    padding: 25px 20px;
    border-radius: 8px;
  }
  
  .card h3 {
    font-size: 1.2rem;
  }
  
  .card p {
    font-size: 0.95rem;
  }
  
  .card-icon {
    font-size: 2rem;
  }
  
  .southeast-text h2 {
    font-size: 1.4rem;
  }
  
  .service-left h2 {
    font-size: 1.3rem;
  }
  
  .hero-text h1 {
    font-size: 1.5rem;
  }
  
  .hero-text p {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    gap: 8px;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 16px;
    font-size: 0.9rem;
    max-width: 220px;
    text-align: center;
  }
  
  .hero-image img {
    max-width: 250px;
  }
}

  .accordion-header {
    font-size: 0.95rem;
    padding: 14px 35px 14px 0;
    min-height: 55px;
  }
  
  .accordion-header::before {
    width: 14px;
    right: 12px;
  }
  
  .accordion-header::after {
    height: 14px;
    right: 18px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .slide-animation {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .slide-left,
  .slide-right,
  .slide-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .content-section .text-content,
  .content-section .image-content {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .product-card,
  .spec-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ========================================== */
/* ===== MONITOR 24 INCI OPTIMIZATIONS ===== */
/* ========================================== */

/* ===== ALTERNATIVE: JUDUL MEMANJANG PENUH TANPA PADDING ===== */
@media (min-width: 1400px) {
  /* ===== BANNER SECTION - JUDUL RATA KIRI MEMANJANG PENUH ===== */
  .banner-content {
    max-width: 1600px;
    text-align: left;
    width: 100%;
    padding: 0 5%;
  }
  
  .banner-left {
    width: 100%;
  }
  
  .banner-left h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: left;
    max-width: 100%;
    width: 100%;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    font-weight: 800;
    padding-right: 0;
  }
  
  .banner-left p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }
  
  .banner-left em {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  /* ===== ABOUT SECTION ===== */
  .about-container {
    max-width: 1600px;
    top: -120px;
  }
  
  .about-box {
    padding: 50px 40px;
    min-width: 350px;
  }
  
  .about-box h2 {
    font-size: 1.8rem;
  }
  
  .about-box p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  /* ===== STATS SECTION ===== */
  .stats-fullwidth {
    max-width: 1600px;
    margin: 60px auto 0;
  }
  
  .stat-item {
    padding: 60px 30px;
  }
  
  .stat-number {
    font-size: 4rem;
  }
  
  .stat-item h3 {
    font-size: 1.4rem;
  }
  
  .stat-item p {
    font-size: 1.1rem;
    max-width: 320px;
    line-height: 1.7;
  }
  
  /* ===== SOUTHEAST BANNER ===== */
  .southeast-banner {
    min-height: 80vh;
  }
  
  .southeast-content {
    padding-left: 10%;
  }
  
  .southeast-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
  
  .southeast-text p {
    font-size: 1.2rem;
    max-width: 650px;
    line-height: 1.8;
  }
  
  /* ===== SERVICE SECTION ===== */
  .service-detail {
    padding: 120px 0;
  }
  
  .service-container {
    max-width: 1600px;
    gap: 70px;
  }
  
  .service-left h2 {
    font-size: 2.2rem;
  }
  
  .accordion-header {
    font-size: 1.4rem;
    padding: 25px 60px 25px 0;
    min-height: 80px;
  }
  
  .accordion-header::before {
    width: 20px;
    height: 3px;
    right: 25px;
  }
  
  .accordion-header::after {
    width: 3px;
    height: 20px;
    right: 33px;
  }
  
  .accordion-content {
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 0 0 30px 0;
  }
  
  .service-footer {
    font-size: 1.1rem;
    padding: 30px;
    margin-top: 40px;
  }
  
  .service-right {
    min-height: 550px;
  }
  
  /* ===== HERO SECTION ===== */
  .hero-container {
    max-width: 1600px;
    gap: 60px;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    max-width: 650px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .hero-image img {
    max-width: 600px;
  }
  
  /* ===== CONTACT SECTION ===== */
  .container {
    max-width: 1600px;
    padding: 50px;
    margin: 50px auto;
  }
  
  .right h2 {
    font-size: 1.6rem;
  }
  
  form input,
  form textarea {
    padding: 16px;
    font-size: 1rem;
  }
  
  .btn {
    padding: 18px;
    font-size: 1.1rem;
  }
}

/* ===== EXTRA LARGE MONITORS ===== */
@media (min-width: 1800px) {
  .banner-left h1 {
    font-size: 5rem;
  }
  
  .banner-left p {
    font-size: 1.5rem;
  }
  
  .about-box {
    padding: 60px 50px;
  }
  
  .stat-number {
    font-size: 4.5rem;
  }
  
  .southeast-text h2 {
    font-size: 3.2rem;
  }
}

/* ... (rest of the mobile responsive styles remain exactly the same) ... */

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .get-started-btn,
  .btn-primary, 
  .btn-secondary,
  .product-cta {
    min-height: 44px; /* Minimum touch target size */
  }
  
  /* Remove hover effects on touch devices */
  .product-card:hover {
    transform: none;
  }
  
  .spec-card:hover {
    transform: none;
    border-color: transparent;
  }
  
  .get-started-btn:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .product-cta:hover {
    transform: none;
  }
}

/* Prevent horizontal scroll and improve performance */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Improve scrolling performance on mobile */
* {
  -webkit-overflow-scrolling: touch;
}

/* Optimize images for mobile */
img {
  max-width: 100%;
  height: auto;
}

/* Loading state for images */
img[data-src] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.loaded {
  opacity: 1;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .slide-animation {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .slide-left,
  .slide-right,
  .slide-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .content-section .text-content,
  .content-section .image-content {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .product-card,
  .spec-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}