
@font-face {
    font-family: 'FSAlbertPro';
    src: url('fonts/FSAlbertPro.eot');
    src: url('fonts/FSAlbertPro.eot') format('embedded-opentype'),
         url('fonts/FSAlbertPro.woff2') format('woff2'),
         url('fonts/FSAlbertPro.woff') format('woff'),
         url('fonts/FSAlbertPro.ttf') format('truetype'),
         url('fonts/FSAlbertPro.svg#FSAlbertPro') format('svg');
}

@font-face {
    font-family: 'FSAlbertPro-Bold';
    src: url('fonts/FSAlbertPro-Bold.woff2') format('woff2'),
        url('fonts/FSAlbertPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
            --prudential-red-pathway: #ed1c24;
            --prudential-cyan-pathway: #4dd0e1;
		
        }

body {
    font-family: 'FSAlbertPro', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    margin: 0;
    display: flex;
    justify-content: center;font-size: 14px;
}

.calculator-container {
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.header-banner img {
    width: 100%;
    display: block;
}

.logo-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
}

.header-icons i {
    margin-left: 15px;
    color: #5b6770;
    font-size: 18px;
}

.title-section {
    padding: 20px; padding-bottom:0px;
    text-align: center;
}

.title-section h1 {
    font-size: 30px; font-family: 'FSAlbertPro-Bold', Tahoma, Geneva, Verdana, sans-serif;
    color: #373a36; 
    margin: 0;
}

.title-section h1 span {
    color: #4daaa7;
}

.hashtag {
    color: #e31b23;
    font-size: x-large;font-weight:800;
    margin-top: 5px;
}

/* Form Transition */
.form-step {
    display: none;
    padding: 0 20px 40px;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Inputs & UI Elements */
* { box-sizing: border-box; }

.input-group {
    width: 100%;
    margin-bottom: 20px;
}


/*animasi placeholder*/
		.input-relative {
		  position: relative;
		}
		
		/* Placeholder buatan yang akan beranimasi */
		.custom-placeholder {
		  position: absolute;
		  left: 15px;
		  top: 50%;
		  transform: translateY(-50%);
		  color: #5b6770;
		  pointer-events: none;
		  transition: all 0.4s ease-in-out;
		  transform-origin: top left; /* Mengecil ke arah kiri atas */
		
		
		font-size: 16px; 
		
		
		}
		
		/* Animasi: Saat input difokuskan ATAU sudah ada teks di dalamnya */
		input:focus + .custom-placeholder,
		input:not(:placeholder-shown) + .custom-placeholder {
		  /* Bergerak ke pojok kiri atas, mengecil, dan menghilang */
		  transform: translate(-10px, -25px) scale(0.5); 
		  opacity: 0;
		  visibility: hidden;
		}

/******/


/* Menyamakan Field Nama dengan Dropdown & Slider */
input[type="text"].name-input, 
.custom-select, 
.slider-box {
    width: 100%; /* Semua elemen mengambil lebar maksimal kontainer */
    display: flex;
    align-items: center;
}

input::placeholder {

   font-size: 16px;border-color: #c5c5c5; color:#5b6770;
}

input[type="text"].name-input {
    height: 48px; /* Menyamakan tinggi dengan custom-select */
    border-radius: 30px;
    border: 1px solid #cfcfcf;
    padding: 0 20px;
    font-size: 16px;
    font-family: 'FSAlbertPro-Bold', Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
    transition: border-color 0.3s;
	
}

input[type="text"].name-input:focus {
    border-color: #c5c5c5;
}


.input-group label {
    display: block;
    font-weight: bold; font-size:16px;
    color:#373a36;
    margin-bottom: 8px;
}

input[type="text"], select {
	width: 100%;
	height: 45px; /* Menyesuaikan proporsi gambar */
	border-radius: 10px; /* Sudut tumpul yang halus */
	border: 1px solid #cfcfcf; /* Border tipis warna cyan pucat */
	outline: none;
	padding: 0 15px;
	box-sizing: border-box;

}




select {
  /* Menghapus gaya bawaan Safari/iPhone */
  -webkit-appearance: none; 
  -moz-appearance: none;
  appearance: none;

  /* Mengatur warna teks menjadi merah */
  color: #5b6770; 
  
  /* Karena appearance dihapus, Anda harus mengatur border kembali agar mirip gambar */
  border: 1px solid #5b6770;
  border-radius: 8px;
  padding: 10px;
  background-color: white;
  
  /* Tambahkan padding kanan agar teks tidak menabrak tombol panah */
  padding-right: 40px; 
}

/*.slider {
    width: 100%;
    accent-color: #4daaa7;
}

.slider-value {
    text-align: center;
    color: #e31b23;
    font-weight: bold;
    margin-top: 5px;
}




/* Status Styling */
/* Helper Colors */
.bg-blue { background-color: #00addc; }
.bg-light-red { background-color: #ff8e8e; }
.bg-teal { background-color: #00a896; }

.status-selection {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
}

.status-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Lingkaran Putih Terluar (Border Tebal) */
.status-circle-outer {
    width: 70px;
    height: 70px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #e3eaed; /* Border putih terluar */
}

/* Lingkaran Berwarna di Dalam */
.status-circle-inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px solid white; /* Border putih tipis di dalam warna */
}

.status-circle-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Teks Keterangan */
.status-item p {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #373a36;
    text-align: center;
    line-height: 1.2;
    font-family: 'FSAlbertPro', sans-serif;
}

/* State Aktif & Interaksi */
.status-item.active .status-circle-outer {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.status-item.active p {
    color: #5b6770;
    font-weight: 800;
}

.status-item:not(.active) {
    opacity: 0.6;
    filter: grayscale(0.2);
}

/* Next/Prev Buttons */
.btn-next, .btn-download {
    width: 50%;
    padding: 15px;
    background: #e31b23;
    color: white;
    border: 5px solid #fff;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.btn-prev {
    flex: 1;
    padding: 12px;
    background: #e31b23;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.btn-prev.red-outline {
    background: #fff;
    color: #e31b23;
    border: 2px solid #e31b23;
}

.nav-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}



/* Step 2 & 3 Specifics */
.goal-label {
    padding: 5px 15px;
    color: white;
    border-radius: 0 15px 15px 0;
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
}

.red-bg { background: #e31b23; }

.summary-box {
    background: #4daaa7;
    padding: 20px;
    border-radius: 0;
    margin-top: 30px;
    color: white;
}

.summary-box h3 {
    text-align: center;
    margin-bottom: 20px;
}



/* Styling Baris Input Step 2 */
.goal-input-group {
    margin-bottom: 15px;
    padding: 0 10px;
}

.goal-label-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: -5px; /* Membuat label terlihat menempel dengan input */
    position: relative;
    z-index: 2;
}

.goal-icon {
    width: 40px;
    height: 40px;
    margin-right: -10px;
    z-index: 3;
}

.goal-red-tag {
    background: #e31b23;
    color: white;
    padding: 5px 25px 5px 20px;
    border-radius: 0 15px 15px 0;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.dream-input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #dce4e8;
    border-radius: 20px;
    background: #f1f5f7;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    font-size: 14px;
}

/* Teal Box Styling */
.achieve-dream-box {
    background-color: #eaeef3;
    padding: 20px;
    margin-top: 25px;
    color: white;
    text-align: center;
}

.achieve-dream-box h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.achieve-row {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 5px 15px;
    margin-bottom: 12px;
}

.achieve-label {
    display: flex;
    align-items: center;
    width: 40%;
    color: #5b6770;
    font-weight: bold;
 
}

.achieve-label img {
    width: 25px;
    margin-right: 10px;
}

.achieve-row input {
    width: 60%;
    border: none;
    padding: 8px;
    outline: none;
    font-size: 14px;
    background: transparent;
    color: #5b6770;
}

.nav-container-flex {
    display: flex;
    gap: 15px;
    padding: 25px 20px;
    justify-content: center;
}

.btn-nav {
    flex: 1; /* Membuat kedua tombol memiliki lebar yang sama */
    padding: 12px 0;
    border-radius: 25px;
    font-weight: bold;
    font-family: 'FSAlbertPro', sans-serif; /* Pastikan font diterapkan */
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Styling Tombol Next (Merah Solid) */
.btn-next-step {
    background: #e31b23;
    color: white;border: 0px solid #fff;
    box-shadow: 0 4px 8px rgba(227, 27, 35, 0.3);
}

/* Styling Tombol Previous (Putih/Transparan dengan Border Merah) */
.btn-prev-step {
    background: #e31b23;
    color: white;border: 0px solid #fff;
    box-shadow: 0 4px 8px rgba(227, 27, 35, 0.3);
}

.btn-nav:active {
    transform: scale(0.98);
}


.custom-select-wrapper {
    position: relative;
    user-select: none;
}

.custom-select {
    display: flex;
    align-items: center;
    justify-content: space-between;	
	height: 45px; /* Menyesuaikan proporsi gambar */
	border-radius: 10px; /* Sudut tumpul yang halus */
	border: 1px solid #cfcfcf; /* Border tipis warna cyan pucat */
	
	outline: none;
	padding: 0 15px;
	box-sizing: border-box;

		
	transition: all 0.3s ease; 
	font-size:16px;
}

.custom-select .placeholder {
    color: #5b6770;
    font-size: 16px;
    font-family: 'FSAlbertPro', sans-serif;
}

/* Lingkaran Merah dan Panah */
.arrow-circle {
    background: #e31b23; /* Merah sesuai gambar */
    width: 25px;
    height: 25px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(227, 27, 35, 0.4);
    transition: transform 0.3s ease; 
}

.arrow-circle i {
    color: white;
    font-size: 14px;
}

/* Dropdown Menu */
.custom-options {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    z-index: 100;
    overflow: hidden;
}

.custom-options .option {
    padding: 12px 20px; color:#5b6770;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-options .option:hover {
    background: #f1f5f7;
    color: #e31b23;
}

/* Efek saat terbuka */
.custom-select-wrapper.open .custom-options {
    display: block;
}

.custom-select-wrapper.open .arrow-circle {
    transform: rotate(180deg);
}


.dream-item-container {
    margin-bottom: 25px;
    padding-left: 15px; /* Memberi ruang untuk ikon yang menjorok keluar */
}

.dream-header-row {
    display: flex;
    align-items: flex-end; /* Menempelkan teks ke dasar garis merah */
    position: relative;
    height: 45px;
}

.dream-icon-box {
    position: relative;
    left: 0px; /* Menjorok ke kiri sesuai gambar */
    bottom: -5px; /* Memotong sedikit area input field */
    width: 45px;
    height: 45px;
    z-index: 5; margin-left:6px;
}

.dream-icon-box img {
    width: 100%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.dream-red-label {
    background-color: #e31b23;
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 30px 8px 5px; /* Padding kiri besar agar teks tidak tertutup ikon */
    border-radius: 0 0 20px 0 ; /* Hanya kanan atas yang membulat */
    display: inline-block;
    position: relative;
    z-index: 2; width:180px;
    margin-bottom: 0; /* Menempel ke input di bawah */
}


.dream-white-label {
    background-color: #ffffff;
    color: #373a36;
    font-weight: 800;
    font-size: 16px;
    padding: 8px 30px 8px 5px; /* Padding kiri besar agar teks tidak tertutup ikon */
    border-radius: 0 0 20px 0 ; /* Hanya kanan atas yang membulat */
    display: inline-block;
    position: relative;
    z-index: 2; width:180px;
    margin-bottom: 0; /* Menempel ke input di bawah */
}

.dream-input-wrapper {
    position: relative;
    z-index: 1;
}

.dream-input-field {
    width: 100%;
    background-color: #f1f5f7;
    border: 1px solid #dce4e8;
    border-radius: 25px; /* Bentuk kapsul sesuai gambar */
    padding: 12px 25px;
    font-size: 14px;
    color: #888;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

/* Garis dekoratif merah tipis yang menyambung ke kiri (opsional jika dibutuhkan) */
.dream-red-label::before {
    content: "";
    position: absolute;
    left: -70px;
    bottom: 0;
    width: 100px;
    height: 100%;
    background-color: #e31b23;
    z-index: -1;
}




.custom-month-input {


    align-items: center;
    justify-content: space-between;	
	height: 45px; /* Menyesuaikan proporsi gambar */
	border-radius: 10px; /* Sudut tumpul yang halus */
	border: 1px solid #c9e3e9; /* Border tipis warna cyan pucat */
	
	background: rgba(255, 255, 255, 0.9); 
	
	outline: none;
	padding: 0 15px;
	box-sizing: border-box;
	box-shadow: 
		inset 0px 6px 10px rgba(100, 180, 200, 0.2), 
		inset 0px -4px 6px rgba(255, 255, 255, 0.9),
		0px 2px 5px rgba(255, 255, 255, 0.5);
		
	transition: all 0.3s ease; font-size:16px;
  }
  
  .custom-month-input:focus {
    border-color: #26a69a;
    box-shadow: 0 0 5px rgba(77, 182, 172, 0.5);
  }

/****/



	
	
/********/



.grup-slidersa {
    margin-bottom: 30px;
}

.label-atasa {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #373a36;
    margin-bottom: 10px;
    margin-left: 5px;
}

.bingkai-slidera {
    position: relative;
	width: 100%;
	height: 40px;
	
	border-radius: 50px;
	border: 0px solid #ffffff;
	display: flex;
	align-items: center;

	box-sizing: border-box;
}

/* Menghilangkan gaya default browser */
.input-gesera {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: #88dbdf;
    border-radius: 5px;
    outline: none;
    /* Efek shadow di dalam track agar terlihat cekung */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2); 
    margin: 10px 0;
}

/* Bulatan Merah (Thumb) dengan Panah Kebawah */
.input-gesera::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    background-color: #ed1b2f;
    
    /* Menggunakan SVG untuk tanda panah tunggal kebawah */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.input-gesera::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background-color: #ed1b2f;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
}

.bingkai-sliderb {
    position: relative;
	width: 100%;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50px;
	border: 1px solid #ffffff;
	box-shadow: 
		inset 0px 5px 12px rgba(100, 180, 200, 0.3),
		0px 2px 4px rgba(255, 255, 255, 0.8);
	display: flex;
	align-items: center;
	padding: 0 10px;
	box-sizing: border-box;
}


.angka-pinggira {
    display: flex;
    justify-content: space-between;
    color: #5b6770;
    font-size: 13px;
    margin-bottom: 5px;
}

.angka-besara {
    text-align: center;
    color: #ed1b2f;
    font-size: 20px;
    font-weight: bold;
    margin-top:-20px;
}



.text-style {
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    /* Efek bayangan luar untuk menciptakan kedalaman */
    text-shadow: 
      2px 2px 0px rgba(0,0,0,0.1),
      4px 4px 8px rgba(0,0,0,0.3);
    /* Sedikit lengkungan halus jika diperlukan */
    -webkit-font-smoothing: antialiased; 
	
  }
  
  
  
  /********/
  .pathway-section {
    padding: 20px; padding-top:0px;
    text-align: center;
}


.pathway-title {
    color: white; /* Isi teks putih */
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: none;
    /* Efek Stroke/Outline Merah Tebal */
    text-shadow: 
        -2px -2px 0 #e31b23,  
         2px -2px 0 #e31b23,
        -2px  2px 0 #e31b23,
         2px  2px 0 #e31b23,
         0px  3px 5px rgba(0,0,0,0.2);
}

/* Box Besar dengan Inner Shadow */
.info-textarea {
    width: 100%;
    height: 150px;
    padding: 20px;
    border-radius: 25px;
    background-color: #e9f1f4; /* Warna background biru pucat sesuai gambar */
    border: 3px solid #ffffff; /* Border putih tegas sebagai frame */
    outline: none;
    resize: none;
    font-family: 'FSAlbertPro', sans-serif;
    font-size: 16px;
    color: #373a36;
    
    /* Layered Box Shadow untuk Efek Kedalaman Sempurna */
    box-shadow: 
        /* Bayangan gelap di dalam bagian atas (menciptakan efek kedalaman) */
        inset 0px 10px 15px -5px rgba(82, 182, 179, 0.25),
        /* Cahaya putih di dalam bagian bawah (menciptakan efek timbul di pinggir) */
        inset 0px -10px 15px -5px rgba(255, 255, 255, 1),
        /* Bayangan luar yang sangat tipis untuk memisahkan dari background */
        0px 2px 5px rgba(82, 182, 179, 0.25);

    transition: all 0.3s ease;
}

/* State Fokus untuk interaksi */
.info-textarea:focus {
    box-shadow: 
        inset 0px 12px 18px -5px rgba(0, 0, 0, 0.2),
        inset 0px -12px 18px -5px rgba(255, 255, 255, 1);
    background-color: #ecf3f6;
}

/* Styling untuk placeholder agar warnanya soft */
.info-textarea::placeholder {
    color: #a0b1ba;
    font-weight: 500;
}

/* Toggle Styling */
.toggle-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 20px;
}

.toggle-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 2px solid #fff;
    flex: 1;
	 transition: all 0.3s ease;
    opacity: 0.5; /* Default tidak aktif redup */
}

.toggle-item.active {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.toggle-label {
    flex: 1;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 0;
}

.toggle-icon {
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}


/* Toggle Active State */
.toggle-item {
    opacity: 0.4;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.toggle-item.active {
    opacity: 1;
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Warna Toggle Month (Teal) */
.month .toggle-label { color: #4daaa7; }
.month .toggle-icon { background: #4daaa7; }
.month.active { border-color: #4daaa7; }

/* Warna Toggle Week (Orange/Yellow) */
.week .toggle-label { color: #f9a825; }
.week .toggle-icon { background: #f9a825; }
.week.active { border-color: #f9a825; }

/* Prospect Grid */
.prospect-grid {
    display: flex;
    gap: 15px;
}

.prospect-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prospect-input {
   width: 100%;
    background: #e9f1f4;
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 12px;
    color: #888;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    outline: none;
}

/* Download Button Styling */
.btn-download {
    background: #e31b23;
    color: white;
    border: none;
    border-radius: 20px 50px  50px  20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 2px 2px 20px;
    font-weight: 800;
    width: 200px;
    margin: 20px auto 10px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.pdf-icon {
    background: white;
    color: #e31b23;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.btn-next-red {
    background: #e31b23;
    color: white; width:50%;
    border: 5px solid #fff;
    padding: 12px 60px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(227, 27, 35, 0.3);
}

/* Button Merah Next Sesuai Gambar 3 */
.btn-red-next-final {
    background: #e31b23;
    color: white;
    border: none;
    width: 100%;
    max-width: 250px;
    padding: 12px;
    border-radius: 30px;
    font-weight: bold;
    margin: 10px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(227, 27, 35, 0.3);
}


.language-selector {
  display: flex;
  gap: 8px;
  padding: 0px;
  float: right; margin-right:20px; margin-top:10px;
}

.row {
  display: flex;
  align-items: center; /* sejajar vertikal */
  gap: 10px;           /* jarak antara gambar & teks */
  margin-left: 25px;
  margin-top: 25px;
  margin-bottom: 10px;
  
}

.row img {
  width: 20px;
  height: auto;  
}


.lang-item {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Gambar Bendera */
.lang-item img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transition: transform 0.3s ease;border:1px solid #d9e1e2;
  z-index: 2;
}

/* Membuat Shadow di Bawah */
.lang-item::after {
  content: "";
  position: absolute;
  bottom: -10px; /* Jarak shadow dari bendera */
  width: 40px;
  height: 8px;
  /*background: rgba(0, 0, 0, 0.2); /* Warna bayangan */
  border-radius: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: blur(4px); /* Agar bayangan terlihat halus/blur */
  z-index: 1;
}

/* --- LOGIKA SAAT HOVER ATAU ACTIVE --- */

/* Bendera naik ke atas */
.lang-item:hover img, 
.lang-item.active img {
  transform: translateY(-3px);
}

/* Bayangan mengecil dan memudar saat bendera naik */
.lang-item:hover::after, 
.lang-item.active::after {
  transform: scale(0.5); /* Shadow mengecil */
  opacity: 0.5;          /* Shadow memudar */
  /*background: rgba(0, 0, 0, 0.15);*/
}
  
  
  
  /********/
  .container-anak {
  display: flex;
  gap: 10px;
}

.label-anak {
  font-weight: bold;
  color: #5b6770; width:50%;
}

.counter-anak {
  display: flex;
  align-items: center; justify-content: center;
  gap: 25px;
}



.btn-kurang-anak, .btn-tambah-anak {
 /* background-color: #e91e2e;  Warna merah sesuai gambar */
  color: white;
  border: none;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-kurang-anak:hover, .btn-tambah-anak:hover {
  /*background-color: #c71625;*/
}

.input-wrapper-anak {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  min-width: 100px;
}

.input-wrapper-anak input {
  border: none;
  width: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  outline: none;
  background: transparent;
}

/* Menghilangkan panah default input number */
.input-wrapper-anak input::-webkit-inner-spin-button,
.input-wrapper-anak input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.unit-anak {
  color: #373a36;
  margin-left: 5px;
}

/********/

.dream-card-yourdream {
    background: #f8fafc; /* Sedikit keabu-abuan terang sesuai background gambar */
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
}

.title-yourdream {
    color: #373a36;font-size: 25px; font-family: 'FSAlbertPro-Bold', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    margin-bottom: 30px;
}

.input-group-yourdream {
    margin-bottom: 25px;
}

.label-yourdream {
    font-size: 1.05rem;
    font-weight: 800;
    color: #373a36;
    margin-bottom: 5px;
}

.input-wrapper-yourdream {
    background: white; width:80%; margin:auto;
    display: flex; font-family:font-family: 'FSAlbertPro', Tahoma, Geneva, Verdana, sans-serif;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Shadow halus di dalam box */
}

.input-wrapper-yourdream input {
    border: none;font-family:font-family: 'FSAlbertPro', Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
    font-size: 18px;
    font-weight: 800;
    color: #373a36;
    width: 70%;
    text-align: center;
    background: transparent;
}

.currency-yourdream {
    color: #939598;
    font-weight: 700;
    font-size: 14px;
    margin-right: 10px;
}

.unit-yourdream {
    color: #939598;
    font-weight: 700;
     font-size: 14px;
    margin-left: 10px;
}


 .jk-gender-container {
            display: flex;
            gap: 60px;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .jk-gender-title {
            font-size: 24px;
            font-weight: bold;
            color: #5b6770;
            margin-bottom: 20px;
            text-align: center;
        }

        .jk-gender-option {
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.5; /* Tetap sedikit transparan agar ada efek 'fokus' saat dipilih */
        }

        /* Hover effect agar lebih interaktif */
        .jk-gender-option:hover {
            opacity: 0.8;
        }

        /* State Aktif: Opacity penuh dan efek angkat */
        .jk-gender-option.jk-selected {
            opacity: 1;
            transform: translateY(-5px);
        }

        .jk-gender-image-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 5px solid #f0f0f0; /* Warna default abu-abu muda */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            overflow: hidden;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        /* PERUBAHAN DISINI: Border berubah merah saat dipilih */
        .jk-gender-option.jk-selected .jk-gender-image-wrapper {
            border-color: #f0f0f0; /* Border tetap warna awal atau bisa disesuaikan */
            /* Shadow merah: horizontal, vertical, blur, spread, color */
           box-shadow: 0 6px 15px rgba(0,0,0,0.2);

        }

        .jk-gender-option img {
            width: 100%;
            height: auto;
            display: block;
        }

        .jk-gender-label {
            font-size: 14px;
            font-weight: 600;
            color: #5b6770;
            display: block;
            transition: color 0.3s ease;
        }

        /* Label teks juga berubah merah saat dipilih */
        .jk-gender-option.jk-selected .jk-gender-label {
            color: #ff4d4d;
        }

        .jk-gender-input {
            display: none;
        }
		
/******/
        .card-pathway {
            background: white;
            width: 100%;
            padding: 15px;
            border-radius: 12px;
        }

        .title-pathway {
            color: #373a36;font-size: 24px; font-family: 'FSAlbertPro-Bold', Tahoma, Geneva, Verdana, sans-serif;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .desc-pathway {
            color: #5b6770;
            line-height: 1.6;
            font-size: 16px;
            margin-bottom: 25px;
        }

        .highlight-dark-pathway {
            color: #373a36;
            font-weight: 800;
        }

        .amount-pathway {
            display: block;
            font-size: 20px;
   
        }

        /* Section Styling */
        .section-title-pathway {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            margin-top: 30px;
        }

        .per-bulan-title-pathway { color: #88dbdf; } 
        /* .per-bulan-title-pathway { color: #ed1b2f; }  */
        .per-minggu-title-pathway { color: #88dbdf; } 

        .sub-text-pathway {
            color: #5b6770;
            font-size: 15px;
            margin-bottom: 15px;
        }

        /* List Styling */
        .list-item-pathway {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            color:#5b6770;
            font-size: 16px;
        }

        .list-item-pathway:last-child {
            border-bottom: none;
        }

        .value-pathway {
            font-weight: 900;font-size: 18px;
            color: #5b6770;
        }

        .value-pathway span {
            font-size: 18px;
            margin-right: 4px;
        }

        .unit-pathway {
             color: #5b6770;
            font-weight: normal;
        }		
/******/		
	
	
	/* Overlay */
	.modal-overlay-pathway {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.7);
		display: none;
		justify-content: center;
		align-items: flex-start;
		overflow-y: auto;
		padding: 40px 0;
		z-index: 1000;
	}

	/* Modal Box */
	.modal-container-pathway {
		background-color: #fff;
		width: 99%;
		max-width: 750px;
		border-radius: 15px;
		overflow: hidden;
		position: relative;
		box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	}

	.close-btn-pathway {
		position: absolute;
		top: 0px;
		right: 0px;
		background: #ed1b2f;
		color: white;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
		cursor: pointer;
		z-index: 1000;
		border: 2px solid white;
	}

	.banner-pathway { width: 100%; display: block; }

	.form-content-pathway { padding: 15px; text-align: center; }

	.main-title-pathway { color: #ec1b2d; font-size:x-large; margin-bottom: 10px; font-family: 'FSAlbertPro-Bold', Tahoma, Geneva, Verdana, sans-serif; }
	.sub-title-pathway { font-size: 16px; color: #373a36; line-height: 1; margin-bottom: 25px; font-weight: 800; }

	/* Form Row Styling */
	.input-group-pathway { display: flex; align-items: flex-start; margin-bottom: 15px; text-align: left; }
	.label-pathway { width: 50%; font-size: 15px; font-weight: 600; color: #373a36; padding-right: 10px; line-height: 1.3; padding-top:10px; }
	.field-container-pathway { width: 50%; }
	.input-field-pathway { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 8px; font-size: 14px; box-sizing: border-box; outline: none; }
	
	/* Select Styling */
	.select-field-pathway {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: white;
	/* Layer 1: Icon Panah Putih (SVG) */
	/* Layer 2: Kotak Merah (Linear Gradient) */

	
	background-image: 
	url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'white'%3E%3Cpath%20d%3D'M7%2010l5%205%205-5z'%2F%3E%3C%2Fsvg%3E"),
	linear-gradient(to right, #ed1c24 0%, #ec1b2d 100%);
	
	background-position: right 6px center, right 0px center;
	background-size: 24px 24px, 36px 100%;
	background-repeat: no-repeat;
	padding-right: 45px; 
	cursor: pointer;
	border: 1px solid #ccc;
	border-radius: 8px;
	height: 40px; /* Menentukan tinggi agar kotak merah terlihat konsisten */
	outline: none;
	
	
	}
	
	/* Tambahan agar saat di-klik (focus) border tidak berantakan */
	.select-field-pathway:focus {
		border-color: #ec1b2d;
		outline: none;
	}

	.radio-group-pathway { display: flex; gap: 20px; margin-top: 5px; }
	.radio-item-pathway { display: flex; align-items: center; gap: 8px; font-size: 13px; cursor: pointer; }
	
	
	.radio-item-pathway input[type="radio"] {
	  /* Menghilangkan tampilan default browser */
	  appearance: none;
	  -webkit-appearance: none;
	  
	  /* Membuat bulatan baru */
	  width: 20px;
	  height: 20px;
	  border: 2px solid #555;
	  border-radius: 50%;
	  outline: none;
	  cursor: pointer;
	  
	  /* Posisi untuk inner circle */
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	}
	
	.radio-item-pathway input[type="radio"]:checked {
	  border-color: #ec1b2d; /* Warna pinggiran saat dipilih */
	}
	
	.radio-item-pathway input[type="radio"]:checked::before {
	  content: "";
	  width: 12px;
	  height: 12px;
	  background-color: #ec1b2d; /* Warna titik tengah */
	  border-radius: 50%;
	}


	/* Kelas untuk menyembunyikan elemen secara default */
	.hidden-section-pathway {
		display: none;
		background-color: #fcfcfc;
		padding: 10px 0;
		border-radius: 8px;
		margin-bottom: 10px;
	}

	 /* --- BUTTON KIRIM --- */
        .submit-btn-pathway {
            background-color: var(--prudential-red-pathway);
            color: white; border: none; padding: 14px 60px; border-radius: 30px;
            font-weight: bold; font-size: 16px; cursor: pointer; transition: 0.3s;
        }
        .submit-btn-pathway:disabled { background-color: #ccc; cursor: not-allowed; }
	
		
/* Overlay Alert Kustom */
.alert-overlay-pathway {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* Kotak Alert */
.alert-box-pathway {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 90%;
    max-width: 320px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.alert-message-pathway {
    font-size: 16px;
    font-weight: 600;
    color: #5b6770;
    margin-bottom: 20px;
}

/* Tombol OK Merah */
.alert-btn-pathway {
    background-color: var(--prudential-red-pathway);
    color: white;
    border: none;
    padding: 10px 40px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}


/* --- CHECKBOX TNC --- */
/* Container utama */
.tnc-container-pathway {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin: 25px 0;
    cursor: pointer;
    /* Tambahan untuk mencegah tap highlight abu-abu di iOS */
    -webkit-tap-highlight-color: transparent;
}

/* Sembunyikan checkbox asli dengan cara yang aman */
.tnc-container-pathway input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    -webkit-appearance: none; /* Penting untuk iOS */
}

/* Kotak centang kustom */
.tnc-checkmark-pathway {
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    display: inline-block; /* Pastikan elemen memiliki dimensi */
    transition: background-color 0.2s, border-color 0.2s;
}

.tnc-text-pathway { font-size: 11px; color:#5b6770; line-height: 1.4; }

/* Saat checkbox DICEK: Background merah */
.tnc-container-pathway input:checked ~ .tnc-checkmark-pathway {
    background-color: var(--prudential-red-pathway);
    border-color: var(--prudential-red-pathway);
}

/* Membuat tanda centang putih */
.tnc-checkmark-pathway:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Tampilkan centang saat dicek */
.tnc-container-pathway input:checked ~ .tnc-checkmark-pathway:after {
    display: block;
}


		
/* CSS Document */