/* ==================================== */
/* 0. GLOBAL RESET & VARIABLES          */
/* ==================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-teal: #005F5F;    
    --accent-gold: #F0C420;      
    --accent-gold-hover: #D4AC1C; 
    --bg-dark: #121212;         
    --bg-card-dark: #1E1E1E;    
    --text-light: #FFFFFF;      
    --text-muted: #B0B0B0;      
    --border-color: #333333;    
    
    /* Layout Settings */
    --container-width: 92%; 
    --max-width-limit: 1600px;
    --header-height: 80px;
    --border-radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--bg-dark);
    width: 100%;
    overflow-x: hidden;
    font-size: 16px; 
}

/* CONTAINER */
.container {
    width: var(--container-width);
    max-width: var(--max-width-limit);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { margin-bottom: 1rem; line-height: 1.2; font-weight: 700; color: var(--text-light); }
h1 { font-size: 3.5rem; } 
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.05rem; }

.section-subtitle { text-align: center; font-size: 1.2rem; max-width: 800px; margin: 0 auto 4rem auto; color: var(--text-muted); }
section { padding: 6rem 0; width: 100%; position: relative; } 
section:nth-child(odd) { background-color: var(--bg-dark); }
section:nth-child(even) { background-color: var(--bg-card-dark); }
.text-center { text-align: center; }

/* BUTTONS */
.btn { display: inline-block; padding: 0.85rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; font-size: 1rem; letter-spacing: 0.5px; white-space: nowrap; }
.btn-primary { background-color: var(--accent-gold); color: #121212; border-color: var(--accent-gold); }
.btn-primary:hover { background-color: var(--accent-gold-hover); border-color: var(--accent-gold-hover); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(240, 196, 32, 0.4); color: #000; }
.btn-secondary { background-color: transparent; color: var(--accent-gold); border-color: var(--accent-gold); }
.btn-secondary:hover { background-color: var(--accent-gold); color: #121212; }
.btn-full { width: 100%; display: block; text-align: center; border-radius: 8px; }

/* HEADER & NAV */
#main-header { position: sticky; top: 0; z-index: 1000; width: 100%; height: var(--header-height); background-color: rgba(0, 95, 95, 0.95); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { height: 50px; width: auto; }
.menu-toggle { display: none; color: #fff; font-size: 1.8rem; cursor: pointer; }
#main-header nav ul { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; }
#main-header nav ul li { margin-left: 2.5rem; }
#main-header nav ul li a { text-decoration: none; color: var(--text-light); font-weight: 500; transition: color 0.3s; font-size: 1rem; }
#main-header nav ul li a:hover { color: var(--accent-gold); }
.nav-btn { margin-left: 1.5rem; padding: 0.6rem 1.8rem !important; border-radius: 8px; }

/* HERO SECTION (CENTERED FOR LAPTOP & TABLET) */
#hero { min-height: 85vh; display: flex; align-items: center; background-color: var(--bg-dark); padding: 4rem 0; }
#hero .container { 
    text-align: center; /* Rata Tengah */
    display: flex;
    flex-direction: column;
    align-items: center; /* Item di tengah */
}
.hero-description { 
    font-size: 1.3rem; 
    margin: 0 auto 3rem auto; /* Auto margin agar di tengah */
    max-width: 800px; 
    color: var(--text-muted); 
    line-height: 1.6; 
}

/* PROMO BANNER */
.promo-banner { display: flex; align-items: center; justify-content: space-between; gap: 4rem; background: linear-gradient(135deg, rgba(30, 30, 30, 1) 0%, rgba(45, 45, 45, 1) 100%); border: 2px solid var(--accent-gold); border-radius: 20px; padding: 3.5rem; box-shadow: 0 15px 30px rgba(240, 196, 32, 0.1); margin-top: 3rem; width: 100%; overflow: hidden; }
.promo-text { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; /* Teks Promo tetap rata kiri agar rapi */
    text-align: left;        /* Override dari Hero center */
    gap: 1.5rem; 
}
.promo-text h3 { color: var(--accent-gold); font-size: 1.8rem; display: flex; align-items: center; gap: 0.8rem; margin: 0;}
.promo-text p { margin: 0; font-size: 1.15rem; color: var(--text-light); max-width: 600px; }
.promo-image-container { flex: 0 0 280px; width: 280px; height: 280px; background: #000; border-radius: 16px; overflow: hidden; border: 2px solid rgba(240, 196, 32, 0.3); }
.promo-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* PORTFOLIO GRID */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 4rem; align-items: start; width: 100%; }
.portfolio-item { background: var(--bg-card-dark); border-radius: var(--border-radius); overflow: hidden; border: 1px solid var(--border-color); transition: transform 0.3s, border-color 0.3s; display: flex; flex-direction: column; height: 100%; }
.portfolio-item:hover { transform: translateY(-10px); border-color: var(--accent-gold); }
.media-container { position: relative !important; width: 100%; background: #1a1a1a; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ratio-box { aspect-ratio: 4 / 5; } 
.media-thumb { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center top; opacity: 0.85; transition: opacity 0.3s, transform 0.5s; display: block; }
.portfolio-item:hover .media-thumb { opacity: 0.6; transform: scale(1.05); }
.center-icon { position: absolute !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -50%) !important; font-size: 4.5rem; color: var(--accent-gold); opacity: 0.9; text-shadow: 0 4px 15px rgba(0,0,0,0.8); pointer-events: none; z-index: 10; }
.media-link { display: block; text-decoration: none; position: relative; }
.portfolio-text { padding: 2rem; background: var(--bg-card-dark); flex-grow: 1; text-align: left; /* Portfolio Text Rata Kiri */ }
.portfolio-text h3 { color: var(--accent-gold); font-size: 1.4rem; margin-bottom: 0.8rem; }
.portfolio-text p { font-size: 1rem; margin-bottom: 0; color: var(--text-muted); line-height: 1.6; }

/* ==================================== */
/* 0. GLOBAL RESET & VARIABLES          */
/* ==================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-teal: #005F5F;    
    --accent-gold: #F0C420;      
    --accent-gold-hover: #D4AC1C; 
    --bg-dark: #121212;         
    --bg-card-dark: #1E1E1E;    
    --text-light: #FFFFFF;      
    --text-muted: #B0B0B0;      
    --border-color: #333333;    
    
    /* Layout Settings */
    --container-width: 92%; 
    --max-width-limit: 1600px;
    --header-height: 80px;
    --border-radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--bg-dark);
    width: 100%;
    overflow-x: hidden;
    font-size: 16px; 
}

/* CONTAINER */
.container {
    width: var(--container-width);
    max-width: var(--max-width-limit);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { margin-bottom: 1rem; line-height: 1.2; font-weight: 700; color: var(--text-light); }
h1 { font-size: 3.5rem; } 
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.05rem; }

.section-subtitle { text-align: center; font-size: 1.2rem; max-width: 800px; margin: 0 auto 4rem auto; color: var(--text-muted); }
section { padding: 6rem 0; width: 100%; position: relative; } 
section:nth-child(odd) { background-color: var(--bg-dark); }
section:nth-child(even) { background-color: var(--bg-card-dark); }
.text-center { text-align: center; }

/* BUTTONS */
.btn { display: inline-block; padding: 0.85rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; font-size: 1rem; letter-spacing: 0.5px; white-space: nowrap; }
.btn-primary { background-color: var(--accent-gold); color: #121212; border-color: var(--accent-gold); }
.btn-primary:hover { background-color: var(--accent-gold-hover); border-color: var(--accent-gold-hover); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(240, 196, 32, 0.4); color: #000; }
.btn-secondary { background-color: transparent; color: var(--accent-gold); border-color: var(--accent-gold); }
.btn-secondary:hover { background-color: var(--accent-gold); color: #121212; }
.btn-full { width: 100%; display: block; text-align: center; border-radius: 8px; }

/* HEADER & NAV */
#main-header { position: sticky; top: 0; z-index: 1000; width: 100%; height: var(--header-height); background-color: rgba(0, 95, 95, 0.95); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { height: 50px; width: auto; }
.menu-toggle { display: none; color: #fff; font-size: 1.8rem; cursor: pointer; }
#main-header nav ul { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; }
#main-header nav ul li { margin-left: 2.5rem; }
#main-header nav ul li a { text-decoration: none; color: var(--text-light); font-weight: 500; transition: color 0.3s; font-size: 1rem; }
#main-header nav ul li a:hover { color: var(--accent-gold); }
.nav-btn { margin-left: 1.5rem; padding: 0.6rem 1.8rem !important; border-radius: 8px; }

/* HERO SECTION (CENTERED FOR LAPTOP & TABLET) */
#hero { min-height: 85vh; display: flex; align-items: center; background-color: var(--bg-dark); padding: 4rem 0; }
#hero .container { 
    text-align: center; /* Rata Tengah */
    display: flex;
    flex-direction: column;
    align-items: center; /* Item di tengah */
}
.hero-description { 
    font-size: 1.3rem; 
    margin: 0 auto 3rem auto; /* Auto margin agar di tengah */
    max-width: 800px; 
    color: var(--text-muted); 
    line-height: 1.6; 
}

/* PROMO BANNER */
.promo-banner { display: flex; align-items: center; justify-content: space-between; gap: 4rem; background: linear-gradient(135deg, rgba(30, 30, 30, 1) 0%, rgba(45, 45, 45, 1) 100%); border: 2px solid var(--accent-gold); border-radius: 20px; padding: 3.5rem; box-shadow: 0 15px 30px rgba(240, 196, 32, 0.1); margin-top: 3rem; width: 100%; overflow: hidden; }
.promo-text { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; /* Teks Promo tetap rata kiri agar rapi */
    text-align: left;        /* Override dari Hero center */
    gap: 1.5rem; 
}
.promo-text h3 { color: var(--accent-gold); font-size: 1.8rem; display: flex; align-items: center; gap: 0.8rem; margin: 0;}
.promo-text p { margin: 0; font-size: 1.15rem; color: var(--text-light); max-width: 600px; }
.promo-image-container { flex: 0 0 280px; width: 280px; height: 280px; background: #000; border-radius: 16px; overflow: hidden; border: 2px solid rgba(240, 196, 32, 0.3); }
.promo-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* PORTFOLIO GRID */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 4rem; align-items: start; width: 100%; }
.portfolio-item { background: var(--bg-card-dark); border-radius: var(--border-radius); overflow: hidden; border: 1px solid var(--border-color); transition: transform 0.3s, border-color 0.3s; display: flex; flex-direction: column; height: 100%; }
.portfolio-item:hover { transform: translateY(-10px); border-color: var(--accent-gold); }
.media-container { position: relative !important; width: 100%; background: #1a1a1a; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ratio-box { aspect-ratio: 4 / 5; } 
.media-thumb { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center top; opacity: 0.85; transition: opacity 0.3s, transform 0.5s; display: block; }
.portfolio-item:hover .media-thumb { opacity: 0.6; transform: scale(1.05); }
.center-icon { position: absolute !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -50%) !important; font-size: 4.5rem; color: var(--accent-gold); opacity: 0.9; text-shadow: 0 4px 15px rgba(0,0,0,0.8); pointer-events: none; z-index: 10; }
.media-link { display: block; text-decoration: none; position: relative; }
.portfolio-text { padding: 2rem; background: var(--bg-card-dark); flex-grow: 1; text-align: left; /* Portfolio Text Rata Kiri */ }
.portfolio-text h3 { color: var(--accent-gold); font-size: 1.4rem; margin-bottom: 0.8rem; }
.portfolio-text p { font-size: 1rem; margin-bottom: 0; color: var(--text-muted); line-height: 1.6; }

/* SERVICES TABLE */
.pricing-table-container { overflow-x: auto; margin-top: 3rem; padding-bottom: 1rem; width: 100%; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; background: var(--bg-card-dark); border-radius: var(--border-radius); border: 1px solid var(--border-color); min-width: 700px; }
th, td { padding: 1.5rem 2rem; border-bottom: 1px solid var(--border-color); text-align: center; color: var(--text-muted); font-size: 1.05rem; }
th { color: var(--text-light); background-color: #1A4D4D; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* >>>>> TEMPATKAN KODE REVISI DI SINI <<<<< */

/* REVISI PENTING: MENGHILANGKAN STICKY DARI KOLOM FEATURES */
th:first-child, td:first-child { 
    text-align: left; 
    font-weight: 600; 
    color: var(--text-light); 
    padding-left: 2rem; 
    position: static !important; /* INI YANG MENGHAPUS EFEK STICKY */
    z-index: 0; 
    background: var(--bg-card-dark); 
}
/* PITA RECOMMENDED (Fixed) */
th.best-value { background-color: #008585; position: relative; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); z-index: 1; }
th.best-value::after { 
    content: "Recommended"; 
    position: absolute; 
    top: 15px;           
    right: -32px;       
    width: 120px; 
    padding: 0.2rem 0; 
    text-align: center; 
    background: var(--accent-gold); 
    color: #005F5F;     
    font-size: 0.6rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    transform: rotate(45deg); 
    z-index: 2; 
}

th:first-child, td:first-child { text-align: left; font-weight: 600; color: var(--text-light); padding-left: 2rem;  position: static !important; left: 0; background: var(--bg-card-dark); z-index: 0 !important;} 
td i.fa-check { color: var(--accent-gold); font-size: 1.2rem; }
tfoot td { border-bottom: none; background-color: rgba(255,255,255,0.02); padding-top: 2rem; }

/* INSIGHTS */
.insight-list { display: flex; flex-direction: column; gap: 4rem; margin-top: 3rem; width: 100%; }
.insight-card { display: flex; flex-direction: row; background: var(--bg-card-dark); border-radius: var(--border-radius); border: 1px solid var(--border-color); overflow: hidden; gap: 3rem; padding: 3rem; }
.insight-img-wrapper { flex: 0 0 400px; width: 400px; height: 350px; }
.insight-img-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.insight-content { flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.insight-content h3 { font-size: 2rem; color: var(--accent-gold); margin-bottom: 1.2rem; }
.insight-text { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 2rem; }
.read-more { color: var(--text-light); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; font-size: 1.1rem; }

/* ABOUT US */
.team-group-photo-container { margin-bottom: 5rem; text-align: center; }
.team-group-photo { width: 100%; max-width: 1000px; height: auto; border-radius: var(--border-radius); border: 1px solid var(--border-color); }
.team-detailed-grid { display: flex; flex-direction: column; gap: 3rem; max-width: 1300px; margin: 0 auto; }
.team-member-detailed { display: flex; flex-direction: row; background: var(--bg-card-dark); border-radius: var(--border-radius); overflow: hidden; border: 1px solid var(--border-color); transition: transform 0.3s ease; }
.member-photo { flex: 0 0 350px; width: 350px; background-color: #000; position: relative; overflow: hidden; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.member-content { flex: 1; padding: 3rem; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.member-content h3 { margin-bottom: 0.5rem; color: var(--text-light); font-size: 1.8rem; }
.team-role { color: #4db6ac; font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.team-spec { color: var(--accent-gold); font-size: 1rem; font-weight: 500; margin-bottom: 1.5rem; font-style: italic; }
.team-bio p { font-size: 1.05rem; }

/* CONTACT & FOOTER */
.contact-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; width: 100%; text-align: left; }
.contact-details { margin-top: 2rem; }
.contact-details li { margin-bottom: 1.5rem; display: flex; align-items: flex-start; font-size: 1.1rem; }
.contact-details li i { color: var(--accent-gold); margin-right: 1.2rem; margin-top: 5px; font-size: 1.3rem; }
.contact-details li a { color: var(--text-light); text-decoration: none; word-break: break-all; }
.contact-form-wrapper { background: var(--bg-card-dark); padding: 3rem; border-radius: var(--border-radius); border: 1px solid var(--border-color); }
.form-group { margin-bottom: 2rem; }
.form-group input, .form-group textarea { width: 100%; padding: 1.2rem; background-color: var(--bg-dark); border: 1px solid var(--border-color); border-radius: 8px; color: var(--text-light); font-family: inherit; font-size: 1.05rem; }
footer { background-color: #080808; padding: 5rem 0 2rem; border-top: 1px solid var(--border-color); width: 100%; }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 3rem; align-items: center; }
.logo-footer { height: 50px; margin-bottom: 1.5rem; }

/* ICON SOSMED - HOVER FIX */
.footer-links a { 
    color: #FFFFFF; 
    font-size: 1.8rem; 
    margin-left: 2rem; 
    transition: color 0.3s ease-in-out; 
}
.footer-links a:hover, .footer-links a:hover i { 
    color: var(--accent-gold) !important; 
}

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: #FFF; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 100; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

/* ================================================================= */
/* RESPONSIVE DESIGN (HP & TABLET) */
/* ================================================================= */

/* TABLET LANDSCAPE & LAPTOP KECIL (1024px) */
@media (max-width: 1024px) {
    .container { width: 95%; }
    
    h1 { font-size: 3rem; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .team-member-detailed { flex-direction: column; }
    .member-photo { width: 100%; height: 400px; }
    
    /* FIX: INSIGHTS STACK */
    .insight-card { flex-direction: column; padding: 2rem; }
    .insight-img-wrapper { width: 100%; height: 300px; margin-bottom: 1.5rem; }
    .insight-content { width: 100%; justify-content: flex-start; }
    
    /* FIX: NAVIGASI TABLET RATA TENGAH */
    #navbar { display: none; position: absolute; top: var(--header-height); left: 0; width: 100%; background-color: rgba(0, 95, 95, 0.98); padding: 1rem 0; box-shadow: 0 10px 10px rgba(0,0,0,0.1); }
    #navbar.active { display: block; }
    #navbar ul { 
        flex-direction: column; 
        align-items: center; 
        padding: 0;
    }
    #navbar ul li { 
        margin: 0.5rem 0; 
        width: 100%;
        text-align: center;
    }
    .nav-btn { margin: 0.5rem 0 1rem 0; }
    .menu-toggle { display: block; }
    
    /* Promo Banner di Tablet */
    .promo-banner { flex-direction: column-reverse; text-align: center; }
    .promo-text { align-items: center; text-align: center; }
    .promo-image-container { margin: 0 auto; }
}

/* KHUSUS HP (Max Width 768px) */
/* GANTI SELURUH BLOK INI DI DALAM @media (max-width: 768px) */

/* FIX 1: MENU LIST RATA KIRI */
#navbar ul { 
    flex-direction: column; 
    align-items: flex-start !important; 
    padding-left: 1.5rem !important;    /* Jarak dari kiri 1.5rem */
    padding-right: 0 !important;
}

#navbar ul li { 
    margin: 1rem 0; 
    text-align: left !important;        
    width: 100%;
}

/* FIX 2: TOMBOL CONTACT DI DROPDOWN (LEBAR SESUAI HANDPHONE) */
.nav-btn { 
    /* Margin Kiri (1.5rem) disamakan dengan padding menu list agar rata */
    margin: 0.5rem 1rem 1rem 1.5rem !important; 
    width: 65% !important; /* Batasi lebar tombol */
    max-width: 300px;
    padding: 0.75rem 1rem !important; /* Kecilkan padding tombol */
    text-align: center !important;
    display: block;
}
    /* Hero Center tetap */
    #hero { text-align: center; padding-top: 2rem; min-height: auto; }
    #hero .container { text-align: center; }
    
    .promo-banner { flex-direction: column-reverse; padding: 2rem 1.5rem; gap: 2rem; text-align: center; }
    .promo-text { align-items: center; text-align: center; }
    .promo-text h3 { font-size: 1.5rem; }
    .promo-image-container { width: 100%; max-width: 100%; height: auto; aspect-ratio: 1/1; }
    
    .portfolio-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2rem; }
    .ratio-box { aspect-ratio: 16 / 9; }
    
    .pricing-table-container { margin-right: -1.2rem; } 
    
    /* FIX PITA */
    th.best-value::after {
        top: 8px;       
        right: -28px;   
        font-size: 0.5rem; 
        width: 100px;
    }
    
    .insight-list { gap: 2.5rem; }
    .insight-card { flex-direction: column; padding: 1.5rem; gap: 1.5rem; }
    .insight-img-wrapper { width: 100%; height: 250px; flex: none; }
    .insight-content h3 { font-size: 1.5rem; }
    
    .team-member-detailed { margin-bottom: 0; }
    .member-photo { width: 100%; height: 350px; }
    .member-content { padding: 2rem 1.5rem; }
    
    .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    .contact-form-wrapper { padding: 1.5rem; }
    .footer-content { flex-direction: column; text-align: center; gap: 2rem; }
    .footer-links { margin: 0; }
    
    /* Tombol .btn global dikembalikan ke 100% lebar untuk footer/contact form */
    .btn { width: 100%; display: block; text-align: center; }
}
/* ==================================== */
/* MODAL/LIGHTBOX STYLING (VIEW ONLY)   */
/* ==================================== */

.modal {
    display: none; 
    position: fixed;
    z-index: 1001; /* Pastikan di atas header sticky */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95); /* Background gelap */
}

.modal-content {
    background-color: var(--bg-dark);
    margin: 5% auto; /* Tengah vertikal & horizontal */
    padding: 20px;
    border: 1px solid var(--accent-gold);
    border-radius: var(--border-radius);
    width: 90%; 
    max-width: 1200px;
    height: 90vh; /* Tinggi viewport */
    position: relative;
    box-shadow: 0 0 30px rgba(240, 196, 32, 0.5);
}

.close-btn {
    color: #fff;
    float: right;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 1002;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--accent-gold);
    text-decoration: none;
}

#pdf-viewer {
    width: 100%;
    height: 100%;
    border: none;
}

/* Penyesuaian di HP */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        height: 85vh;
        width: 95%;
    }
}


/* INSIGHTS */
.insight-list { display: flex; flex-direction: column; gap: 4rem; margin-top: 3rem; width: 100%; }
.insight-card { display: flex; flex-direction: row; background: var(--bg-card-dark); border-radius: var(--border-radius); border: 1px solid var(--border-color); overflow: hidden; gap: 3rem; padding: 3rem; }
.insight-img-wrapper { flex: 0 0 400px; width: 400px; height: 350px; }
.insight-img-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.insight-content { flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.insight-content h3 { font-size: 2rem; color: var(--accent-gold); margin-bottom: 1.2rem; }
.insight-text { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 2rem; }
.read-more { color: var(--text-light); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; font-size: 1.1rem; }

/* ABOUT US */
.team-group-photo-container { margin-bottom: 5rem; text-align: center; }
.team-group-photo { width: 100%; max-width: 1000px; height: auto; border-radius: var(--border-radius); border: 1px solid var(--border-color); }
.team-detailed-grid { display: flex; flex-direction: column; gap: 3rem; max-width: 1300px; margin: 0 auto; }
.team-member-detailed { display: flex; flex-direction: row; background: var(--bg-card-dark); border-radius: var(--border-radius); overflow: hidden; border: 1px solid var(--border-color); transition: transform 0.3s ease; }
.member-photo { flex: 0 0 350px; width: 350px; background-color: #000; position: relative; overflow: hidden; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.member-content { flex: 1; padding: 3rem; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.member-content h3 { margin-bottom: 0.5rem; color: var(--text-light); font-size: 1.8rem; }
.team-role { color: #4db6ac; font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.team-spec { color: var(--accent-gold); font-size: 1rem; font-weight: 500; margin-bottom: 1.5rem; font-style: italic; }
.team-bio p { font-size: 1.05rem; }

/* CONTACT & FOOTER */
.contact-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; width: 100%; text-align: left; }
.contact-details { margin-top: 2rem; }
.contact-details li { margin-bottom: 1.5rem; display: flex; align-items: flex-start; font-size: 1.1rem; }
.contact-details li i { color: var(--accent-gold); margin-right: 1.2rem; margin-top: 5px; font-size: 1.3rem; }
.contact-details li a { color: var(--text-light); text-decoration: none; word-break: break-all; }
.contact-form-wrapper { background: var(--bg-card-dark); padding: 3rem; border-radius: var(--border-radius); border: 1px solid var(--border-color); }
.form-group { margin-bottom: 2rem; }
.form-group input, .form-group textarea { width: 100%; padding: 1.2rem; background-color: var(--bg-dark); border: 1px solid var(--border-color); border-radius: 8px; color: var(--text-light); font-family: inherit; font-size: 1.05rem; }
footer { background-color: #080808; padding: 5rem 0 2rem; border-top: 1px solid var(--border-color); width: 100%; }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 3rem; align-items: center; }
.logo-footer { height: 50px; margin-bottom: 1.5rem; }

/* ICON SOSMED - HOVER FIX */
.footer-links a { 
    color: #FFFFFF; 
    font-size: 1.8rem; 
    margin-left: 2rem; 
    transition: color 0.3s ease-in-out; 
}
.footer-links a:hover, .footer-links a:hover i { 
    color: var(--accent-gold) !important; 
}

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: #FFF; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 100; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

/* ================================================================= */
/* RESPONSIVE DESIGN (HP & TABLET) */
/* ================================================================= */

/* TABLET LANDSCAPE & LAPTOP KECIL (1024px) */
@media (max-width: 1024px) {
    .container { width: 95%; }
    
    h1 { font-size: 3rem; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .team-member-detailed { flex-direction: column; }
    .member-photo { width: 100%; height: 400px; }
    
    /* FIX: INSIGHTS STACK */
    .insight-card { flex-direction: column; padding: 2rem; }
    .insight-img-wrapper { width: 100%; height: 300px; margin-bottom: 1.5rem; }
    .insight-content { width: 100%; justify-content: flex-start; }
    
    /* FIX: NAVIGASI TABLET RATA TENGAH */
    #navbar { display: none; position: absolute; top: var(--header-height); left: 0; width: 100%; background-color: rgba(0, 95, 95, 0.98); padding: 1rem 0; box-shadow: 0 10px 10px rgba(0,0,0,0.1); }
    #navbar.active { display: block; }
    #navbar ul { 
        flex-direction: column; 
        align-items: center; 
        padding: 0;
    }
    #navbar ul li { 
        margin: 0.5rem 0; 
        width: 100%;
        text-align: center;
    }
    .nav-btn { margin: 0.5rem 0 1rem 0; }
    .menu-toggle { display: block; }
    
    /* Promo Banner di Tablet */
    .promo-banner { flex-direction: column-reverse; text-align: center; }
    .promo-text { align-items: center; text-align: center; }
    .promo-image-container { margin: 0 auto; }
}

/* KHUSUS HP (Max Width 768px) */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; text-align: center !important; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    p { font-size: 1rem; }
    
    #main-header { height: 70px; }
    .logo { height: 40px; }
    #navbar { top: 70px; }
    
    /* FIX: MENU HP RATA KIRI (PERMINTAAN UTAMA) */
    #navbar ul { 
        flex-direction: column; 
        align-items: flex-start !important; /* Paksa Rata Kiri */
        padding-left: 2rem !important;      /* Jarak dari kiri */
        padding-right: 0 !important;
    }
    #navbar ul li { 
        margin: 1rem 0; 
        text-align: left !important;        /* Teks Menu Rata Kiri */
        width: 100%;
    }
    .nav-btn { margin-left: 0; } /* Tombol contact juga rata kiri */
    
    /* Hero Center tetap */
    #hero { text-align: center; padding-top: 2rem; min-height: auto; }
    #hero .container { text-align: center; }
    
    .promo-banner { flex-direction: column-reverse; padding: 2rem 1.5rem; gap: 2rem; text-align: center; }
    .promo-text { align-items: center; text-align: center; }
    .promo-text h3 { font-size: 1.5rem; }
    .promo-image-container { width: 100%; max-width: 100%; height: auto; aspect-ratio: 1/1; }
    
    .portfolio-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2rem; }
    .ratio-box { aspect-ratio: 16 / 9; }
    
    .pricing-table-container { margin-right: -1.2rem; } 
    
    /* FIX PITA */
    th.best-value::after {
        top: 8px;       
        right: -28px;   
        font-size: 0.5rem; 
        width: 100px;
    }
    
    .insight-list { gap: 2.5rem; }
    .insight-card { flex-direction: column; padding: 1.5rem; gap: 1.5rem; }
    .insight-img-wrapper { width: 100%; height: 250px; flex: none; }
    .insight-content h3 { font-size: 1.5rem; }
    
    .team-member-detailed { margin-bottom: 0; }
    .member-photo { width: 100%; height: 350px; }
    .member-content { padding: 2rem 1.5rem; }
    
    .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    .contact-form-wrapper { padding: 1.5rem; }
    .footer-content { flex-direction: column; text-align: center; gap: 2rem; }
    .footer-links { margin: 0; }
    
    .btn { width: 100%; display: block; text-align: center; }
}
/* ==================================== */
/* MODAL/LIGHTBOX STYLING (VIEW ONLY)   */
/* ==================================== */

.modal {
    display: none; 
    position: fixed;
    z-index: 1001; /* Pastikan di atas header sticky */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95); /* Background gelap */
}

.modal-content {
    background-color: var(--bg-dark);
    margin: 5% auto; /* Tengah vertikal & horizontal */
    padding: 20px;
    border: 1px solid var(--accent-gold);
    border-radius: var(--border-radius);
    width: 90%; 
    max-width: 1200px;
    height: 90vh; /* Tinggi viewport */
    position: relative;
    box-shadow: 0 0 30px rgba(240, 196, 32, 0.5);
}

.close-btn {
    color: #fff;
    float: right;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 1002;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--accent-gold);
    text-decoration: none;
}

#pdf-viewer {
    width: 100%;
    height: 100%;
    border: none;
}

/* Penyesuaian di HP */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        height: 85vh;
        width: 95%;
    }
}
