/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background:  #e2e8f0; ;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.keunggulan-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  width: 100%;
  background-color: #fff;
  padding: 4rem 1.5rem;
}

.keunggulan-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* === HEADER UTAMA === */
header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 3rem;
  height: 70px;
   position: relative;
}

/* === LOGO === */
.logo-image {
  height: 50px;
  width: auto;
  display: block;
}

/* === NAVIGASI === */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  gap: 2rem;
  margin-left: auto !important;
  margin-right: 2rem !important;
}

.nav-links a {
  color: #08c5da;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #059bb4;
}

/* === TOMBOL CTA (Mulai Sekarang) === */
.cta-button {
  background: rgb(252, 0, 0);
  color: #ffffff !important;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap; 
}

.cta-button:hover {
  background: #e31c3a;
  transform: translateY(-2px);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* === MENU ICON (HAMBURGER UNTUK HP) === */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #000000;
}

/* === RESPONSIVE UNTUK HP / TABLET === */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 2px;
    position: relative;
  }
  .navbar-menu {
    display: none;
  }

  /* Tampilkan icon ☰ */
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
    color: #000;
    z-index: 10002;
    margin-left: auto;
    margin-right: 30px; 
  }

  /* Sembunyikan nav */
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 70px;
    left: 0;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10000;
  }

  /* Saat toggle aktif */
  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #f2f2f2;
    color: #08c5da;
    text-decoration: none;
    font-weight: 500;
  }

  
 .cta-button {
    display: block;
    position: absolute;
    top: 18px;      
    right: 70px;    
    z-index: 2000;  
  }

}


/* === HERO SECTION === */
.hero {
  background: #ffffff; 
  color: #000;
  display: flex;
  align-items: center;
  padding: 6rem 2rem; 

}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
 
}

/* Bagian teks */
.hero-text {
  flex: 1;
  max-width: 50%;
  margin-left: 50px;
  margin-top: 30px;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1.2rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

/* Tombol */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  border-radius: 8px;
}

/* Bagian gambar */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
   align-items: flex-end;
  padding-right: 10px;
}

.hero-image img {
  width: 100%;         
  max-width: none;   
 height: auto;
  transform: scale(1.2); 
  margin-right: -60px;
  margin-bottom: -227px;
}


.primary-btn {
  background: rgb(252, 0, 0);
  border: 2px solid rgb(252, 0, 0);
  color: rgb(255, 255, 255);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  font-size: 0.9rem;
  box-shadow: 0 4px 6px #d6d6d6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center; 
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid rgb(252, 0, 0);
  color: rgb(0, 0, 0);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s;
  box-shadow: 0 4px 6px #d6d6d6;
  display: inline-flex;
}

.secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 70%;
  height: auto;
  display: block;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse; 
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image img {
    max-width: 100%; 
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Features Section */
.features {
  padding: 5rem 1rem;
  background: #e2e8f0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: -3rem;
}

.section-header h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: -15px;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Gradient warna tiap card */
.feature-card.jual {
  background: linear-gradient(to bottom, #fd2743, #ffffff);
  border-bottom: 6px solid #fd2743;
}

.feature-card.beli {
  background: linear-gradient(to bottom, #ff9705, #ffffff);
  border-bottom: 6px solid #ff9705;
}

.feature-card.sewa {
  background: linear-gradient(to bottom, #17e25b, #ffffff);
  border-bottom: 6px solid #17e25b;
}

.feature-card.jasa {
  background: linear-gradient(to bottom, #08c5da, #ffffff);
  border-bottom: 6px solid #08c5da;
}

/* Icon styling */
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-icon i {
  color: white;
  font-size: 40px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.feature-card h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #64748b;
}

.feature-card.active p {
  color: rgba(255, 255, 255, 0.9);
}


.tutorial-section {
  background: #e2e8f0;      
  padding: 3rem 1rem 4rem;   
}

.tutorial-box {
   background: linear-gradient(to bottom, #08c5da, #1e5bd8); 
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;         
}

.tutorial-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.tutorial-box p {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* Kotak video placeholder */
.tutorial-video {
  width: 100%;
  height: 300px;
  background: #f1f5f9;
  border-radius: 0.75rem;
  border: 2px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1rem;
}

.tutorial-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.75rem;
}

/* ==== Bagian Tentang ==== */
/* Judul di dalam frame putih dan di tengah */
.tentang-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 10px;
  color: #222;
}
.tentang-section {
  background: #e2e8f0;  
  margin-bottom: 4rem; 
}
/* Tata letak teks dan gambar sejajar */
.tentang-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* Teks di kiri */
.tentang-text {
  flex: 1;
}

.tentang-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  text-align: center;
  margin-bottom: 20px;

}

/* ==== KEUNGGULAN SECTION ==== */

/* bikin background putih full lebar */
.keunggulan-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background-color: #fff;
  padding: 2rem 2rem;
  box-sizing: border-box;
}

/* batasi isi biar tetap rapi di tengah */
.keunggulan-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

/* judul dan teks */
.keunggulan-inner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.keunggulan-inner p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

/* grid isi keunggulan */
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* card keunggulan */
.keunggulan-card {
  background: #fff;
  border-radius: 20px;
  padding-top: 80px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  position: relative;
  overflow: visible;
}

.keunggulan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* icon */
.keunggulan-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}

.keunggulan-icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}


/* download */
.download-section {
  display: flex;
  align-items: center;             
  justify-content: space-between; 
  background: linear-gradient(to right, #08c5da, #1e5bd8);     
  color: white;
  padding: 100px 50px;             
  flex-wrap: wrap;                 
  gap: 40px;                       
  margin-top: 50px;
  border-radius: 20px;
   margin-top: 80px;
   max-width: 1100px;               
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}

/* Bagian teks */
.download-content {
  flex: 1;                        
  max-width: 80%;                 
  padding-left: 10px;
}

.download-content h2 {
  font-size: 2rem;              
  font-weight: 750;
  line-height: 1.2;
  margin-bottom: 20px;
}

.download-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.download-btn .download-icon {
  width: 28px;   /* ukuran icon */
  height: 28px;
  object-fit: contain;
}

/* Tombol download */
.download-btn {
  background: white;
  color: #2563EB;
  padding: 1rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-top: 1rem;
}

/* Bagian gambar */
.screenshots {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(50px); 
  transform: translateY(-30px);
}

.screenshots img {
  position: absolute;
  width: 100px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, z-index 0.3s ease;
}

.screenshots img:nth-child(1) {
  transform: rotate(-15deg) translateX(-180px);
  z-index: 1;
}
.screenshots img:nth-child(2) {
  transform: rotate(-8deg) translateX(-90px);
  z-index: 2;
}
.screenshots img:nth-child(3) {
  transform: rotate(0deg) scale(1.05);
  z-index: 3;
}
.screenshots img:nth-child(4) {
  transform: rotate(8deg) translateX(90px);
  z-index: 2;
}
.screenshots img:nth-child(5) {
  transform: rotate(15deg) translateX(180px);
  z-index: 1;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .download-section {
    flex-direction: column;          
    text-align: center;           
    padding: 40px 20px;           
  }

  .download-content {
    max-width: 100%;         
  }

  .screenshots {
    position: relative;
    transform: none;              
    flex-wrap: wrap;                  
    justify-content: center;
    gap: 10px;                     
    margin-top: 20px;
  }

  .screenshots img {
    position: static;               
    width: 80px;                   
    transform: none;                
  }

  .download-btn {
    justify-content: center;
  }
}


/* ==== KONTAK SECTION ==== */
.contact {  
  background: #ffffff;
  padding: 100px 0;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; 
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  gap: 2rem;
}

.contact-info {
  flex: 1 1 45%;
  background-color: #f9fafb;
  padding: 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-info h2 {
  color: #1f2937;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 0.75rem;
}

.contact-info a {
  color: #ff3b5c;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* MAP AREA */
.contact-map {
  flex: 1 1 50%;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.footer-bottom {
  text-align: center;       
  padding: 20px 0;         
  margin-top: 20px;      
 
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-info, .contact-map {
    flex: 1 1 100%;
  }

  .contact-info {
    text-align: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .feature-content {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .download-btn {
    padding: 1rem 1.5rem;
  }

  .feature-content {
    gap: 2rem;
  }

  .feature-text h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .download-buttons {
    flex-direction: column;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-detail {
    padding: 2rem;
  }
}

