@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* === Global Reset & Theme Variables === */
:root {
    --bg-color: #0A192F; /* Dark background */
    --secondary-bg-color: rgba(10, 25, 47, 0.8); /* Transparent dark for glass effect */
    --text-color: #E0E0E0;
    --heading-color: #FFFFFF;
    --primary-accent-color: #87CEEB; /* Lighter Ice Blue */
    --primary-accent-color-rgb: 135, 206, 235; /* RGB for Lighter Ice Blue */
    --secondary-accent-color: #BA55D3; /* Deeper Pastel Purple */
    --secondary-accent-color-rgb: 186, 85, 211; /* RGB for Deeper Pastel Purple */
    --border-color: #4A4A4A; /* Darker Silver Chrome */
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); /* Darker glass shadow */
    --header-bg: rgba(10, 25, 47, 0.6); /* More transparent dark header */
    /* Glassmorphism specific variables */
    --glass-blur: 15px;
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    /* Animation timing */
    --animation-duration: 0.4s;
    --animation-easing: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px; /* Base font size for mobile-first */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden; /* Prevent horizontal scroll */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Mencegah scroll body saat menu mobile aktif */
body.no-scroll {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* === PERBAIKAN DAN PENAMBAHAN SPESIFIK UNTUK UKURAN GAMBAR (Global dan Spesifik) === */
img {
    max-width: 100%;
    height: auto; /* Default height auto, kecuali di-override oleh aturan spesifik */
    display: block;
}

/* --- Layanan Section --- */
.layanan-card-img {
    width: 100%;
    height: 200px; /* Tinggi tetap untuk gambar layanan */
    object-fit: contain; /* Jaga agar gambar utuh, tampilkan keseluruhan */
    padding: 20px;      /* Beri ruang di sekitar gambar */
    background-color: #e9f7f6; /* Latar belakang konsisten jika gambar transparan atau lebih kecil */
}

/* --- Portofolio Section (Homepage) --- */
.portofolio-item .portofolio-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease; /* Menambahkan transisi untuk efek hover */
}

/* --- Halaman Contoh Web (Portofolio Lengkap) --- */
.portfolio-page-img-container {
    width: 100%;
    aspect-ratio: 4 / 3; /* Menjaga proporsi 4:3 */
    overflow: hidden;
    background-color: var(--bg-color);
    transition: background-color 0.3s ease;
}

.portfolio-page-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* --- Artikel --- */
.artikel-item-image {
    flex-basis: 300px; /* Nilai awal untuk desktop */
    max-width: 350px;  /* Batas maksimal */
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    align-self: center;
}

.artikel-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artikel-main-image { /* Container untuk gambar utama di detail artikel */
    margin-bottom: 35px;
    text-align: center;
}

.artikel-main-image img { /* Gambar utama di detail artikel */
    max-width: 100%;
    max-height: 450px; /* Batasi tinggi maksimal gambar utama */
    width: auto; /* Biarkan lebar menyesuaikan jika tinggi jadi batasan */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.1);
    margin-left: auto;
    margin-right: auto;
}

/* --- Proses Kerja --- */
.proses-image { /* Container kolom gambar */
    flex: 1;
    min-width: 280px;
    max-width: 400px; /* Batasi lebar kolom gambar */
}

.proses-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover; /* Atau contain jika ingin lihat keseluruhan ikon */
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(10, 37, 64, 0.1);
}

/* --- Tentang Kami (Feature Blocks & Nilai) --- */
.feature-image,
.nilai-image-content {
    flex: 1;
    min-width: 300px;
}

.feature-image img,
.nilai-image-content img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover; /* Atau contain jika aspek rasio penting */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.1);
}

.cta-image-content img { /* Gambar di CTA Halaman Tentang */
    max-width: 100%;
    max-height: 350px; /* Batasi tinggi */
    width: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* --- Paket Website --- */
.paket-card-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 20px;
    background-color: #F0F4F8;
}

/* --- Kontak --- */
.kontak-header-image { /* Container untuk gambar header di halaman kontak */
    text-align: center;
    margin-bottom: 40px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.kontak-header-image img { /* Gambar di dalamnya */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.08);
}

/* --- Logo Klien & Afiliasi --- */
.testimoni-logo {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
    align-self: flex-start; /* Untuk di testimoni card */
}

.keanggotaan-logo {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    flex-shrink: 0; /* Untuk di keanggotaan item */
}

/* Logo carousel styling ada di sectionnya sendiri */
/* === AKHIR PERBAIKAN UKURAN GAMBAR === */

a {
    text-decoration: none;
    color: var(--primary-accent-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.3;
    transition: color 0.3s ease;
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: 1rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }
h4 { font-size: 1.35rem; margin-bottom: 0.75rem; }

.section-padding { padding: 75px 0; }
.section-padding-bg { padding: 75px 0; background-color: var(--secondary-bg-color); transition: background-color 0.3s ease; }

.section-title {
    text-align: center;
    font-size: 1.8em;
    color: var(--heading-color);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--primary-accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-color);
    max-width: 750px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-primary { color: var(--primary-accent-color); }
.text-secondary { color: var(--secondary-accent-color); }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.section-cta-margin { margin-top: 40px; }

/* === Header & Navigasi (Refactored) === */
#main-header {
    background-color: var(--header-bg);
    padding: 15px 0;
    box-shadow: var(--glass-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: var(--glass-border);
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

#main-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo-bds {
    height: 70px;
    transition: height 0.3s ease;
}

#main-header.scrolled #logo-bds {
    height: 50px;
}

#main-menu {
    list-style: none;
    display: flex; /* Default tampil di desktop */
    align-items: center;
    margin: 0;
    padding: 0;
}

#main-menu li {
    margin-left: 30px;
}

#main-menu li a {
    color: var(--heading-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

#main-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-accent-color);
    transition: width 0.3s ease;
}

#main-menu li a:hover::after,
#main-menu li a.active::after {
    width: 100%;
}

#main-menu li a.active {
    color: var(--primary-accent-color);
}

.menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: 1px solid var(--heading-color);
    border-radius: 5px;
    color: var(--heading-color);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px;
    z-index: 1002; /* Ensure button is on top of everything */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-toggle:hover {
    background-color: var(--heading-color);
    color: var(--bg-color);
}

.menu-toggle.active {
    background-color: var(--primary-accent-color);
    color: var(--secondary-bg-color);
    border-color: var(--primary-accent-color);
}

/* === Responsive Navigation === */
@media (max-width: 991px) {
    .menu-toggle {
        display: block; /* Show the hamburger button on mobile */
    }

    #main-menu {
        display: none; /* Hide the menu by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-bg-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 10px 0;
        border-top: 1px solid var(--border-color);
        z-index: 1000; /* Ensure mobile menu is above content */
    }

    #main-menu.active {
        display: flex; /* Show the menu when active */
    }

    #main-menu li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    #main-menu li a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    #main-menu li a::after {
        display: none; /* Hide the underline effect on mobile */
    }

    #main-menu li:last-child a {
        border-bottom: none;
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none; /* Hide the hamburger button on desktop */
    }

    #main-menu {
        display: flex; /* Show the menu on desktop */
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        border-top: none;
    }

    #main-menu li {
        margin-left: 30px;
    }
}



/* Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(168, 218, 220, 0.8) 0%, rgba(168, 218, 220, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(168, 218, 220, 0.5);
}

/* Dynamic Background Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Lebih rendah dari bg-shapes */
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.4); /* Overlay semi-transparan untuk memastikan teks tetap terbaca */
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(168, 218, 220, 0.1);
    animation: float 20s infinite linear;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
    75% { transform: translateY(-20px) rotate(270deg); }
}

/* Header styling following the theme */
#main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--glass-border);
    transition: all 0.3s ease;
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

#logo-bds {
    height: 50px; /* Control logo size */
    width: auto;
    background-color: var(--secondary-bg-color);
    border-radius: 50%;
    padding: 5px;
    box-sizing: border-box;
}

#main-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

#main-menu a {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

#main-menu a {
    color: #fff;
}

#main-menu a:hover, #main-menu a.active {
    background: rgba(168, 218, 220, 0.15);
}

#main-menu a:hover, #main-menu a.active {
    background: rgba(135, 206, 235, 0.15);
}

/* Header & Navigation (Updated to match the theme) */
#main-header {
    background-color: var(--header-bg);
    padding: 15px 0;
    box-shadow: var(--glass-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001; /* Naikkan z-index untuk memastikan header tetap di atas video */
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: var(--glass-border);
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

#main-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

#main-header .container { display: flex; justify-content: space-between; align-items: center; }
#logo-bds { height: 70px; transition: height 0.3s ease; }
#main-header.scrolled #logo-bds { height: 50px; }

@media (max-width: 991px) {
    #main-menu {
        display: none; flex-direction: column; position: absolute; top: 100%;
        left: 0; width: 100%; background-color: var(--secondary-bg-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding: 10px 0;
        border-top: 1px solid var(--border-color);
        transition: background-color 0.3s ease;
    }
}

#main-menu li { margin-left: 30px; }
#main-menu li a {
    color: var(--heading-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}
#main-menu li a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background-color: var(--primary-accent-color); transition: width 0.3s ease;
}
#main-menu li a:hover::after, #main-menu li a.active::after { width: 100%; }
#main-menu li a.active { color: var(--primary-accent-color); }
.menu-toggle {
    /* display: none; */ background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001;
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--heading-color);
    border: 1px solid var(--heading-color); border-radius: 5px; transition: background-color 0.3s ease, color 0.3s ease;
}
.menu-toggle:hover { background-color: var(--heading-color); color: var(--bg-color); }
.menu-toggle.active { background-color: var(--primary-accent-color); color: var(--secondary-bg-color); border-color: var(--primary-accent-color); }

.cta-button {
    display: inline-block;
    background-color: var(--secondary-bg-color); /* Use transparent white for glass effect */
    color: var(--heading-color);
    padding: 14px 28px; /* Adjusted for mobile-first */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem; /* Adjusted for mobile-first */
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: relative; /* For shimmer effect */
    overflow: hidden; /* For shimmer effect */
    z-index: 1; /* For shimmer effect */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.cta-button:hover {
    background-color: rgba(var(--primary-accent-color), 0.2); /* Lighter accent on hover */
    color: var(--heading-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--primary-accent-color), 0.4);
}

.cta-button:active {
    transform: translateY(0); /* Reset transform on click */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Drop shadow on click */
}

/* Shimmer effect for cta-button */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.large-cta {
    padding: 16px 40px; /* Adjusted for mobile-first */
    font-size: 1rem; /* Adjusted for mobile-first */
}

/* === Proses Kerja Page (REVISI UNTUK LAYOUT SELANG-SELING DI DESKTOP) === */
.proses-timeline {
    position: relative;
    /* Bisa ditambahkan garis timeline vertikal jika diinginkan nanti dengan pseudo-element */
}

.proses-item {
    display: flex;
    flex-direction: column; /* Default untuk mobile-first */
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    padding: 15px; /* Adjusted for mobile-first */
    background-color: var(--secondary-bg-color);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.proses-image { /* Container kolom gambar */
    flex: 1 1 300px;
    max-width: 100%; /* Adjusted for mobile-first */
    margin-bottom: 20px; /* Adjusted for mobile-first */
    width: 100%; /* Adjusted for mobile-first */
}

.proses-image img {
    width: 100%;
    height: auto;
    max-height: 280px; /* Batasi tinggi gambar agar tidak terlalu dominan */
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(10, 37, 64, 0.1);
    display: block; /* pastikan display block */
    margin-left: auto; /* Pusatkan gambar jika lebih kecil dari container */
    margin-right: auto;
}

.proses-icon {
    flex: 1 1 300px;
    max-width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.icon-proses {
    font-size: 4rem;
    color: var(--primary-accent-color);
    transition: all 0.3s ease;
}

.icon-proses:hover {
    color: var(--secondary-accent-color);
    transform: scale(1.1);
}

.proses-content { /* Konten teks */
    flex: 1 1 300px;
    position: relative;
    z-index: 1;
    padding: 0; /* Adjusted for mobile-first */
    text-align: left; /* Adjusted for mobile-first */
    width: 100%; /* Adjusted for mobile-first */
}

.proses-number {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem; /* Ukuran nomor */
    color: var(--primary-accent-color);
    opacity: 0.15; /* Nomor dibuat lebih subtle */
    position: absolute;
    top: 15px;
    line-height: 1;
    z-index: 0; /* Di belakang konten teks */
    /* Posisi akan diatur per item di media query desktop */
}

.proses-number {
    opacity: 0.3; /* Meningkatkan opacity dalam mode gelap agar tetap terlihat */
}

.proses-content h3 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    /* Mencegah teks panjang terpotong paksa di layar sempit */
    overflow-wrap: break-word;
    /* text-align: left; /* Default untuk mobile jika diinginkan */
}

.proses-content h3 {
    color: #FFFFFF;
}

.proses-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    /* text-align: left; /* Default untuk mobile jika diinginkan */
}

.proses-content p {
    color: #E0E0E0;
}

/* --- Layout Selang-Seling untuk Tampilan Laptop/Desktop (min-width: 992px) --- */
@media (min-width: 992px) { /* Terapkan mulai dari layar lebar (laptop) */
    .proses-item {
        flex-wrap: nowrap; /* Cegah wrap di desktop */
        gap: 50px; /* Jarak lebih besar di desktop */
        padding: 40px;
    }
    .proses-image {
        flex: 0 0 40%; /* Gambar mengambil 40% lebar, tidak mengecil/membesar */
        max-width: 40%; /* Pastikan tidak melebihi */
        margin-bottom: 0; /* Hapus margin bawah di desktop */
    }
    .proses-image img {
        /* max-height: 280px; /* Batas tinggi maksimal bisa dipertahankan atau disesuaikan */
        /* Jika menggunakan padding pada .proses-image, box-shadow bisa di sini */
         box-shadow: 0 6px 15px rgba(10, 37, 64, 0.08);
    }
    .proses-icon {
        flex: 0 0 40%; /* Sama seperti .proses-image */
        max-width: 40%;
        margin-bottom: 0;
    }
    .icon-proses {
        font-size: 5rem; /* Sedikit lebih besar di desktop */
    }
    .proses-content {
        flex: 1; /* Teks mengambil sisa ruang */
        text-align: left; /* Teks rata kiri di desktop */
        padding-left: 0; /* Reset padding jika ada dari mobile */
        padding-right: 0;
    }
    .proses-content h3 {
        text-align: left;
    }
    .proses-content p {
        text-align: left;
    }
    /* Aturan untuk selang-seling */
    .proses-item:nth-child(odd) {
        flex-direction: row; /* Ikon kiri, teks kanan */
    }
    .proses-item:nth-child(even) {
        flex-direction: row-reverse; /* Ikon kanan, teks kiri */
    }
    /* Penyesuaian posisi nomor untuk layout desktop */
    .proses-item:nth-child(odd) .proses-number {
        left: 20px;
        top: 20px;
    }
    .proses-item:nth-child(even) .proses-number {
        right: 20px; /* Nomor di kanan untuk item genap */
        top: 20px;
        left: auto; /* Hapus posisi kiri default */
    }
     .proses-item:nth-child(even) .proses-content {
        padding-left: 0; /* Pastikan tidak ada padding yang mengganggu */
    }
}

/* Penyesuaian untuk tablet jika diperlukan (antara mobile dan desktop) */
@media (min-width: 768px) and (max-width: 991px) {
    .proses-item {
        gap: 30px;
    }
    .proses-image {
        flex: 0 0 45%; /* Sedikit lebih besar untuk gambar di tablet */
        max-width: 45%;
    }
    .proses-icon {
        flex: 0 0 45%; /* Sama seperti .proses-image */
        max-width: 45%;
    }
    /* Teks dan nomor bisa mengikuti style desktop atau mobile tergantung preferensi */
    .proses-content {
        text-align: left;
    }
    .proses-content h3 {
        text-align: left;
    }
     .proses-item:nth-child(odd) {
        flex-direction: row;
    }
    .proses-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    .proses-item:nth-child(odd) .proses-number { left: 15px; top: 15px; font-size: 2.5rem; }
    .proses-item:nth-child(even) .proses-number { right: 15px; top: 15px; left: auto; font-size: 2.5rem;}
}

/* === Layanan Section (Styling Kartu) === */
.layanan-cards-container, .portofolio-grid, .testimoni-grid, .mengapa-grid, .keanggotaan-grid,
.portfolio-page-grid, .paket-grid, .kontak-detail-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column for cards on mobile */
    gap: 35px; /* Default gap */
}

.artikel-list-container {
    display: grid;
    grid-template-columns: 1fr; /* Ensure single column for article list */
    gap: 40px; /* Default gap */
}

.kenapa-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr; /* Single column for "Kenapa Kami" list on mobile */
    gap: 30px;
}

.layanan-card {
    background-color: var(--secondary-bg-color); /* Use transparent background */
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}

.layanan-card:hover { transform: translateY(-10px); box-shadow: 0 12px 35px rgba(10, 37, 64, 0.12); }
.layanan-card:hover { box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3); }

/* .layanan-card-img styling ada di bagian perbaikan gambar di atas */

.layanan-card-content { padding: 30px; flex-grow: 1; }

.layanan-card-content h3 { font-size: 1.5rem; color: var(--heading-color); margin-bottom: 15px; }
.layanan-card-content p { font-size: 0.95rem; color: var(--text-color); line-height: 1.7; margin-bottom: 10px; }
.layanan-fitur-list { list-style-type: none; padding-left: 0; font-size: 0.9rem; color: var(--text-color); }
.layanan-fitur-list li { margin-bottom: 8px; padding-left: 25px; position: relative; }
.layanan-fitur-list li::before { content: '✓'; color: var(--primary-accent-color); position: absolute; left: 0; font-weight: bold; }

/* === Portofolio Section (Homepage Styling Kartu) === */
.portofolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
.portofolio-item {
    position: relative; overflow: hidden; border-radius: 12px;
    background-color: var(--secondary-bg-color);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}
.portofolio-item:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(10, 37, 64, 0.12); }
.portofolio-item:hover { box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3); }
.portofolio-item a { display: block; }
/* .portofolio-item .portofolio-img styling ada di bagian perbaikan gambar di atas */
.portofolio-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.3));
    color: white; display: flex; flex-direction: column; justify-content: flex-end;
    align-items: flex-start; opacity: 0; transition: opacity 0.5s ease; padding: 25px;
}
.portofolio-item:hover .portofolio-img { transform: scale(1.1); }
.portofolio-item:hover .portofolio-overlay { opacity: 1; }
.portofolio-text h3 {
    font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 8px; color: #FFFFFF;
    font-weight: 600; transform: translateY(20px); transition: transform 0.4s ease 0.1s;
}
.portofolio-text p {
    font-size: 0.95rem; color: #E0E0E0; margin-bottom: 0; transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}
.portofolio-item:hover .portofolio-text h3,
.portofolio-item:hover .portofolio-text p { transform: translateY(0); }
.secondary-cta {
    background-color: transparent; color: var(--primary-accent-color); border: 2px solid var(--primary-accent-color);
    padding: 14px 32px;
}
.secondary-cta:hover { background-color: var(--primary-accent-color); color: var(--heading-color); border-color: var(--primary-accent-color); }

/* === Testimoni Klien Section === */
.testimoni-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
.testimoni-card {
    background-color: var(--secondary-bg-color); padding: 35px; border-radius: 12px;
    box-shadow: var(--glass-shadow); text-align: left;
    display: flex; flex-direction: column; border-left: 5px solid var(--primary-accent-color);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

/* .testimoni-logo styling ada di bagian perbaikan gambar di atas */

.testimoni-quote {
    font-style: normal; font-size: 1rem; color: var(--text-color); margin-bottom: 20px;
    line-height: 1.8; flex-grow: 1; position: relative; padding-left: 30px;
}
.testimoni-quote::before {
    content: '“'; font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--primary-accent-color);
    position: absolute; left: -5px; top: -10px; opacity: 0.8;
}
.testimoni-client {
    font-weight: 600; font-family: 'Playfair Display', serif; color: var(--heading-color);
    font-size: 0.95rem; align-self: flex-start;
}

/* === Client Logo Carousel Section (PERBAIKAN UNTUK SUSUNAN VERTIKAL) === */
#client-logos {
    background-color: var(--secondary-bg-color);
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.logo-carousel-container {
    width: 100%; overflow: hidden; padding: 30px 0; position: relative;
}
.logo-carousel-container::before, .logo-carousel-container::after {
    content: ""; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2;
}
.logo-carousel-container::before { left: 0; background: linear-gradient(to right, var(--secondary-bg-color), transparent); }
.logo-carousel-container::after { right: 0; background: linear-gradient(to left, var(--secondary-bg-color), transparent); }
.logo-carousel-track {
    display: flex; flex-direction: row; flex-wrap: nowrap; width: fit-content;
    animation: scrollLogos 20s linear infinite; will-change: transform;
}
.logo-carousel-track img {
    height: 45px; width: auto; max-width: 120px; margin: 0 30px; object-fit: contain;
    opacity: 0.7; filter: grayscale(50%);
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease; flex-shrink: 0;
}
.logo-carousel-track:hover img { opacity: 1; filter: grayscale(0%); transform: scale(1.05); }
.logo-carousel-container:hover .logo-carousel-track { animation-play-state: paused; }
@keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === Final Call to Action Sections (PERBAIKAN BERDASARKAN SCREENSHOT) === */
#final-cta, #final-cta-portofolio, #final-cta-paket, #final-cta-proses, #final-cta-tentang {
    background-color: var(--bg-color); color: var(--heading-color);
}
#final-cta .container, #final-cta-portofolio .container, #final-cta-paket .container,
#final-cta-proses .container, #final-cta-tentang .container {
    max-width: 850px; text-align: center;
}
#final-cta .section-title-cta, #final-cta-portofolio .section-title-cta, #final-cta-paket .section-title-cta,
#final-cta-proses .section-title-cta, #final-cta-tentang .section-title-cta {
    font-family: 'Playfair Display', serif; font-size: 2.6rem; color: #FFFFFF;
    margin-bottom: 25px; line-height: 1.3;
}
#final-cta .section-subtitle-cta, #final-cta-portofolio .section-subtitle-cta, #final-cta-paket .section-subtitle-cta,
#final-cta-proses .section-subtitle-cta, #final-cta-tentang .section-subtitle-cta {
    font-size: 1.15rem; color: var(--text-color); margin-bottom: 40px; line-height: 1.8;
}
#final-cta .cta-button, #final-cta-portofolio .cta-button, #final-cta-paket .cta-button,
#final-cta-proses .cta-button, #final-cta-tentang .cta-button {
    background-color: var(--secondary-bg-color); color: var(--heading-color); /* Use glassmorphism background */
}
#final-cta .cta-button:hover, #final-cta-portofolio .cta-button:hover, #final-cta-paket .cta-button:hover,
#final-cta-proses .cta-button:hover, #final-cta-tentang .cta-button:hover {
    background-color: var(--primary-accent-color); color: var(--heading-color); /* Use primary accent on hover */
}
#final-cta-tentang.final-cta-layout .container { max-width: 1140px; } /* Untuk layout CTA Tentang dengan gambar */
#final-cta-tentang.final-cta-layout .cta-content-wrapper {
    display: flex; flex-wrap: wrap; align-items: center; gap: 50px;
}
#final-cta-tentang.final-cta-layout .cta-text-content { flex: 1.2; min-width: 300px; text-align: left; }
#final-cta-tentang.final-cta-layout .cta-image-content { flex: 0.8; min-width: 280px; text-align: center; }
#final-cta-tentang.final-cta-layout .section-title-cta,
#final-cta-tentang.final-cta-layout .section-subtitle-cta { text-align: left; }

/* === Footer === */
#main-footer {
    background-color: #0A192F; color: #A8B2D1; text-align: center;
    padding: 40px 0; margin-top: 0; /* margin-top 0 jika section terakhir adalah CTA full-width */
}
#main-footer p { font-size: 0.9rem; margin-bottom: 10px; }
.footer-links { margin-top: 10px; font-size: 0.85rem; }
.footer-links a { color: #A8B2D1; margin: 0 12px; transition: color 0.3s ease; }
.footer-links a:hover { color: #00D1C5; }

/* === Page Header (for internal pages) === */
.page-header {
    background: linear-gradient(135deg, var(--primary-accent-color) 0%, var(--secondary-accent-color) 100%); color: white;
    padding: 100px 0 60px; text-align: center; margin-top: 70px; /* Sesuaikan dengan tinggi header */
    border-bottom: 5px solid var(--primary-accent-color);
}

/* Khusus untuk halaman legal, aksen beda jika diinginkan */
.legal-page .page-header {
     border-bottom-color: #FFB000; /* Gold accent for legal pages */
}

.page-header h1 { font-size: 2rem; margin-bottom: 10px; color: var(--heading-color); }
.page-header p { font-size: 1rem; color: var(--text-color); max-width: 600px; margin: 0 auto; }

/* === Feature Block (Tentang Kami, Proses Kerja) === */
.feature-block { display: flex; flex-wrap: wrap; align-items: center; gap: 50px; margin-bottom: 40px; }
.feature-block.reverse { flex-direction: row-reverse; }
.feature-text, .feature-image { flex: 1; min-width: 300px; }
.section-title-left {
    font-size: 2rem; color: var(--heading-color); margin-bottom: 20px; text-align: left; position: relative;
}
.section-title-left {
    color: #FFFFFF;
}
.section-title-left::before {
    content: ''; display: block; width: 50px; height: 3px; background-color: var(--primary-accent-color); margin-bottom: 10px;
}
.section-title-left::before {
    background-color: #87CEEB;
}
.feature-text p { font-size: 1rem; line-height: 1.8; color: var(--text-color); margin-bottom: 15px; }
/* .feature-image img styling ada di bagian perbaikan gambar di atas */

/* === Visi & Nilai (Tentang Kami) === */
#visi-nilai .section-title { margin-bottom: 60px; }
.visi-nilai-wrapper { display: flex; flex-direction: column; gap: 60px; }
.visi-content {
    text-align: center; padding: 30px; background-color: var(--secondary-bg-color); border-radius: 12px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}
.sub-section-title.icon-title {
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px;
    color: var(--heading-color);
}
.sub-section-title.icon-title {
    color: #FFFFFF;
}
.sub-section-title.icon-title .title-icon { margin-right: 15px; font-size: 1.8em; color: var(--primary-accent-color); }
.visi-content p { font-size: 1.1rem; line-height: 1.8; max-width: 700px; margin: 0 auto; color: var(--text-color); }
.nilai-feature-block { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 40px; }
.nilai-text-content, .nilai-image-content { flex: 1; min-width: 300px; }
.nilai-feature-block .sub-section-title.icon-title { justify-content: flex-start; }
.nilai-list { list-style: none; padding-left: 0; }
.nilai-list li { margin-bottom: 25px; position: relative; padding-left: 35px; }
.nilai-list li::before {
    content: '✨'; color: var(--secondary-accent-color); position: absolute; left: 0; top: 0; font-size: 1.5em;
}
.nilai-list li strong {
    font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.2rem;
    color: var(--heading-color); display: block; margin-bottom: 8px;
}
.nilai-list li p { font-size: 1rem; line-height: 1.7; color: var(--text-color); }
/* .nilai-image-content img styling ada di bagian perbaikan gambar di atas */

/* === Mengapa Memilih Kami (Tentang Kami) === */
.mengapa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.mengapa-card {
    background-color: var(--secondary-bg-color); padding: 35px 30px; border-radius: 12px;
    box-shadow: var(--glass-shadow); text-align: center;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border 0.3s ease; border-top: 4px solid var(--primary-accent-color);
}
.mengapa-card:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(10, 37, 64, 0.12); }
.mengapa-card:hover { box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3); }
.mengapa-card-icon { font-size: 3rem; color: var(--primary-accent-color); margin-bottom: 20px; line-height: 1; }
.mengapa-card h3 {
    font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.4rem;
    color: var(--heading-color); margin-bottom: 15px;
}
.mengapa-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-color); }

/* === Keanggotaan Resmi (Tentang Kami) === */
#keanggotaan-resmi {
    background-color: var(--bg-color);
    transition: background-color 0.3s ease;
}
.keanggotaan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
.keanggotaan-item {
    display: flex; align-items: center; gap: 25px; background-color: var(--secondary-bg-color);
    padding: 30px; border-radius: 12px; box-shadow: var(--glass-shadow);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    transition: box-shadow 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}
.keanggotaan-item:hover { box-shadow: 0 10px 30px rgba(10, 37, 64, 0.1); }
.keanggotaan-item:hover { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }
/* .keanggotaan-logo styling ada di bagian perbaikan gambar di atas */
.keanggotaan-info h4 {
    font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.2rem;
    color: var(--heading-color); margin-bottom: 8px;
}
.keanggotaan-info p { font-size: 0.9rem; color: var(--text-color); line-height: 1.6; font-family: 'Montserrat', sans-serif; }

/* === Halaman Contoh Web (Portofolio Lengkap - Styling Kartu) === */
.portfolio-page-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; }
.portfolio-page-card {
    background-color: var(--secondary-bg-color);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}
.portfolio-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(10, 37, 64, 0.12);
}
.portfolio-page-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}
.portfolio-page-card:hover .portfolio-page-img {
    transform: scale(1.05);
}
/* .portfolio-page-img-container & .portfolio-page-img styling ada di bagian perbaikan gambar di atas */
.portfolio-page-content {
    padding: 25px; text-align: center; flex-grow: 1;
    display: flex; flex-direction: column; justify-content: space-between;
}
.portfolio-page-content h3 { font-size: 1.45rem; color: var(--heading-color); margin-bottom: 10px; }
.portfolio-page-content p { font-size: 0.95rem; color: var(--text-color); line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.portfolio-visit-button {
    display: inline-block; background-color: var(--primary-accent-color); color: var(--heading-color); padding: 12px 28px;
    font-size: 0.9rem; font-weight: 600; font-family: 'Montserrat', sans-serif; border-radius: 6px;
    transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px;
}
.portfolio-visit-button:hover { background-color: #FFB000; color: #0A2540; }

/* === Halaman Artikel (List & Detail) === */
.artikel-list-container { display: grid; grid-template-columns: 1fr; gap: 40px; }
.artikel-item {
    display: flex;
    flex-direction: column; /* Adjusted for mobile-first */
    flex-wrap: wrap;
    gap: 0; /* Adjusted for mobile-first */
    background-color: var(--secondary-bg-color); padding: 15px; /* Adjusted for mobile-first */
    border-radius: 12px; box-shadow: var(--card-shadow);
    overflow: hidden; transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.artikel-item:hover { box-shadow: 0 12px 35px rgba(10, 37, 64, 0.1); }
.artikel-item:hover { box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25); }
/* .artikel-item-image & img styling ada di bagian perbaikan gambar di atas */
.artikel-item-content {
    flex: 1; /* Adjusted for mobile-first */
    min-width: 0; /* Adjusted for mobile-first */
    width: 100%; /* Adjusted for mobile-first */
    word-break: break-word; /* Adjusted for mobile-first */
}
.artikel-item-title { font-size: 1.6rem; /* Adjusted for mobile-first */ line-height: 1.35; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.artikel-item-title a { color: var(--heading-color); }
.artikel-item-title a:hover { color: var(--primary-accent-color); }
.artikel-item-excerpt { font-size: 0.95rem; color: var(--text-color); line-height: 1.7; margin-bottom: 15px; }
.artikel-read-more {
    display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 500;
    color: var(--primary-accent-color); margin-bottom: 15px; font-size: 0.9rem;
}
.artikel-read-more:hover { color: var(--secondary-accent-color); text-decoration: underline; }
.artikel-item-meta { font-size: 0.85rem; color: #777777; font-family: 'Montserrat', sans-serif; }
.artikel-item-meta { color: #888; }
.artikel-item-image {
    flex-basis: auto; /* Adjusted for mobile-first */
    min-width: 0; /* Adjusted for mobile-first */
    max-width: 100%;
    width: 100%; /* Adjusted for mobile-first */
    height: auto; /* Adjusted for mobile-first */
    text-align: center; /* Adjusted for mobile-first */
    overflow: hidden;
    border-radius: 8px;
    align-self: center;
}
.artikel-item-image img {
    width: 100%; /* Adjusted for mobile-first */
    height: auto; /* Adjusted for mobile-first */
    object-fit: cover;
    display: block;
    margin: 0 auto; /* Adjusted for mobile-first */
}
.narrow-container { max-width: 800px; margin-left: auto; margin-right: auto; }
.artikel-header { margin-bottom: 30px; text-align: center; border-bottom: 1px solid var(--border-color); padding-top: 15px; padding-bottom: 0px; }
.artikel-title { font-size: 2.2rem; /* Adjusted for mobile-first */ line-height: 1.25; color: var(--heading-color); margin-bottom: 15px; font-weight: 700; font-family: 'Playfair Display', serif; }
.artikel-meta { font-size: 0.9rem; color: #666666; font-family: 'Montserrat', sans-serif; }
.dark-mode .artikel-meta { color: #aaa; }
.artikel-meta strong { color: var(--heading-color); }
.artikel-main-image { margin-bottom: 35px; text-align: center; }
/* .artikel-main-image img styling ada di bagian perbaikan gambar di atas */
.artikel-main-image figcaption { font-size: 0.85rem; color: #777777; margin-top: 12px; font-style: italic; font-family: 'Montserrat', sans-serif; }
.artikel-main-image figcaption { color: #999; }
.artikel-content { font-size: 1.05rem; line-height: 1.85; color: var(--text-color); font-family: 'Montserrat', sans-serif; }
.artikel-content h2 {
    font-size: 1.6rem; /* Adjusted for mobile-first */ color: var(--heading-color); margin-top: 45px; margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-accent-color); padding-bottom: 10px; font-weight: 600;
}
.artikel-content h3 { font-size: 1.6rem; color: var(--heading-color); margin-top: 35px; margin-bottom: 15px; font-weight: 600; }
.artikel-content p { margin-bottom: 20px; }
.artikel-content ul { list-style: none; margin-left: 0; padding-left: 0; margin-bottom: 20px; }
.artikel-content ul li { margin-bottom: 12px; line-height: 1.7; padding-left: 25px; position: relative; }
.artikel-content ul li::before { content: '•'; color: var(--primary-accent-color); position: absolute; left: 0; font-weight: bold; font-size: 1.2em; }
.artikel-content strong { font-weight: 600; color: var(--heading-color); }
.artikel-content a { color: var(--primary-accent-color); text-decoration: underline; }
.artikel-content a:hover { color: var(--secondary-accent-color); }
.artikel-nav-links { margin-top: 50px; padding-top: 25px; border-top: 1px solid var(--border-color); text-align: center; }
.artikel-nav-links a {
    font-family: 'Montserrat', sans-serif; font-weight: 500; color: var(--primary-accent-color);
    margin: 0 15px; font-size: 0.95rem;
}
.artikel-nav-links a:hover { text-decoration: underline; color: var(--secondary-accent-color); }

/* === Halaman Kontak === */
.kontak-info-wrapper { max-width: 900px; margin: 0 auto; }
/* .kontak-header-image & img styling ada di bagian perbaikan gambar di atas */
.kontak-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-bottom: 40px; }
.info-item {
    display: flex; align-items: flex-start; gap: 20px; padding: 25px; background-color: var(--secondary-bg-color);
    border-radius: 12px; box-shadow: var(--glass-shadow);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}
.icon-kontak { font-size: 1.8em; color: var(--primary-accent-color); width: 30px; text-align: center; margin-top: 3px; }
.info-text h4 { font-size: 1.25rem; color: var(--heading-color); margin-bottom: 8px; }
.info-text p { margin-bottom: 5px; font-size: 1rem; line-height: 1.6; color: var(--text-color); word-break: break-word; }
.info-text p a { color: var(--primary-accent-color); }
.info-text p a:hover { color: var(--secondary-accent-color); text-decoration: underline; }
.centered-social { text-align: center; margin-top: 40px; }
.centered-social h4 { font-size: 1.25rem; color: var(--heading-color); margin-bottom: 20px; }
.centered-social a {
    color: var(--heading-color); font-size: 1.8em; margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.centered-social a:hover { color: var(--primary-accent-color); transform: translateY(-3px); }
#peta-lokasi .section-title { margin-bottom: 40px; text-align: center; }
.map-container {
    position: relative; padding-bottom: 50%; height: 0; overflow: hidden;
    border-radius: 12px; box-shadow: var(--card-shadow);
    transition: box-shadow 0.3s ease;
}
.map-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0; }

/* === Halaman Paket Website === */
.paket-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 35px; align-items: stretch; }
.paket-card {
    background-color: var(--secondary-bg-color); border-radius: 12px; box-shadow: var(--glass-shadow);
    overflow: hidden; display: flex; flex-direction: column; border: var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.paket-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(10, 37, 64, 0.15); }
.paket-card:hover { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); }

.paket-card.popular { box-shadow: 0 12px 35px rgba(0, 189, 204, 0.25); }
.popular-badge {
    position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
    background-color: var(--primary-accent-color); color: var(--heading-color); padding: 8px 20px; font-size: 0.8rem;
    font-weight: 700; font-family: 'Montserrat', sans-serif; border-radius: 0 0 10px 10px;
    z-index: 2; box-shadow: 0 3px 8px rgba(0,0,0,0.15); text-transform: uppercase; letter-spacing: 0.5px;
}
/* .paket-card-img styling ada di bagian perbaikan gambar di atas */
.paket-card-content { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; text-align: center; }
.paket-nama { font-size: 1.8rem; color: var(--heading-color); margin-bottom: 8px; font-weight: 700; font-family: 'Playfair Display', serif; }
.paket-slogan {
    font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 1rem;
    color: var(--text-color); margin-bottom: 20px; font-style: italic;
}
.paket-cocok { font-size: 0.9rem; color: var(--text-color); margin-bottom: 25px; line-height: 1.6; }
.paket-cocok strong { color: var(--heading-color); font-weight: 600; }
.paket-card-content h4 {
    font-size: 1.15rem; color: var(--heading-color); margin-bottom: 15px; text-align: left;
    border-top: 1px solid var(--border-color); padding-top: 25px; font-weight: 600;
}
.paket-fitur {
    list-style: none; padding-left: 0; margin-bottom: 30px; text-align: left;
    font-size: 0.95rem; line-height: 1.8; color: var(--text-color); flex-grow: 1;
}
.paket-fitur li { display: flex; align-items: flex-start; margin-bottom: 12px; gap: 12px; }
.paket-fitur li i { color: var(--primary-accent-color); width: 20px; text-align: center; margin-top: 4px; font-size: 1.1em; }
.paket-harga {
    border-top: 1px solid var(--border-color); padding-top: 25px; margin-bottom: 30px;
    display: flex; justify-content: space-around; gap: 15px; flex-wrap: wrap;
}
.harga-label {
    font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 0.75rem;
    color: var(--text-color); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 5px;
}
.harga-nilai { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.6rem; color: var(--heading-color); }
.paket-cta { width: 100%; padding: 14px; font-size: 1rem; background-color: var(--secondary-bg-color); color: var(--heading-color); border: var(--glass-border); backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur)); box-shadow: var(--glass-shadow); }
.paket-cta:hover { background-color: var(--primary-accent-color); color: var(--heading-color); }
.paket-card.popular .paket-cta { background-color: var(--primary-accent-color); color: var(--heading-color); }
.paket-card.popular .paket-cta:hover { background-color: var(--secondary-accent-color); color: var(--heading-color); }

/* === Halaman Paket - Section "Kenapa Kami" (REVISI KREATIF) === */
.kenapa-list {
    list-style: none;
    padding-left: 0;
    display: grid; /* Default: 1 kolom di mobile */
    grid-template-columns: repeat(2, 1fr); /* 2 kolom di tablet dan desktop */
    gap: 30px;
}
.kenapa-list li {
    display: flex;
    align-items: center; /* Sejajarkan ikon dan teks secara vertikal */
    gap: 20px; /* Jarak antara ikon dan teks */
    background-color: var(--secondary-bg-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}
.kenapa-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.1);
}
.kenapa-list li:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); }
.kenapa-list .icon-kenapa {
    width: 55px;
    height: 55px;
    background-color: var(--primary-accent-color);
    opacity: 0.1; /* Make it subtle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-accent-color); /* Warna teal utama untuk ikon */
    flex-shrink: 0;
}
.kenapa-list li p { font-family: 'Montserrat', sans-serif; }

/* === Halaman Legal (Kebijakan & Syarat) === */
/* .legal-page .page-header styling ada di section .page-header */
.legal-content { font-size: 1rem; line-height: 1.8; color: var(--text-color); }
.legal-content .last-updated { font-size: 0.9rem; color: var(--text-color); margin-bottom: 30px; font-style: italic; }
.legal-content h2 {
    font-size: 1.7rem; color: var(--heading-color); margin-top: 40px; margin-bottom: 18px;
    border-bottom: 1px solid var(--border-color); padding-bottom: 10px; font-weight: 600;
}
.legal-content h2:first-of-type { margin-top: 20px; }
.legal-content p { margin-bottom: 18px; }
.legal-content ul { list-style: disc; margin-left: 25px; margin-bottom: 18px; padding-left: 10px; }
.legal-content ul ul { list-style: circle; margin-top: 10px; }
.legal-content ul li { margin-bottom: 10px; }
.legal-content strong { font-weight: 600; color: var(--heading-color); }
.legal-content a { color: var(--primary-accent-color); text-decoration: underline; }
.legal-content a:hover { color: var(--secondary-accent-color); }

/* === Tombol WhatsApp Mengambang (PERBAIKAN BERDASARKAN SCREENSHOT) === */
.floating-wa-button {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent; border-radius: 8px;
    width: auto; height: auto; padding: 0; display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.floating-wa-button:hover {
    transform: scale(1.03); box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    background-color: transparent !important; transform: scale(1.03) rotate(0deg) !important;
}
.floating-wa-button .wa-icon-local {
    max-width: 100px; /* Adjusted for mobile-first */ width: 100%; height: auto; display: block; border-radius: 8px;
}

/* === Scrollbar Styling (Optional) === */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #F0F4F8; }
::-webkit-scrollbar-thumb { background: #A8B2D1; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #828FA9; }

/* === Tombol Kembali ke Atas === */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 180px; /* Sesuaikan posisi agar tidak tumpang tindih dengan tombol WA */
    background-color: var(--primary-accent-color);
    color: #0A2540; /* Warna ikon panah */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    z-index: 998; /* Di bawah tombol WA */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#back-to-top:hover {
    background-color: var(--secondary-accent-color);
    color: #0A2540; /* Warna ikon panah saat hover */
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* --- Typography Adjustments for Larger Screens (Mobile-First Enhancement) --- */
/* Tablet screens */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; margin-bottom: 1.25rem; }
    h2 { font-size: 2rem; margin-bottom: 1.15rem; }
    .section-title { font-size: 2.2em; margin-bottom: 40px; }
    .section-subtitle { font-size: 1.1rem; margin: 0 auto 40px auto; }

    /* Adjust layout for artikel list */
    .artikel-item {
        flex-direction: row; /* Tampilkan gambar dan teks sejajar */
        align-items: flex-start; /* Sejajarkan ke atas */
    }
    .artikel-item-image {
        flex-basis: 200px; /* Tetapkan lebar tetap untuk gambar */
        max-width: 200px;  /* Batasi lebar maksimal */
        margin-bottom: 0;  /* Hapus margin bawah karena sekarang sejajar */
        align-self: flex-start; /* Sejajarkan gambar ke atas */
    }
    .artikel-item-content {
        flex-grow: 1; /* Teks mengambil sisa ruang */
        padding-left: 20px; /* Beri jarak antara gambar dan teks */
    }

    /* Adjust layout for feature blocks */
    .feature-block, .feature-block.reverse { flex-direction: column; }
    .feature-image { order: -1; margin-bottom: 30px; }
    .section-title-left { text-align: center; }
    .section-title-left::before { margin-left: auto; margin-right: auto; }
    .feature-text { text-align: center; }

    /* Adjust layout for proses kerja (if not already handled by 992px rule) */
    .proses-item, .proses-item:nth-child(even) { flex-direction: column; }
    .proses-image { max-width: 100%; margin-bottom: 20px; }
    .proses-icon { max-width: 100%; margin-bottom: 20px; }
    .icon-proses { font-size: 3rem; }
    .proses-content { padding: 0; text-align: left; }
    .proses-number { font-size: 3rem; opacity: 0.1; }

    /* Adjust layout for kenapa list */
    .kenapa-list { grid-template-columns: 1fr; } /* 1 kolom di tablet */
}

/* Laptop and larger screens */
@media (min-width: 992px) {
    h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
    h2 { font-size: 2.2rem; margin-bottom: 1.25rem; }
    .section-title { font-size: 2.5em; margin-bottom: 60px; }
    .section-subtitle { font-size: 1.2rem; margin: 0 auto 60px auto; }

    /* Restore desktop layout for feature blocks */
    .feature-block, .feature-block.reverse { flex-direction: row; }
    .feature-image { order: initial; margin-bottom: 0; }
    .section-title-left { text-align: left; }
    .section-title-left::before { margin-left: 0; margin-right: 0; }
    .feature-text { text-align: left; }

    /* Restore desktop layout for proses kerja */
    .proses-item { flex-wrap: nowrap; gap: 50px; padding: 40px; }
    .proses-image { flex: 0 0 40%; max-width: 40%; margin-bottom: 0; }
    .proses-image img { box-shadow: 0 6px 15px rgba(10, 37, 64, 0.08); }
    .proses-icon { flex: 0 0 40%; max-width: 40%; margin-bottom: 0; }
    .icon-proses { font-size: 5rem; }
    .proses-content { flex: 1; text-align: left; padding-left: 0; padding-right: 0; }
    .proses-content h3 { text-align: left; }
    .proses-content p { text-align: left; }
    .proses-item:nth-child(odd) { flex-direction: row; }
    .proses-item:nth-child(even) { flex-direction: row-reverse; }
    .proses-item:nth-child(odd) .proses-number { left: 20px; top: 20px; }
    .proses-item:nth-child(even) .proses-number { right: 20px; top: 20px; left: auto; }
    .proses-item:nth-child(even) .proses-content { padding-left: 0; }

    /* Restore desktop layout for kenapa list */
    .kenapa-list { grid-template-columns: repeat(2, 1fr); } /* 2 kolom di desktop */
}

/* Large Desktop screens */
@media (min-width: 1200px) {
    h1 { font-size: 3.2rem; margin-bottom: 1.8rem; }
    h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
    .section-title { font-size: 2.8em; margin-bottom: 70px; }
    .section-subtitle { font-size: 1.3rem; margin: 0 auto 70px auto; }

    /* Hero section adjustments for larger screens */
    #hero-new .hero-title { font-size: 2.8rem; }
    #hero-new .hero-description { font-size: 1.1rem; }
    .section-title { font-size: 2rem; }
    #final-cta .section-title-cta, #final-cta-portofolio .section-title-cta,
    #final-cta-paket .section-title-cta, #final-cta-proses .section-title-cta,
    #final-cta-tentang.final-cta-layout .section-title-cta,
    #final-cta-tentang .section-title-cta { font-size: 2.2rem; }
    .page-header h1 { font-size: 2.5rem; }
}

/* Header Section - Hero */
.header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    perspective: 1000px;
    padding-top: 70px; /* Account for fixed header */
    z-index: 1; /* Pastikan hero section tetap di atas video background */
}

.hero-glass {
    background: var(--secondary-bg-color);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 40px); /* Responsive padding */
    max-width: 90%; /* Increased from fixed 600px to percentage-based */
    width: min(650px, 90vw); /* Better approach: use minimum of fixed width or viewport percentage */
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    margin-left: auto;
    margin-right: auto;
    color: var(--heading-color);
    position: relative; /* Untuk memungkinkan pengaturan z-index */
    z-index: 2; /* Pastikan konten hero tetap di atas video */
}

.hero-glass:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(31, 38, 135, 0.25);
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3.5rem); /* Responsive font size: minimum 1.8rem, ideal 4vw, maximum 3.5rem */
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(168, 218, 220, 0.5);
    line-height: 1.3; /* Adjusted line-height for better text rendering */
}
.hero-title {
    color: #fff;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Cards Section */
.cards-section {
    padding: 100px 0;
    position: relative;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.glass-card {
    background: var(--secondary-bg-color);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    border: var(--glass-border);
    padding: 40px;
    transition: all var(--animation-duration) var(--animation-easing);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: var(--glass-shadow);
    color: var(--text-color);
}
.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(31, 38, 135, 0.25);
}
.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}
.card-description {
    color: var(--text-color);
    line-height: 1.6;
}
.legendary-button {
    width: 100%;
    padding: 18px 30px;
    background: var(--primary-accent-color);
    border: none;
    border-radius: 15px;
    color: var(--heading-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block; /* Moved from media query */
    width: fit-content; /* Moved from media query */
    max-width: 280px; /* Moved from media query */
    margin: 0 auto; /* Moved from media query */
}
.legendary-button:hover {
    background: var(--secondary-accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(168, 218, 220, 0.4);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 20px;
}
.section-title {
    color: #fff;
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}
.section-subtitle {
    color: rgba(224, 224, 224, 0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

/* Responsive adjustments for different screen sizes */
/* Tablet screens (768px - 991px) - Sudah ditangani di atas */
/* Laptop screens (992px - 1199px) - Sudah ditangani di atas */
/* Large desktop screens (1200px+) - Sudah ditangani di atas */

/* Very small screens (e.g., 390px and below) */
@media (max-width: 390px) {
    .hero-glass {
        padding: 30px 10px;
    }
    .legendary-button {
        font-size: 1rem; /* Reduce font size */
        padding: 16px 20px; /* Reduce padding */
    }
    /* Adjust font sizes if needed */
    .hero-title { font-size: clamp(1.6rem, 4vw, 2.5rem); }
    .hero-subtitle { font-size: 1.1rem; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    .section-title { font-size: 1.6em; }
    /* Adjust grid gaps */
    .layanan-cards-container, .portofolio-grid, .testimoni-grid, .mengapa-grid, .keanggotaan-grid,
    .portfolio-page-grid, .paket-grid, .kontak-detail-grid {
        gap: 20px;
    }
    .cards-grid { gap: 25px; }
    .section-padding { padding: 50px 0; }
    .section-padding-bg { padding: 50px 0; }
    /* Adjust artikel item */
    .artikel-item { padding: 10px; }
    .artikel-item-image { flex-basis: 100px; max-width: 100px; }
    .artikel-item-content { padding-left: 10px; }
    .artikel-item-title { font-size: 1.4rem; }
    .artikel-item-excerpt { font-size: 0.9rem; }
    /* Adjust proses item */
    .proses-item { gap: 20px; padding: 10px; }
    .proses-image img { max-height: 200px; }
    .proses-content h3 { font-size: 1.5rem; }
    .proses-content p { font-size: 0.9rem; }
    /* Adjust paket card */
    .paket-card { padding: 15px; }
    .paket-card-content { padding: 20px; }
    .paket-nama { font-size: 1.5rem; }
    .paket-slogan { font-size: 0.9rem; }
    .paket-cocok { font-size: 0.85rem; }
    .paket-fitur { font-size: 0.9rem; }
    .harga-nilai { font-size: 1.4rem; }
    .paket-cta { padding: 12px; font-size: 0.9rem; }
    /* Adjust info item */
    .info-item { padding: 15px; gap: 10px; }
    .icon-kontak { font-size: 1.5em; width: 25px; }
    .info-text h4 { font-size: 1.1rem; }
    .info-text p { font-size: 0.9rem; }
    /* Adjust footer */
    #main-footer { padding: 25px 0; }
    #main-footer p { font-size: 0.8rem; }
    .footer-links { font-size: 0.75rem; }
    .footer-links a { margin: 0 8px; }
    /* Adjust final CTA */
    #final-cta .section-title-cta, #final-cta-portofolio .section-title-cta,
    #final-cta-paket .section-title-cta, #final-cta-proses .section-title-cta,
    #final-cta-tentang.final-cta-layout .section-title-cta,
    #final-cta-tentang .section-title-cta { font-size: 1.8rem; }
    #final-cta .section-subtitle-cta, #final-cta-portofolio .section-subtitle-cta,
    #final-cta-paket .section-subtitle-cta, #final-cta-proses .section-subtitle-cta,
    #final-cta-tentang .section-subtitle-cta { font-size: 1rem; }
    /* Adjust page header */
    .page-header { padding: 70px 0 40px; }
    .page-header h1 { font-size: 1.8rem; }
    .page-header p { font-size: 0.9rem; }
    /* Adjust feature block */
    .feature-block { gap: 25px; }
    .feature-text, .feature-image { min-width: 250px; }
    .section-title-left { font-size: 1.6rem; }
    .feature-text p { font-size: 0.95rem; }
    /* Adjust kenapa list */
    .kenapa-list { gap: 20px; }
    .mengaha-card { padding: 25px 20px; }
    .mengaha-card h3 { font-size: 1.2rem; }
    .mengaha-card p { font-size: 0.9rem; }
    /* Adjust testimoni */
    .testimoni-card { padding: 25px; }
    .testimoni-quote { font-size: 0.95rem; }
    .testimoni-client { font-size: 0.9rem; }
    /* Adjust portofolio item */
    .portofolio-item { padding: 10px; }
    .portofolio-overlay { padding: 15px; }
    .portofolio-text h3 { font-size: 1.4rem; }
    .portofolio-text p { font-size: 0.9rem; }
    /* Adjust card section */
    .glass-card { padding: 25px; }
    .card-title { font-size: 1.3rem; }
    .card-description { font-size: 0.95rem; }
    .legendary-button { padding: 14px 20px; font-size: 0.95rem; max-width: 220px; }
    /* Adjust header nav */
    #main-header { padding: 10px 0; }
    #logo-bds { height: 55px; }
    #main-menu li a { font-size: 0.85rem; padding: 5px 0; }
    .menu-toggle { font-size: 0.8rem; padding: 8px; }
    /* Adjust scroll button */
    #back-to-top { width: 40px; height: 40px; font-size: 1.2rem; right: 160px; }
    /* Adjust floating WA */
    .floating-wa-button { bottom: 20px; right: 20px; }
    .floating-wa-button .wa-icon-local { max-width: 80px; }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--secondary-bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-accent-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-accent-color);
}

/* Portfolio Card Link Fix */
.portfolio-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}
.portfolio-card-link .glass-card {
    width: 100%;
}
.portfolio-card-link img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* Testimonial Card Fix */
.testimonial-card {
    text-align: center;
    transition: all var(--animation-duration) var(--animation-easing);
    cursor: pointer;
    background: var(--secondary-bg-color);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    border-left: 5px solid var(--primary-accent-color);
}
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.2);
}
.testimonial-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.testimonial-card p {
    color: #E0E0E0;
}

/* Footer Styles */
#main-footer {
    background-color: #0A192F;
    color: #A8B2D1;
    text-align: center;
    padding: 40px 0;
    margin-top: 0;
}
#main-footer p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.footer-links {
    margin-top: 10px;
    font-size: 0.85rem;
}
.footer-links a {
    color: #A8B2D1;
    margin: 0 12px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #00D1C5;
}

/* === Contact Form Styling === */
.form-container {
    width: 100%;
    max-width: 750px;
    margin: 40px auto 0 auto;
}

.glass-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--secondary-bg-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 25px;
    border: var(--glass-border);
    padding: 40px;
    box-shadow: var(--glass-shadow);
}

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

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--heading-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent-color);
    box-shadow: 0 0 10px rgba(var(--primary-accent-color-rgb), 0.3);
}

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

#submit-button {
    margin-top: 10px;
    width: 100%; /* Make button full width of the form */
}

#form-status {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: 500;
    display: none; /* Hidden by default */
}

#form-status.success {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    display: block;
}

#form-status.error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    display: block;
}
