body{
	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", Verdana, Roboto, "helvetica neue", Arial, sans-serif, "apple color emoji";
	font-size: 14px;
	background-color: #f1f1f1;
	width: 100%;

}

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.container{
	max-width: 850px;
	margin: 20px auto;
	background: #fff;
	overflow: hidden;
	padding: 10px;
	transition: .5s;
	border-radius: 12px;
}

.header{
	border: 1px solid #F7F7F7;
	border-radius: 8px;
	padding: 5px 0 0 0;
	margin: 5px;
	background-color:#F7F7F7;
	transition: .3s;
}

.notif{
	border: none;
	padding: 1px;
	margin: 0px 5px;
	background: black;
	color: white;
	font-size: 12px;
	display:flex;
	transition: .3s;
	border-radius: 6px;
}

.section{
	margin: 0;
	padding: 0;
	margin: 7px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slider{
    border: 2px solid green;
	box-shadow: 1px 1px 8px;
	width: 100%;
	height: auto;
	border-radius: 10px;
	overflow: hidden;
}
.slidez{
	width: 400%;
	height: auto;
	display: flex;
    animation: slide_animation 20s infinite alternate linear;
}

.slide input{
	display: none;
}
.st{
	width: 25%;
	transition: 0.5s;
}
.st img{
	width: 100%;
    display: block;
}

@keyframes slide_animation {
    0% { margin-left: 0%; }
    20% { margin-left: 0%; }
    25% { margin-left: -100%; }
    45% { margin-left: -100%; }
    50% { margin-left: -200%; }
    70% { margin-left: -200%; }
    75% { margin-left: -300%; }
    100% { margin-left: -300%; }
}

.label-paket {
	font-size: 20px; 
	color: #000; 
	padding: 15px; 
	margin: 0 12px; 
	font-weight: bold; 
	border-bottom: 2px solid #000;
}

.pricing-container {
	display: grid;
	gap: 20px;
	padding: 20px 12px;
	grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 992px) {
  .pricing-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 580px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
}

/* Sembunyikan Radio Asli */
.package-box input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.package-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    text-align: center;
}

.pricing-column {
	background: #fff;
	padding: 30px 15px;
	box-sizing: border-box;
	border-radius: 10px;
	text-align: center;
	box-shadow: 4px 4px 8px rgb(0 0 0 / 15%);
	border: 2px solid #e9e7e7;
	transition: all 0.3s ease-in-out;
}

.transisi {
    transition: all 0.3s ease-in-out;
}

.pricing-price {
  font-weight: 700;
  font-size: 22px;
}

.service-info {
  opacity: 0.7;
}

.pricing-tag {
	display: inline-block;
	background: #333;
	color: #fff;
	padding: 3px 15px;
	border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0;
}

/* --- WARNA PER PAKET --- */
/* Paket 1: Oranye */
.package-box:nth-child(1) .pricing-price { color: #e67e22; }
.package-box:nth-child(1) .pricing-tag { background: #e67e22; }
.package-box:nth-child(1) input:checked + .package-content { border-color: #e67e22; background: #fffaf5; }

/* Paket 2: Merah */
.package-box:nth-child(2) .pricing-price { color: #fb2626; }
.package-box:nth-child(2) .pricing-tag { background: #fb2626; }
.package-box:nth-child(2) input:checked + .package-content { border-color: #fb2626; background: #fff1f1; }

/* Paket 3: Biru */
.package-box:nth-child(3) .pricing-price { color: #2b73f6; }
.package-box:nth-child(3) .pricing-tag { background: #2b73f6; }
.package-box:nth-child(3) input:checked + .package-content { border-color: #2b73f6; background: #f0f5ff; }

/* Hover Effect */
.package-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-column ul {
  list-style: none;
  padding: 10px 0;
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 2.2;
}

.input-field{
	display: flex;
    position: relative;
    margin: 20px 17px 5px;
    border-bottom: 1px solid #999;
}
.input-field input{
    width: 100%;
    padding: 0 5px;
    height: 20px;
    font-size: 14px;
    border: none;
    background: none;
    outline: none;
}
.input-field label{
    position: absolute;
    top: 100%;
    left: 20px;
    color: #717070;
    transform: translateY(-135%);
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
}
.input-field span::before{
    content: '';
    position: absolute;
    top: 44px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2801ff;
    transition: .5s;
}
.input-field input:focus ~ label,
.input-field input:valid ~ label{
    top: 20px;
    color: #2801ff;
	font-weight: bold;
}
.input-field input:focus ~ span::before,
.input-field input:valid ~ span::before{
    width: 100%;
}
.submit-btn{
    width: 85%;
    padding: 10px 30px;
    cursor: pointer;
    display: block;
    margin: 36px auto;
	color: #fff;
    background: linear-gradient(to right, #180287, #2801ff);
    outline: none;
    border: none;
    border-radius: 30px;
	transition: all 0.3s ease-in-out;
}

.submit-btn:hover {
  transform: scale(1.1);
}

.footer { 
	text-align: center; 
	margin-top: 20px; 
	font-size: 12px; 
	color: #999; 
    clear: both;
    padding: 20px;
	transition: .3s;
}
