:root {
    --deep-1: #2e1065;
    --deep-2: #6d28d9;
    --deep-3: #a855f7;
    --deep-4: #818cf8;
    --deep-6: #e0e7ff;
    --text-light: #ffffff;
    --bg-main: #f9f9ff;
    --text-main: #d3cde1;
    --text-on-bg: #b7b1c5; /* Diperbarui agar lebih terang */
    --form-bg: #ffffff;
    --input-border: #e0e7ff;
    --input-focus-border: var(--deep-2);
    --button-bg: var(--deep-2);
    --button-hover-bg: var(--deep-3);
    --info-box-bg: var(--deep-1);
    --info-text-color: var(--text-light);
    --icon-circle-bg: rgba(255, 255, 255, 0.1);
    --social-icon-bg: rgba(255, 255, 255, 0.1);
    --social-icon-hover-bg: rgba(255, 255, 255, 0.2);
    --light-purple: #f0f0ff; /* Tambahan untuk badge dan background hero */
    --hero-bg-color: #6652a0; /* Warna ungu gelap untuk hero section */
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--hero-bg-color);
    color: var(--deep-1);
    font-size: 16px;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reusable Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--deep-2);
    color: var(--text-light);
    border: 2px solid var(--deep-2);
}

.btn-primary:hover {
    background-color: var(--deep-3);
    border-color: var(--deep-3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--deep-2);
    border: 2px solid var(--deep-2);
}

.btn-secondary:hover {
    background-color: var(--deep-2);
    color: var(--text-light);
}

/* Header */
.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    filter: brightness(0) invert(1); /* Ubah warna logo menjadi putih */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light); /* Ubah warna teks navigasi menjadi putih */
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 101;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light); /* Ubah warna menu toggle menjadi putih */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background-color: var(--hero-bg-color); /* Warna latar hero section */
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Menambahkan jarak antar elemen teks */
}

.badge {
    background-color: var(--deep-2);
    color: var(--text-light);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    width: fit-content;
    font-size: 0.875rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    color: var(--text-light); /* Mengubah warna heading menjadi putih */
}

.lead-text,
.partner-info,
.pricing-info {
    font-size: 1rem;
    color: var(--text-main); /* Mengubah warna teks menjadi putih keunguan */
    margin: 0;
    line-height: 1.5;
}

.pricing-info b,
.partner-info b {
    color: var(--text-light); /* Menegaskan teks bold menjadi putih */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light); /* Ubah warna tombol Get Your Quote menjadi putih */
    border: 2px solid var(--text-light); /* Ubah border tombol Get Your Quote menjadi putih */
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--deep-2);
}

.hero-image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Mengatur gambar agar berada di dasar */
    position: relative;
    z-index: 1;
    padding-top: 5rem;
}

.hero-image-content::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--light-purple) 0%, transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-image-content img {
    max-height: 600px;
    object-fit: contain;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .header-right {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--hero-bg-color);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease-in-out;
        z-index: 99;
    }

    .header-right.active {
        display: flex;
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        width: 100%;
        gap: 2rem;
    }

    .nav-links a {
        color: var(--text-light);
        
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: center; /* Properti ini yang membuat tombol berada di tengah */
    }
    
    .btn {
        width: 80%;
    }

    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle span {
        background-color: var(--text-light);
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding-top: 100px;
        background-color: var(--hero-bg-color);
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1rem; /* Mengurangi jarak antar elemen */
        padding: 1rem;
    }

    /* Perubahan untuk judul dan sub-judul mobile */
    h1 {
        display: block;
        font-size: 1.5rem; /* Ukuran judul dikecilkan */
        line-height: 1.2;
        font-weight: 700;
        color: var(--text-light);
    }
    
    .lead-text {
        display: block;
        font-size: 0.8rem; /* Sub-judul dikecilkan lagi */
        color: var(--text-main);
        line-height: 1.5;
        margin-top: -1rem;
    }

    .pricing-info {
        display: block; /* Menampilkan elemen ini */
        font-size: 0.9rem; /* Mengatur ukuran font */
        color: var(--text-light); /* Mengatur warna teks menjadi putih */
        margin-top: -1rem;
    }

    /* Teks dan elemen lain disembunyikan kecuali yang dibutuhkan */
    .badge,
    .partner-info {
        display: none;
    }

    /* Menjadikan tombol bersebelahan (horizontal) */
    .hero-buttons {
        display: flex;
        flex-direction: row; 
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 0.5rem; 
    }
    
    .hero-buttons .btn {
        width: 45%; /* Mengurangi lebar tombol */
        padding: 0.5rem 1rem; /* Mengurangi padding tombol */
        font-size: 0.8rem; /* Mengurangi ukuran teks tombol */
    }

    /* Posisikan gambar di bagian atas dan tumpuk dengan tombol */
    .hero-image-content {
        order: 1; /* Pindahkan gambar ke atas */
        width: 80%; /* Mengatur lebar agar tidak terlalu besar */
        margin-top: -3rem; /* Mengatur margin negatif untuk menumpuk gambar */
        position: relative;
        z-index: 1; /* Pastikan gambar berada di atas konten lain */
    }
    
    .hero-image-content img {
        width: 100%;
        height: auto;
    }
}



/* --- Solutions Section --- */
.solutions-section {
    padding: 2rem 0;
    background-color: var(--bg-main);
    color: var(--deep-1);
}

.solutions-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding-bottom: 3rem;
    flex-wrap: wrap;
}

.solutions-left {
    flex: 1;
    max-width: 500px;
}

.solutions-left .badge-small {
    background-color: transparent;
    color: var(--deep-2);
    font-weight: 600;
    padding: 0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.solutions-left h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--deep-1);
}

.solutions-left h2 strong {
    font-weight: 700;
    color: var(--deep-1);
}

.solutions-left p {
    font-size: 1rem;
    color: var(--text-on-bg);
    margin-bottom: 1.5rem;
}

.solutions-left .btn {
    padding: 0.75rem 2rem;
}

.cta-bottom {
    display: none; 
}

.solutions-left .checklist {
    display: flex;
    flex-wrap: wrap; 
    gap: 1rem; 
    margin: 1.5rem 0;
}

.solutions-left .checklist span {
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
    color: var(--text-on-bg);
    font-size: 0.9rem;
}

.solutions-left .checklist .icon-check {
    color: var(--deep-2);
}

.solutions-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem; 
    transform: translateY(2rem);
}

.solutions-right .bg-decor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: auto;
    max-width: 600px;
    opacity: 1;
    z-index: 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.solution-card {
    background-color: var(--form-bg);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.solution-card .card-icon {
    font-size: 2.5rem;
    color: var(--deep-2);
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-1);
    margin-bottom: 0.5rem;
}

.solution-card p {
    font-size: 0.9rem;
    color: var(--text-on-bg);
    line-height: 1.5;
}

/* --- Mobile Responsive (Solutions) --- */
@media (max-width: 992px) {
    .solutions-section .container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .solutions-left {
        max-width: 100%;
    }
    
    .solutions-left h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .solutions-left p {
        text-align: center;
        font-size: 0.9rem;
    }

    .solutions-left-bottom p {
        display: none; 
    }
    
    .solutions-left .cta-left {
        display: none; 
    }

    .solutions-left .checklist {
        justify-content: center;
        margin-top: 1rem;
        gap: 0rem; 
    }

    .cta-bottom {
        display: block; 
        width: 80%;
        font-size: 0.9rem;
    }

    .solutions-right {
        padding: 0;
        transform: translateY(0);
    }

    .solutions-right .bg-decor {
        display: none;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .solution-card {
        text-align: center;
        padding: 1.25rem;
    }
    
    .solution-card .card-icon {
        margin: 0 auto 0.75rem;
    }
}


/* --- How It Works Section --- */
.how-it-works-section {
    background-color: #f7f3ff; 
    padding: 6rem 0;
    text-align: center;
}

.how-it-works-header {
    margin-bottom: 4rem;
}

.how-it-works-header .how-it-works-badge {
    color: #4b2a8d;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.how-it-works-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #4b2a8d;
    margin-top: 0;
}

.how-it-works-header h2 span {
    font-size: 5rem;
    display: block; /* Posisikan angka 4 di baris terpisah */
    line-height: 1;
}

.how-it-works-grid {
    display: flex;
    justify-content: center; /* Gunakan center agar tidak terlalu melebar */
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    padding: 0 2rem;
}

.how-it-works-grid::before {
    content: "";
    position: absolute;
    top: 55px; /* Sesuaikan posisi garis dengan icon */
    left: 10%; /* Sesuaikan posisi awal garis */
    right: 10%; /* Sesuaikan posisi akhir garis */
    height: 2px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="2" viewBox="0 0 100% 2"><line x1="0" y1="1" x2="100%" y2="1" stroke="%239474e6" stroke-dasharray="8, 8" /></svg>') repeat-x;
    background-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
}




.step-card {
    position: relative;
    text-align: center;
    max-width: 250px;
    flex: 1;
    z-index: 1;
}

.step-card .step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem auto;
    background-color: #fff;
    border: 1px solid #c9b1f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-card .step-icon img {
    width: 60px;
    height: 60px;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4b2a8d;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: #6a6a6a; /* Adjusted to a darker grey for better readability */
}

/* --- Mobile Responsive (How It Works) --- */
@media (max-width: 992px) {
    .how-it-works-section {
        padding: 3rem 0;
    }

    .how-it-works-header h2 {
        font-size: 1.5rem;
    }

    .how-it-works-header h2 span {
        font-size: 3rem;
    }

    .how-it-works-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0;
    }

    .how-it-works-grid::before {
        display: none;
    }

    .how-it-works-grid .step-card:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
}

/* --- Styling untuk Section Ecommerce Support & Shipping Carriers --- */
.tab-section {
    background-color: #f7f3ff; 
    padding: 4rem 0;
    text-align: center;
}
.ecommerce-support-section,
.shipping-carriers-section {
    background-color: #f7f3ff;
    padding: 4rem 1rem;
    text-align: center;
}

/* --- Tab Toggle Styling --- */
.tab-toggle-wrapper {
    background-color: #f7f3ff;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding-top: 4rem; 
}

.tab-toggle-group {
    display: flex;
    background-color: #5c3898;
    border-radius: 50px;
    padding: 4px;
    gap: 0.5rem; /* Menambahkan sedikit jarak antar tombol */
}

.tab-toggle {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #e0d7ef; /* Warna teks untuk tombol tidak aktif */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-toggle.active {
    background-color: #e0d7ef;
    color: #5c3898; /* Warna teks untuk tombol aktif */
}

/* --- Styling untuk Section Ecommerce Support & Shipping Carriers --- */
.ecommerce-support-section,
.shipping-carriers-section {
    background-color: #f7f3ff;
    padding: 4rem 1rem;
    text-align: center;
}

/* --- Tab Toggle Styling --- */
.tab-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding-top: 4rem; 
}

.tab-toggle-group {
    display: flex;
    background-color: #5c3898;
    border-radius: 50px;
    padding: 4px;
    gap: 0.5rem;
}

.tab-toggle {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #e0d7ef;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-toggle.active {
    background-color: #e0d7ef;
    color: #5c3898;
}

/* --- Header & Paragraph --- */
.ecommerce-support-section h2,
.shipping-carriers-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #4b2a8d;
    margin-bottom: 1rem;
}

.ecommerce-support-section p,
.shipping-carriers-section p {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1rem;
    color: #6a6a6a;
}

/* --- Logo Flexbox --- */
.logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem; /* Jarak antar logo */
    max-width: 800px; /* Batasan lebar agar tidak terlalu lebar */
    margin: 0 auto; /* Pusatkan container */
    padding-bottom: 4rem;
}

.logo-item {
    display: flex; /* Untuk memastikan gambar berada di tengah-tengah item */
    justify-content: center;
    align-items: center;
    flex: 1 1 150px; /* Fleksibilitas untuk ukuran logo */
    max-width: 150px;
    height: 60px; /* Tetapkan tinggi agar logo memiliki ukuran yang konsisten */
    padding: 0 1rem;
}

.img-platform,
.img-carrier {
    width: 100%;
    height: auto;
    object-fit: contain; /* Memastikan gambar pas di dalam container tanpa terdistorsi */
}

/* --- Hidden Class untuk JS --- */
.hidden {
    display: none;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .ecommerce-support-section,
    .shipping-carriers-section {
        padding: 3rem 1rem;
    }

    .tab-toggle-group {
        width: auto;
        max-width: 300px;
        margin: 0 auto;
    }

    .tab-toggle {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .ecommerce-support-section h2,
    .shipping-carriers-section h2 {
        font-size: 1.5rem;
    }
    
    .ecommerce-support-section p,
    .shipping-carriers-section p {
        font-size: 0.9rem;
    }

    .logo-container {
        gap: 1.5rem;
    }

    .logo-item {
        flex: 1 1 100px;
        max-width: 500px;
        height: 45px;
    }
}

.cta-section {
    background-color: var(--hero-bg-color); /* Dark purple background */
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff; /* White text color */
}

.cta-background-asset {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(130, 95, 204, 0.3); /* Semi-transparent purple */
    z-index: 0;
}

.cta-background-asset.asset-left {
    top: -100px;
    left: -150px;
}

.cta-background-asset.asset-right {
    bottom: -100px;
    right: -150px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-circle {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #825fcc; /* Solid purple circle */
    margin-right: 0.5rem;
}

.cta-tagline p {
    font-size: 1rem;
    margin: 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.smarter-text {
    color:#c8d832; /* Yellow-green color */
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #fff;
    color: #4a3078; /* Dark purple text */
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e0d7ef;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-background-asset {
        width: 200px;
        height: 200px;
    }

    .cta-background-asset.asset-left {
        top: -50px;
        left: -100px;
    }

    .cta-background-asset.asset-right {
        bottom: -50px;
        right: -100px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
/* ===================================== */
/* ======= PRICING PAGE STYLES ========= */
/* ===================================== */

/* ===== Wrapper & Hero ===== */
.pricing-page {
  background-color: var(--hero-bg-color);
  padding: 120px 0 80px;
  text-align: center;
}

.hero-container {
  margin: 50px 0;
}

.pricing-title {
  font-size: 35px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.pricing-subtitle {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 40px;
}

/* ===== Tabs Toggle ===== */
.price-tab-toggle-wrapper {
  margin-bottom: 50px;
  background-color: var(--hero-bg-color);
}

.price-tab-toggle-group {
  display: inline-flex;
  background-color: var(--deep-6);
  border-radius: 50px;
  padding: 5px;
}

.price-tab-toggle {
  border: none;
  background-color: transparent;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  color: var(--hero-bg-color);
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.price-tab-toggle.active {
  background-color: var(--hero-bg-color);
  color: var(--deep-6);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===== Tabs Content ===== */
.price-tab-content {
  display: none;
}

.price-tab-content.active {
  display: block;
}

/* ===== Pricing Card Container ===== */
.pricing-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

/* ===== Individual Card ===== */
.pricing-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.card-icon-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.card-icon-header img {
  width: 35px;
  height: 35px;
  margin-right: 12px;
}

.card-icon-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

/* ===== Features List ===== */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex-grow: 1;
}

.features-list li {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.features-list li span {
  display: flex;
  margin-right: 8px;
  margin-top: 2px;
}

.check-icon {
  color: #4b2693;
  font-size: 16px;
}

/* ===== Card Footer ===== */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.price-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.start-from {
  font-size: 12px;
  color: #999;
  margin-bottom: -5px;
}

.price-value {
  font-size: 32px;
  font-weight: 700;
  color: #4b2693;
}

.price-unit {
  font-size: 14px;
  font-weight: 600;
  color: #4b2693;
}

.payment-info {
  font-size: 12px;
  color: #999;
}

/* ===== Buttons ===== */
.btn-try-free,
.btn-sign-up,
.btn-contact-us {
  background-color: #4b2693;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-try-free:hover,
.btn-sign-up:hover,
.btn-contact-us:hover {
  background-color: #6a3ab2;
}

/* ===== Custom Subscription Box ===== */
.cs-subscription {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.cs-details {
  flex-grow: 1;
}

.cs-details h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.cs-list li {
  margin-bottom: 8px;
}

.cs-price-box {
  text-align: right;
  margin-left: 20px;
}

.cs-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

.cs-buttons .btn-contact-us {
  background-color: transparent;
  color: #4b2693;
  border: 1px solid #4b2693;
}

.cs-buttons .btn-contact-us:hover {
  background-color: #e5d8ff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .pricing-page {
    padding: 80px 20px;
  }

  .pricing-title {
    font-size: 28px;
  }

  .pricing-card {
    padding: 25px;
  }

  .card-icon-header img {
    width: 30px;
    height: 30px;
  }

  .card-icon-header h3 {
    font-size: 16px;
  }

  .features-list li {
    font-size: 13px;
  }

  .check-icon {
    font-size: 14px;
  }

  .price-value {
    font-size: 28px;
  }

  .price-unit {
    font-size: 12px;
  }

  .btn-try-free,
  .btn-sign-up,
  .btn-contact-us {
    padding: 8px 16px;
    font-size: 12px;
  }

  .card-footer {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    border-top: none;
    padding-top: 0;
  }

  .price-info {
    align-items: center;
    text-align: center;
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
  }

  .features-list {
    margin-bottom: 15px;
  }

  .cs-subscription {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 25px;
  }

  .cs-details {
    margin-bottom: 20px;
  }

  .cs-price-box {
    text-align: center;
    margin-left: 0;
  }
}

/* ================== Layout & Structure ================== */
.contact-page-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.contact-content {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.contact-form-section,
.contact-info-section {
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-section {
  flex: 2;
  background-color: var(--form-bg);
}

.contact-info-section {
  flex: 1;
  background-color: var(--info-box-bg);
  color: var(--info-text-color);
}

/* ================== Headings & Text ================== */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-light);
}

.contact-form-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--deep-1);
  margin-bottom: 15px;
}

.send-message-intro p {
  font-size: 0.95rem;
  color: var(--text-on-bg);
  line-height: 1.5;
}

/* ================== Form Elements ================== */
.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.contact-form .form-group {
  flex: 1;
  margin-bottom: 15px;
}

.contact-form .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--deep-1);
  font-size: 0.9rem;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--deep-1);
  background-color: var(--form-bg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--input-focus-border);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.2);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Input Group (Phone +62) */
.contact-form .input-group {
  display: flex;
  width: 100%;
}

.contact-form .input-group-addon {
  background-color: var(--input-border);
  border: 1px solid var(--input-border);
  border-right: none;
  padding: 12px 15px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  color: var(--deep-1);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form .input-group .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* ================== Checkbox ================== */
.contact-form .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-form .form-check {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--deep-1);
}

.contact-form .form-check-input {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--deep-2);
  border-radius: 4px;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
  background-color: var(--form-bg);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-form .form-check-input:checked {
  background-color: var(--deep-2);
  border-color: var(--deep-2);
}

.contact-form .form-check-input:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-light);
  font-size: 12px;
  font-weight: bold;
}

/* ================== Button ================== */
.contact-form .btn-primary {
  display: block;
  width: fit-content;
  padding: 12px 30px;
  background-color: var(--button-bg);
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.contact-form .btn-primary:hover {
  background-color: var(--button-hover-bg);
  transform: translateY(-2px);
}

/* ================== Info Section ================== */
.contact-info-section {
  flex: 1;
  background: var(--info-box-bg);
  color: var(--info-text-color);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-list {
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-item .icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--icon-circle-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  margin-right: 15px;
}

.feature-item .icon-circle i {
  color: var(--text-light);
}

.feature-item .feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 5px;
}

.feature-item .feature-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* ================== Responsive ================== */
@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 2rem;
  }
  .contact-form-section,
  .contact-info-section {
    padding: 30px;
  }
  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-info-section {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .contact-page-container {
    padding: 0 15px;
  }
  .contact-form-section,
  .contact-info-section {
    padding: 20px;
  }
  .contact-form .btn-primary {
    width: 100%;
    text-align: center;
  }
}

















/* --- Footer General Styling --- */
.footer {
    background-color: #f8f6ff;
    color: #6a6a6a;
    padding: 5rem 2rem; /* Jarak vertikal lebih besar */
    font-size: 0.8rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem; /* Jarak horizontal antar kolom lebih besar */
}

/* --- Footer Sections --- */
.footer-section {
    flex: 1;
    min-width: 180px; /* Lebar minimum sedikit lebih besar */
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b2a8d;
    margin-bottom: 1rem;
}

.footer-section p {
    margin: 0.75rem 0; /* Jarak vertikal antar baris teks lebih besar */
    display: flex;
    align-items: flex-start;
}

.footer-section p .fas {
    margin-right: 0.75rem; /* Jarak antara ikon dan teks lebih besar */
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-top: 4px;
}

/* Logo Section */
.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 0.5rem; /* Jarak antara logo dan deskripsi */
}

.logo-description {
    line-height: 1.5; /* Jarak antar baris teks deskripsi */
}

/* Link Sections */
.links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-section li {
    margin-bottom: 0.75rem; /* Jarak vertikal antar link lebih besar */
}

.links-section a {
    text-decoration: none;
    color: #6a6a6a;
    transition: color 0.3s ease;
}

.links-section a:hover {
    color: #4b2a8d;
}

/* --- Divider --- */
.footer-divider {
    border: none;
    height: 1px;
    background-color: #e0d7ef;
    margin: 4rem auto; /* Jarak di atas dan bawah garis lebih besar */
    max-width: 1200px;
}

/* --- Footer Bottom --- */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 1.25rem; /* Jarak antar ikon sosial lebih besar */
}

.footer-social a {
    color: #6a6a6a;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #4b2a8d;
}

.copyright {
    margin: 0;
    font-size: 0.85rem;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem; /* Jarak vertikal di mobile lebih sesuai */
    }
    
    .footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem; /* Jarak antar bagian lebih besar */
    }
    
    .footer-section {
        flex: none;
        width: 100%;
        min-width: 100%;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-divider {
        margin: 3rem auto; /* Jarak di mobile lebih sesuai */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem; /* Jarak di mobile lebih sesuai */
    }

    .footer-social {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }
}