/* Prefix: dt-page- */

.dt-page-container {
    background-color: #f2f2f2;
    padding: 60px 10%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.dt-page-container-2 {
    background-color: #f2f2f2;
    padding: 60px 10%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

/* HERO SECTION */
.dt-page-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.dt-page-hero__content {
    flex: 1;
}

.dt-page-hero__badge {
    background-color: #0056D2;
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.dt-page-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: #0056D2;
    margin: 25px 0 15px;
    line-height: 1.1;
}

.dt-page-hero__title span {
    color: #1a1a1a;
}

.dt-page-hero__desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
}

.dt-page-hero__btn {
    display: inline-block;
    background-color: #0056D2;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.dt-page-hero__btn:hover {
    background-color: #003a8f;
}

.dt-page-hero__image-box {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.dt-page-hero__img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
}

/* FEATURES SECTION */
.dt-page-features__title {
    font-size: 2.5rem;
    color: #0056D2;
    font-weight: 700;
    margin-bottom: 10px;
}

.dt-page-features__subtitle {
    color: #666;
    margin-bottom: 40px;
}

.dt-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dt-page-grid__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CARDS */
.dt-page-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.dt-page-card:hover {
    transform: translateY(-5px);
}

.dt-page-card--large {
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dt-page-card__icon-wrap {
    width: 40px;
    height: 40px;
    background-color: #0056D2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.dt-page-card__icon-wrap.blue {
    background-color: transparent;
    color: #0056D2;
    border: 1px solid #eee;
}

.dt-page-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.dt-page-card__text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .dt-page-hero { flex-direction: column; text-align: center; }
    .dt-page-hero__image-box { justify-content: center; }
    .dt-page-grid { grid-template-columns: 1fr; }
    .dt-page-grid__right { grid-template-columns: 1fr; }
    .dt-page-hero__desc { margin-left: auto; margin-right: auto; }
}


/* --- Quantifiable Advantage Styling --- */
.dt-site-advantage-section {
    background-color: #f8f9fa;
    padding: 80px 10%;
    width: 100%;
}

.dt-site-advantage-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.dt-site-advantage-intro {
    flex: 1;
    max-width: 350px;
}

.dt-site-advantage-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0056D2;
    line-height: 1.2;
    margin-bottom: 20px;
}

.dt-site-advantage-subtext {
    font-size: 1.1rem;
    color: #444;
}

.dt-site-advantage-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.dt-site-advantage-card {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.dt-site-advantage-icon {
    min-width: 45px;
    height: 45px;
    background-color: #e7f0ff;
    color: #0056D2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1.2rem;
}

.dt-site-advantage-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
}

.dt-site-advantage-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* --- How We Work Styling --- */
.dt-site-how-section {
    padding: 80px 10%;
    text-align: center;
    background-color: #fff;
}

.dt-site-how-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0056D2;
    margin-bottom: 10px;
}

.dt-site-how-subheading {
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.dt-site-steps-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.dt-site-step-item {
    flex: 1;
    text-align: left;
}

.dt-site-step-number {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #f0f4f8;
    color: #0056D2;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dt-site-step-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0056D2;
    margin-bottom: 15px;
}

.dt-site-step-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Namespacing: next-step-form- */

/* Container Utama yang membungkus seluruh section */
.next-step-form-outer-section {
    width: 100%;
    background-color: #f0f0f0; /* Warna abu-abu menyeluruh */
    padding: 80px 0; /* Padding atas bawah */
    display: flex;
    justify-content: center;
    margin: 0; /* Menghilangkan margin luar */
}

/* Container dalam untuk menjaga teks tetap di tengah (Max-Width) */
.next-step-form-inner-container {
    max-width: 1200px;
    width: 90%; /* Memberikan sedikit ruang di layar kecil */
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Bagian Kiri: Teks & Info */
.next-step-form-text-side {
    flex: 1;
    text-align: right;
}

.next-step-form-badge-pill {
    display: inline-block;
    background: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    margin-bottom: 25px;
}

.next-step-form-main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    margin-bottom: 20px;
}

.next-step-form-desc-text {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* List Centang */
.next-step-form-check-list {
    list-style: none;
    padding: 0;
}

.next-step-form-check-list li {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #333;
}

.next-step-form-check-list li i {
    color: #3b71ca;
    font-size: 1.3rem;
}

/* Bagian Kanan: Form */
.next-step-form-card-box {
    flex: 1;
}

.next-step-form-flex-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.next-step-form-input-control {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.next-step-form-input-control label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #222;
}

.next-step-form-input-control input, 
.next-step-form-input-control textarea {
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 30px; /* Lonjong sempurna sesuai gambar */
    font-size: 1rem;
    background: white;
    transition: 0.3s;
}

.next-step-form-input-control textarea {
    border-radius: 20px; /* Kurangi sedikit untuk textarea agar proporsional */
}

/* Tombol Submit */
.next-step-form-btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3b71ca;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s ease;
}

.next-step-form-btn-submit:hover {
    background-color: #2c5496;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .next-step-form-inner-container {
        flex-direction: column;
        text-align: center;
        width: 95%;
    }
    .next-step-form-text-side {
        text-align: center;
    }
    .next-step-form-check-list li {
        justify-content: center;
    }
    .next-step-form-flex-row {
        flex-direction: column;
    }
}
