/* ===== 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);
}

.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) ===== */
.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 DIBUAT LEBIH RINGAN AGAR TEKS TERBACA */
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 50, 0.4);
  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;
}

.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;
}

/* ===== 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 - SAMA SEPERTI HOME.CSS ===== */
.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 - SAMA DENGAN HOME.CSS */
.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;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

/* ===== 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 FORM SECTION (DARI CONTACT.CSS) ===== */
.contact-form-section {
  padding: 80px 0;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  display: flex;
  padding: 50px;
  box-shadow: 0px 5px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
}

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

.left img {
  width: 80%;
  opacity: 0.8;
  border-radius: 8px;
}

.right {
  width: 50%;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

/* ===== FORM STYLES ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

form label {
  font-weight: 600;
  color: #00224d;
  font-size: 0.95rem;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

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

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

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

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

.btn:active {
  transform: translateY(0);
}

/* ===== ALERTS ===== */
.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-weight: 500;
  text-align: center;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== 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);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-animation.animate .slide-left,
.slide-left.animate {
  opacity: 1;
  transform: translateX(0);
}

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

.slide-animation.animate .slide-right,
.slide-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Animation delays */
.slide-animation.animate .slide-left:nth-child(1) { transition-delay: 0.1s; }
.slide-animation.animate .slide-left:nth-child(2) { transition-delay: 0.2s; }
.slide-animation.animate .slide-left:nth-child(3) { transition-delay: 0.3s; }

.slide-animation.animate .slide-right:nth-child(1) { transition-delay: 0.1s; }
.slide-animation.animate .slide-right:nth-child(2) { transition-delay: 0.2s; }
.slide-animation.animate .slide-right:nth-child(3) { transition-delay: 0.3s; }

.slide-animation.animate .slide-up:nth-child(1) { transition-delay: 0.1s; }
.slide-animation.animate .slide-up:nth-child(2) { transition-delay: 0.2s; }
.slide-animation.animate .slide-up:nth-child(3) { transition-delay: 0.3s; }
.slide-animation.animate .slide-up:nth-child(4) { transition-delay: 0.4s; }

.content-section.animate .text-content { transition-delay: 0.2s; }
.content-section.animate .image-content { transition-delay: 0.4s; }
.content-section.animate .text-content-right { transition-delay: 0.4s; }
.content-section-reverse.animate .image-content { transition-delay: 0.2s; }
.content-section-reverse.animate .text-content-right { transition-delay: 0.4s; }

/* ===== LOADING ANIMATION ===== */
.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #03224c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 5;
}

.media-container.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #03224c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 5;
}

/* ========================================== */
/* ===== MONITOR 24 INCI OPTIMIZATIONS ===== */
/* ========================================== */

@media (min-width: 1400px) {
  /* ===== GLOBAL IMPROVEMENTS ===== */
  body {
    font-size: 18px;
    line-height: 1.7;
  }
  
  /* ===== 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;
  }
  
  .get-started-btn {
    padding: 16px 35px;
    font-size: 1.2rem;
    min-height: 55px;
  }
  
  /* ===== CONTENT SECTION ===== */
  .content-container {
    max-width: 1600px;
  }
  
  .text-content {
    padding: 100px 80px;
  }
  
  .text-content h2 {
    font-size: 3rem;
    margin-bottom: 35px;
  }
  
  .text-content p {
    font-size: 1.3rem;
    line-height: 1.9;
  }
  
  /* ===== SERVICE DETAIL SECTION ===== */
  .service-detail {
    padding: 140px 0;
  }
  
  .service-container {
    max-width: 1600px;
    gap: 80px;
  }
  
  .service-left h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  /* Accordion improvements untuk large screen */
  .accordion-header {
    font-size: 1.5rem;
    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.2rem;
    line-height: 1.7;
    padding: 0 0 30px 0;
  }
  
  .service-footer {
    font-size: 1.2rem;
    padding: 35px;
    margin-top: 40px;
    line-height: 1.7;
  }
  
  .service-right {
    min-height: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }
  
  .media-container {
    border-radius: 12px;
  }
  
  /* ===== 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 FORM SECTION ===== */
  .contact-form-section {
    padding: 120px 0;
  }
  
  .container {
    max-width: 1600px;
    padding: 70px;
    border-radius: 16px;
  }
  
  .right h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .required {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }
  
  form {
    gap: 25px;
  }
  
  form label {
    font-size: 1.1rem;
  }
  
  form input,
  form textarea,
  form select {
    padding: 18px;
    font-size: 1.1rem;
    border-radius: 8px;
  }
  
  form textarea {
    height: 150px;
    min-height: 120px;
  }
  
  .btn {
    padding: 20px;
    font-size: 1.2rem;
    border-radius: 8px;
    margin-top: 15px;
  }
}

/* ===== EXTRA LARGE MONITORS ===== */
@media (min-width: 1800px) {
  .banner-left h1 {
    font-size: 5rem;
  }
  
  .banner-left p {
    font-size: 1.5rem;
  }
  
  .get-started-btn {
    padding: 18px 40px;
    font-size: 1.3rem;
  }
  
  .content-container {
    max-width: 1800px;
  }
  
  .text-content h2 {
    font-size: 3.2rem;
  }
  
  .text-content p {
    font-size: 1.4rem;
  }
  
  .service-container {
    max-width: 1800px;
  }
  
  .service-left h2 {
    font-size: 2.8rem;
  }
  
  .accordion-header {
    font-size: 1.6rem;
    padding: 30px 70px 30px 0;
  }
  
  .accordion-content {
    font-size: 1.3rem;
  }
  
  .hero-container {
    max-width: 1800px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .container {
    max-width: 1800px;
  }
  
  .right h2 {
    font-size: 2.8rem;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .banner-left h1 {
    font-size: 2.5rem;
  }
  
  .service-container {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .banner-left h1 {
    font-size: 2.3rem;
  }
  
  .container {
    padding: 40px;
  }
  
  .right h2 {
    font-size: 1.8rem;
  }
  
  /* 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;
  }
  
  /* Hero section adjustments */
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
  }

  .hero-image {
    margin-bottom: 0;
    min-height: 300px;
    width: 100%;
  }

  .hero-image img {
    max-width: 400px;
    width: 100%;
  }

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

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 0.95rem;
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ===== MOBILE OPTIMIZATION (768px and below) ===== */
@media (max-width: 768px) {
  /* Banner improvements */
  .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;
  }
  
  .banner-buttons {
    justify-content: center;
    gap: 15px;
  }
  
  /* Content section mobile */
  .content-container {
    flex-direction: column;
  }
  
  .text-content,
  .image-content {
    flex: 0 0 100%;
    padding: 40px 20px;
  }
  
  .text-content h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .text-content p {
    font-size: 1rem;
    text-align: center;
  }
  
  /* Service detail mobile */
  .service-detail {
    padding: 60px 0;
  }
  
  .service-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
  
  .service-left h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  /* Accordion mobile */
  .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-footer {
    font-size: 0.9rem;
    padding: 15px;
  }
  
  .service-right {
    min-height: 300px;
    order: -1;
  }
  
  /* Contact form mobile */
  .contact-form-section {
    padding: 60px 0;
  }
  
  .container {
    flex-direction: column;
    padding: 30px 20px;
    width: 95%;
  }
  
  .left, .right {
    width: 100%;
    padding: 0;
  }
  
  .left {
    margin-bottom: 30px;
    order: 2;
  }
  
  .right {
    order: 1;
    padding-left: 0;
  }
  
  .right h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .required {
    text-align: center;
  }
  
  form {
    gap: 15px;
  }
  
  form input,
  form textarea,
  form select {
    padding: 12px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  /* Hero section mobile */
  .hero-section {
    padding: 60px 15px 0;
  }
  
  .hero-container {
    min-height: auto;
  }
  
  .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;
  }
  
  .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;
  }
  
  .hero-image img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .banner-left h1 {
    font-size: 1.6rem;
  }
  
  .service-left h2 {
    font-size: 1.3rem;
  }
  
  .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;
  }
    
  .hero-text h1 {
    font-size: 1.5rem;
  }
  
  .hero-text p {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    gap: 8px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 16px;
    font-size: 0.9rem;
    max-width: 220px;
  }
  
  .hero-image img {
    max-width: 250px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .get-started-btn,
  .btn-primary, 
  .btn-secondary,
  .accordion-header,
  .btn {
    min-height: 44px; /* Minimum touch target size */
  }
  
  /* Increase tap target size untuk accordion di mobile */
  .accordion-header {
    padding: 22px 50px 22px 0;
  }
  
  /* Remove hover effects on touch devices */
  .accordion-header:hover {
    color: inherit;
    background: inherit;
  }
  
  .get-started-btn:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn: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;
  }
  
  .accordion-header::after {
    transition: none;
  }
}