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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
    color: #334155;
    -webkit-font-smoothing: antialiased;
}

.lp {
    width: 100%;
    background: #ffffff;
}

h1, h2, h3, .nav-logo {
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Helper Class */
.text-center { text-align: center !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* FIX iOS UNDERLINE EMAIL & NOMOR HP */
a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

/* ==========================================================================
   NAVIGATION (STICKY / FIXED)
   ========================================================================== */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px); 
    border-bottom: 1px solid #f1f5f9;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px; 
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.nav-logo-img-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* LOGO DIPERBESAR LAGI */
.nav-logo-img {
  height: 120px; /* Ukuran asli naik pesat untuk desktop */
  width: auto;  
  object-fit: contain;
  transition: height 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0d9488;
}

/* ==========================================================================
   HERO SECTION 
   ========================================================================== */
.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 540px;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 160px 40px 80px 40px; /* Jarak padding dikurangi karena top-bar dihapus */
    gap: 40px; 
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tags-group {
    display: flex;
    flex-wrap: wrap; 
    gap: 8px; 
    margin-bottom: 24px;
    justify-content: center; 
}

.ht-badge {
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid #e2e8f0; 
    letter-spacing: 0.5px;
}

.hero-h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-align: center;
}

.hero-h1 span {
    color: #0d9488;
}

.hero-sub {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 36px;
    text-align: justify; 
    max-width: 100%;
}

.hero-wa-seamless {
    display: inline-flex;
    align-items: center;
    align-self: center; 
    gap: 12px;
    background: #0f172a;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.hero-wa-seamless:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.hero-wa-seamless i {
    font-size: 18px;
    color: #2dd4bf;
}

.hero-fast-tag {
    font-size: 14px; 
    color: #475569;  
    font-weight: 500;
    margin-top: 18px; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-fast-tag span {
    color: #0d9488;
    font-weight: 700;
}

/* AREA GAMBAR KANAN */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-img-placeholder {
    width: 100%;
    height: 420px;
    background: #f8fafc;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05);
}

.hero-house-crop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-placeholder:hover .hero-house-crop {
    transform: scale(1.03);
}

.hero-badge-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1);
    border-left: 4px solid #0d9488;
    z-index: 10;
}

.hbc-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}
.hbc-sub {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}

/* ==========================================================================
   COMMON COMPONENTS
   ========================================================================== */
.section-label {
    font-size: 16px; /* Label Tentang Kami dan Kontak Diperbesar Sedikit */
    font-weight: 700;
    color: #0d9488;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

/* Judul Kontak (Hubungi Kami) Dikecilkan Sesuai Request */
.premium-title {
    font-size: 28px !important; 
}

.section-sub {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    max-width: 680px;
    margin-bottom: 52px;
}

/* ==========================================================================
   TENTANG KAMI SECTION
   ========================================================================== */
.about {
    padding: 100px 40px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

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

.about .section-sub {
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.feat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 148, 136, 0.4);
    box-shadow: 0 12px 24px -10px rgba(13, 148, 136, 0.1);
}

.feat-icon {
    font-size: 24px;
    color: #0d9488;
    margin-bottom: 16px;
}

.feat-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.feat-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ==========================================================================
   KONTAK SECTION
   ========================================================================== */
.contact {
    padding: 100px 40px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

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

/* REVISI: Teks Hubungi Kami dibikin jauh lebih kecil agar terlihat elegan & premium */
.premium-title {
    font-size: 24px !important; 
    letter-spacing: 1px;
}

/* REVISI: Grid dibuang karena box sebelah kanan dihapus, jadikan 1 kolom di tengah */
.contact-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px; /* Lebar dibatasi agar rapi di tengah layar */
    margin: 0 auto;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.info-card {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    background: #f8fafc;
    padding: 16px 20px; 
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.info-card-icon {
    width: 44px; 
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
    font-size: 20px;
    border: 1px solid #e2e8f0;
}

.info-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
}

.info-card-value {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-top: 2px;
}

/* ================= BLOK SOSIAL MEDIA TERBARU ================= */
/* ==========================================================================
   REVISI: MENEBALKAN SEMUA TEKS PARAGRAF (SAMA SEPERTI CS-LABEL: 600)
   ========================================================================== */
body, p, .hero-sub, .section-sub, .feat-desc, .cab-desc {
    font-weight: 500 !important;
    
}

/* ==========================================================================
   RESET KONTAK SOSIAL MEDIA (ABSOLUTE CENTER ALIGNMENT)
   ========================================================================== */
.contact-socials {
    display: flex;
    flex-direction: column;
    align-items: center;     /* Kunci 1: Memaksa isi ke tengah horizontal */
    justify-content: center; 
    text-align: center;
    width: 100%;             /* Kunci 2: Wajib 100% agar box tidak menciut ke kiri */
    gap: 16px;
    margin-top: 4px; 
    padding: 24px 20px;
    background: #f8fafc; 
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.cs-label {
    width: 100%;
    text-align: center;
}

.cs-links {
    display: flex;
    align-items: center;
    justify-content: center; 
    width: 100%;
    gap: 20px; /* Jarak antar kotak */
}

/* REVISI: Membuat bingkai kotak rounded (Squircle) transparan */
/* REVISI: Menghilangkan bingkai kotak, membiarkan logo tampil bebas */
.cs-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important; 
    border: none !important; /* Kunci utama: Menghapus garis kotak */
    box-shadow: none !important; /* Memastikan tidak ada bayangan kotak */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Efek membesar saat disorot kursor (opsional, agar tetap elegan) */
.cs-links a:hover {
    transform: scale(1.15); 
}
/* ==========================================================================
   FOOTER STYLE
   ========================================================================== */
.footer {
    background: #ffffff;
    padding: 40px;
    border-top: 1px solid #f1f5f9;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy { font-size: 13px; color: #94a3b8; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: #94a3b8; font-size: 18px; text-decoration: none; transition: color 0.2s; }
.footer-socials a:hover { color: #0f172a; }

/* ==========================================================================
   FLOATING POP-UP WIDGET WHATSAPP
   ========================================================================== */
.wa-popup-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.wa-trigger-btn {
    width: 52px;
    height: 52px;
    background: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.25);
    cursor: pointer;
    transition: transform 0.2s;
}

.wa-trigger-btn:hover { transform: scale(1.05); }
.wa-trigger-btn i { color: #ffffff; font-size: 24px; }

.wa-box {
    width: 290px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wa-popup-widget.active .wa-box {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.wa-box-header {
    background: #0f172a;
    padding: 14px 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 34px; height: 34px; background: #1e293b; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #2dd4bf; font-size: 15px;
}

.wa-status-title { font-size: 13px; font-weight: 600; }
.wa-status-sub { font-size: 11px; color: #94a3b8; }
.wa-box-body { padding: 16px; background: #f8fafc; }

.wa-bubble {
    background: #ffffff;
    padding: 12px;
    border-radius: 0 12px 12px 12px;
    font-size: 13px;
    color: #334155;
    line-height: 1.5;
    border: 1px solid #e2e8f0;
}

.wa-box-footer { padding: 12px 16px; background: #ffffff; }

.wa-send-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #16a34a; color: #ffffff; text-decoration: none;
    font-size: 13px; font-weight: 600; padding: 10px; border-radius: 8px;
}

/* ==========================================================================
   ANIMATIONS ELEMENTS CLASSES
   ========================================================================== */
.reveal-element {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}
.reveal-element.revealed { opacity: 1; transform: translateY(0); }
.feat-card:nth-child(1) { transition-delay: 0.05s; }
.feat-card:nth-child(2) { transition-delay: 0.1s; }
.feat-card:nth-child(3) { transition-delay: 0.15s; }
.feat-card:nth-child(4) { transition-delay: 0.2s; }

.hero-wa-seamless::after {
    content: ""; position: absolute; top: 0; left: -50%; width: 30%; height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg); animation: shimmerEffect 4s infinite ease-in-out;
}
@keyframes shimmerEffect { 0% { left: -50%; } 30% { left: 150%; } 100% { left: 150%; } }

.animate-entrance { opacity: 0; transform: translateY(30px); animation: heroEntrance 1s ease forwards; will-change: opacity, transform; }
@keyframes heroEntrance { to { opacity: 1; transform: translateY(0); } }
.hero-tags-group.animate-entrance { animation-delay: 0.1s; }
.hero-h1.animate-entrance { animation-delay: 0.25s; }
.hero-sub.animate-entrance { animation-delay: 0.4s; }
.hero-wa-seamless.animate-entrance { animation-delay: 0.55s; }
.hero-fast-tag.animate-entrance { animation-delay: 0.65s; }
.hero-img-placeholder.animate-entrance-right { opacity: 0; transform: scale(0.96) translateX(20px); animation: heroRightEntrance 1.2s ease forwards; animation-delay: 0.35s; will-change: opacity, transform; }
@keyframes heroRightEntrance { to { opacity: 1; transform: scale(1) translateX(0); } }
.nav-wrapper { opacity: 0; animation: navbarFade 0.8s ease forwards; animation-delay: 0.1s; }
@keyframes navbarFade { to { opacity: 1; } }

/* ==========================================================================
   MEDIA QUERIES (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; padding-top: 150px; gap: 30px; }
    .hero-right { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav { padding: 12px 20px; justify-content: center; }
    .nav-links { display: none; }
    .nav-logo-img { height: 120px; } /* Logo HP juga diperbesar pesat */
    .hero-container { padding-top: 170px; }
}

@media (max-width: 480px) {
    .nav { padding: 10px 10px; justify-content: center; }
    .hero-container { padding: 180px 20px 40px 20px; }
    
    .hero-h1 { font-size: 28px; }
    .hero-sub { font-size: 14px; text-align: justify; } 
    .hero-wa-seamless { width: 100%; justify-content: center; }
    .hero-fast-tag { font-size: 14px; color: #475569; margin-top: 18px; justify-content: center; }

    .about { padding: 52px 20px; }
    .about .section-sub { margin-bottom: 36px; text-align: justify; }
    .features-grid { grid-template-columns: 1fr; gap: 16px; width: 100%; }
    .feat-card { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 24px 20px; }
    .feat-icon { margin-left: auto; margin-right: auto; }
    
    .feat-desc {
        font-size: 15px !important; /* Bodynya digedein khusus buat HP */
        line-height: 1.6 !important; /* Spasi baris dikunci agar seragam */
        letter-spacing: 0.2px !important; /* Jarak huruf dilegakan sedikit agar ilusi optik hilang */
    }

    .contact { padding: 52px 20px; }
    .premium-title { font-size: 18px !important; }
    .footer { padding: 24px 20px; }
    .footer-container { flex-direction: column; gap: 14px; text-align: center; }

    /* WIDGET WA MOBILE (SLIDE-IN PILL) */
    .wa-popup-widget { bottom: 20px; right: 20px; }
    .wa-trigger-btn { width: 48px; height: 48px; }
    .wa-box { width: auto; background: transparent; border: none; box-shadow: none; margin-bottom: 8px; align-items: flex-end; transform: translateY(20px); }
    .wa-box-header, .wa-box-body { display: none !important; }
    .wa-box-footer { padding: 0; background: transparent; }
    .wa-send-btn { background: #0f172a; color: #ffffff; border: none; padding: 14px 28px; border-radius: 50px; font-size: 14px; font-weight: 700; box-shadow: 0 12px 30px rgba(15, 23, 42, 0.3); white-space: nowrap; display: flex; align-items: center; gap: 10px; }
    .wa-send-btn i { color: #2dd4bf; font-size: 20px; }
}