@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,400&display=swap');

:root {
  --primary-green: #10b981;
  --dark-green: #064e3b;
  --deep-forest: #022c22;
  --light-sage: #f0fdf4;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* NAVBAR STYLE */
.navbar {
  width: 100%;
  background: transparent;     /* Hilangkan warna background putih/blur */
  backdrop-filter: none;       /* Matikan efek blur agar langit bersih */
  position: absolute;          /* Membuat navbar melayang di atas background hero */
  top: 0;
  left: 0;
  z-index: 2000;
  border-bottom: none;         /* Hapus garis bawah agar tidak memotong pemandangan */
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  color: #2c2421;              /* Warna cokelat gelap estetik sesuai tema */
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #2c2421;              /* Menyamakan warna teks menu */
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-menu li a:hover {
  color: var(--primary-green);
}

.nav-btn-login {
  text-decoration: none;
  padding: 10px 28px;
  background: var(--deep-forest);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.nav-btn-login:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* SECTION 1: HERO (Berdasarkan Atmosfer Premium image_69edc3.png) */
.hero-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  
  /* --- KONFIGURASI BACKGROUND IMAGE --- */
  background-image: url('background3.jpeg'); /* Pastikan file ini berupa gambar pemandangan gunung/langit senja yang luas */
  background-size: cover;
  background-position: center bottom;  /* Diposisikan di bawah agar transisi ke bottom bar cokelat lebih mulus */
  background-repeat: no-repeat;
  
  padding-top: 120px;                  /* Ditambah paddingnya agar konten teks tidak menabrak navbar absolute */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left-content {
  flex: 1.2;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark-green);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.05;
  color: #1e1b18;
  margin-bottom: 30px;
}

.hero-title span {
  font-size: 24px;
  vertical-align: super;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-left: 5px;
}

.hero-description {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 16px 40px;
  background: #27211d;
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.hero-pill-btn:hover {
  background: var(--dark-green);
  transform: scale(1.03);
}

/* Sisi Kanan: Tumpukan Kartu Melayang Terbuka */
.hero-right-display {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.floating-card-main {
  background: white;
  border-radius: 24px;
  padding: 35px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
  position: relative;
}

.card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  padding: 6px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

.tag-dark {
  padding: 6px 14px;
  background: #27211d;
  color: white;
  border-radius: 20px;
  font-size: 12px;
}

.floating-card-main h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.floating-card-main p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 25px;
}

.main-display-placeholder {
  width: 100%;
  height: 250px;
  background: var(--light-sage);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.overlay-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
}

.overlay-dots span {
  width: 8px;
  height: 8px;
  background: var(--dark-green);
  border-radius: 50%;
}

.roomtour-badge {
  position: absolute;
  top: 100px;
  right: -40px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 25px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.play-btn {
  width: 36px;
  height: 36px;
  background: #b29476;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.roomtour-text span {
  display: block;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
}

.roomtour-text small {
  color: var(--text-muted);
  font-size: 10px;
}

/* Hero Bottom Bar */
.hero-bottom-bar {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: #a38a73; /* Warna bumi pendukung gambar 1 */
  border-top-left-radius: 32px;
}

.bottom-box-left {
  background: #b89f88;
  padding: 40px;
  border-top-left-radius: 32px;
  color: white;
}

.bottom-box-left h4 { font-size: 20px; margin-bottom: 8px; }
.bottom-box-left p { opacity: 0.8; font-size: 14px; }

.bottom-box-right {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  gap: 30px;
}

.metrics-segment { display: flex; align-items: center; gap: 15px; }
.avatar-circle { width: 40px; height: 40px; background: rgba(255,255,255,0.3); border-radius: 50%; border: 2px solid white; display: inline-block; }
.avatar-circle:last-child { margin-left: -20px; }
.metrics-text h2 { font-size: 32px; line-height: 1; }
.metrics-text p { font-size: 12px; opacity: 0.8; }

.cta-segment h3 { font-size: 22px; max-width: 400px; font-weight: 500; margin-bottom: 10px; }
.underline-link { color: white; font-size: 12px; font-weight: 700; text-decoration: underline; }

/* UTILITY TITLES UNTUK BODY */
.section-label {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 38px;
  color: var(--deep-forest);
  font-weight: 700;
  margin-bottom: 20px;
}

/* SECTION 2: PROCESS */
.process-section {
  width: 100%; /* Membuat background melebar full se-layar */
  padding: 100px 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url('background4.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Wrapper agar teks & konten tetap rapi di tengah (1300px) */
.process-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.process-steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.step-card {
  background: rgba(240, 253, 244, 0.45); /* Sage transparan */
  backdrop-filter: blur(10px); /* Efek blur kaca */
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6); /* Border putih tipis agar estetik */
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-5px);
  background: rgba(240, 253, 244, 0.7);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--deep-forest);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 700;
}

.step-card h3 { margin-bottom: 12px; font-size: 20px; }
.step-card p { color: var(--text-dark); font-size: 14px; line-height: 1.6; }

/* SECTION 3: BENEFITS */
.benefits-section {
  width: 100%;
  padding: 100px 0;
  /* Diganti dengan background image sendiri */
  background-image: linear-gradient(rgba(248, 250, 252, 0.8), rgba(248, 250, 252, 0.8)), url('background5.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.benefits-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefits-image{
    width: 60%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.benefits-visual-side{
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-text-side { flex: 1; }
.benefit-list { list-style: none; margin: 30px 0; }
.benefit-list li { display: flex; align-items: flex-start; gap: 15px; font-size: 16px; margin-bottom: 20px; color: #1e293b; }
.benefit-list li i { color: var(--primary-green); font-size: 20px; margin-top: 2px; }

.dark-pill-btn {
  padding: 14px 35px;
  background: var(--deep-forest);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.dark-pill-btn:hover { background: var(--primary-green); }

.benefits-visual-side { flex: 1; display: flex; justify-content: center; }
/* Frame mockup dibuat semi transparan melayang */
.mockup-frame { 
  width: 300px; 
  height: 500px; 
  background: rgba(255, 255, 255, 0.4); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 12px solid var(--deep-forest); 
  border-radius: 40px; 
  position: relative; 
  box-shadow: 0 25px 50px rgba(0,0,0,0.1); 
}
.mockup-header-bar { width: 100%; height: 30px; display: flex; justify-content: center; align-items: center; }
.mockup-header-bar span { width: 60px; height: 4px; background: #cbd5e1; border-radius: 10px; }
.mockup-content-box { padding: 20px; width: 100%; height: calc(100% - 30px); background: linear-gradient(135deg, rgba(236, 253, 245, 0.5) 0%, rgba(209, 250, 229, 0.5) 100%); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; }

/* SECTION 4: FEATURES GRID */
.features-section { 
  width: 100%; /* Full-width */
  padding: 100px 0; 
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('background6.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Wrapper konten agar tetap di tengah */
.features-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}
.features-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.features-counters { display: flex; gap: 50px; }
.counter-box h2 { font-size: 42px; color: var(--deep-forest); }
.counter-box p { color: var(--text-dark); font-weight: 500; font-size: 13px; }

/* Grid item otomatis transparan mengikuti background section */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-item { padding-left: 20px; position: relative; }
.line-marker { position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: var(--primary-green); opacity: 0.3; transition: var(--transition-smooth); }
.grid-item:hover .line-marker { opacity: 1; height: 80%; background: var(--deep-forest); }
.grid-item h4 { font-size: 18px; margin-bottom: 10px; color: var(--deep-forest); }
.grid-item p { color: var(--text-dark); opacity: 0.8; font-size: 14px; line-height: 1.6; }

/* SECTION 5: PRICING */
.pricing-section { 
  width: 100%; /* Full-width */
  padding: 100px 0; 
  background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url('background7.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Wrapper pricing agar rapi di tengah */
.pricing-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.pricing-subtext { color: var(--text-dark); opacity: 0.8; margin-bottom: 50px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Card pricing reguler dibuat transparan */
.pricing-card { 
  background: rgba(255, 255, 255, 0.45); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6); 
  border-radius: 20px; 
  padding: 40px 30px; 
  text-align: left; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
  transition: var(--transition-smooth); 
}

.plan-name { font-size: 16px; font-weight: 600; color: var(--text-dark); opacity: 0.7; display: block; margin-bottom: 15px; }
.price-amount { font-size: 38px; font-weight: 700; color: var(--deep-forest); margin-bottom: 8px; }
.price-amount sub { font-size: 14px; color: var(--text-dark); opacity: 0.6; font-weight: 400; }
.plan-desc { font-size: 13px; color: var(--dark-green); font-weight: 600; margin-bottom: 30px; }
.plan-features { list-style: none; margin-bottom: 40px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-dark); margin-bottom: 15px; }
.plan-features li i { color: var(--primary-green); }

.plan-btn { width: 100%; padding: 12px; background: rgba(255, 255, 255, 0.7); border: 1px solid #cbd5e1; border-radius: 10px; font-weight: 600; cursor: pointer; transition: var(--transition-smooth); }
.plan-btn:hover { background: var(--deep-forest); color: white; }

/* Highlight Card dibuat gelap transparan premium */
.highlighted-card { 
  background: rgba(2, 44, 34, 0.75); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white; 
  border: 1px solid rgba(16, 185, 129, 0.4); 
  transform: scale(1.03); 
  box-shadow: 0 20px 40px rgba(2, 44, 34, 0.2); 
}
.highlighted-card .price-amount, .highlighted-card .plan-features li { color: white; }
.highlighted-card .plan-btn-light { width: 100%; padding: 12px; background: white; border: none; border-radius: 10px; font-weight: 600; color: var(--deep-forest); cursor: pointer; transition: var(--transition-smooth); }
.highlighted-card .plan-btn-light:hover { background: var(--primary-green); color: white; }

/* SECTION 6: TESTIMONIALS */
.testimonials-section { 
  width: 100%; 
  padding: 100px 0; 
  background-image: linear-gradient(rgba(241, 245, 249, 0.8), rgba(241, 245, 249, 0.8)), url('background1.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.testimonial-container { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 60px; }
.testimonial-left-image { flex: 1; display: flex; justify-content: center; }
/* --- STYLING FOTO USTADZ BULAT --- */
.client-photo-wrapper {
  width: 260px;          /* Menyesuaikan ukuran lingkaran di gambar */
  height: 260px;
  border-radius: 50%;    /* Membuat pembungkus menjadi bulat sempurna */
  overflow: hidden;      /* Memotong bagian foto yang keluar dari lingkaran */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff; /* Warna hijau gelap dasar dari image_6668f1.png */
}

.ustadz-img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* Kunci utama agar foto tidak lonjong atau gepeng */
  object-position: center top; /* Fokus ke area wajah/atas foto */
  border-radius: 50%;
}

.testimonial-right-content { flex: 1.5; position: relative; }
.quote-icon { font-size: 90px; font-family: serif; color: var(--primary-green); opacity: 0.2; position: absolute; top: -40px; left: -20px; line-height: 1; }
.quote-text { font-size: 28px; margin-bottom: 15px; font-weight: 700; color: var(--deep-forest); }
.testimonial-body { font-size: 18px; line-height: 1.6; color: #1e293b; font-style: italic; margin-bottom: 25px; }
.stars-row { display: flex; align-items: center; gap: 5px; margin-top: 10px; color: #fbbf24; font-size: 14px; }
.stars-row span { color: var(--text-dark); font-weight: 700; margin-left: 5px; }

/* FOOTER STYLING */
.main-footer { background: #fafafa; border-top: 1px solid #e2e8f0; padding: 80px 40px 30px; }
.footer-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 2fr; gap: 50px; margin-bottom: 60px; }
.footer-brand-col h3 { font-size: 24px; color: var(--deep-forest); margin-bottom: 15px; }
.footer-brand-col p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 25px; }
.store-badges { display: flex; gap: 10px; }
.badge-app { padding: 10px 15px; background: #1e293b; color: white; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; }

.footer-links-col h4 { font-size: 16px; margin-bottom: 20px; color: var(--deep-forest); }
.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 12px; }
.footer-links-col ul li a { text-decoration: none; color: var(--text-muted); font-size: 14px; transition: var(--transition-smooth); }
.footer-links-col ul li a:hover { color: var(--primary-green); }

.footer-input-col h4 { font-size: 16px; margin-bottom: 20px; color: var(--deep-forest); }
.footer-subscribe-box { display: flex; gap: 10px; margin-bottom: 25px; }
.footer-subscribe-box input { flex: 1; padding: 14px 20px; border: 1px solid #cbd5e1; border-radius: 30px; outline: none; font-size: 14px; }
.footer-subscribe-box button { padding: 14px 28px; background: #1e293b; color: white; border: none; border-radius: 30px; font-weight: 600; cursor: pointer; transition: var(--transition-smooth); }
.footer-subscribe-box button:hover { background: var(--primary-green); }

.social-medias { display: flex; gap: 15px; }
.social-medias a { width: 36px; height: 36px; background: #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--deep-forest); text-decoration: none; transition: var(--transition-smooth); }
.social-medias a:hover { background: var(--primary-green); color: white; }

.footer-copyright { text-align: center; padding-top: 30px; border-top: 1px solid #e2e8f0; color: var(--text-muted); font-size: 13px; text-transform: capitalize; }

/* ANIMATIONS KEYFRAMES */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatDelayed {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(8px) translateX(-4px); }
}

.animate-fade-in { animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.animate-float { animation: float 5s ease-in-out infinite; }
.animate-float-delayed { animation: floatDelayed 4.5s ease-in-out infinite; }

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-wrapper, .benefits-wrapper, .testimonial-container { flex-direction: column; text-align: center; }
  .features-header-row { flex-direction: column; align-items: center; gap: 30px; }
  .footer-grid, .pricing-grid, .features-grid, .process-steps-container { grid-template-columns: 1fr; }
  .hero-right-display { justify-content: center; width: 100%; }
  .roomtour-badge { right: 20px; }
  .hero-bottom-bar { grid-template-columns: 1fr; }
}