* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}
.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
}
.row { 
    display: flex; 
    flex-wrap: wrap; 
}
.col { 
    flex: 1; 
    padding: 15px; 
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: #f9f9f9;
}
.hero .left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}
.hero h3 {
    font-size: clamp(20px, 8vw, 40px);
    margin-bottom: 15px;
    color: #fd5702;
    line-height: 1.3;
    font-weight: 700;
}
.hero p {
    margin-bottom: 20px;
    font-size: clamp(14px, 2vw, 18px);
    color: #444;
    line-height: 1.6;
    text-align: justify;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}






/* Sistem Section */
.sistem {
    padding: 80px 0;
}

.sistem .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.sistem .section-title h3 {
    font-size: clamp(20px, 8vw, 40px);
    margin-bottom: 10px;
    color: #fd5702;
}

.sistem .section-title p {
    font-size: clamp(14px, 2vw, 18px);
    color: #444;
    max-width: 85%;
    text-align: justify;
    margin: 0 auto;
}

.sistem .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.sistem .col.image {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
}

.sistem .col.image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-left: 120px;
}


.sistem .col.links {
    flex: 1 1 50%;
}

.sistem .col.links a {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    margin-left: 80px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.sistem .col.links a:hover {
    color: #fd5702;
}

.sistem .col.links a i {
    font-size: 28px;
    color: #fd5702;
}







/* Booking Section */
.booking {
    text-align: center;
    padding: 100px 20px;
    background: url('/icons/ic_booking.svg') center/cover no-repeat;
    color: #333;
}
.booking h1 {
    font-size: clamp(20px, 8vw, 40px);
    font-weight: bold;
    margin-bottom: 10px;
}

.booking p {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 30px;
}

.booking a {
    outline: 1px solid #000;
}

/* Join Section */
.join { 
    padding: 80px 20px; 
    background: url('/icons/ic_hubungi_kami.svg') left/contain no-repeat; 
}
.join h1 { 
    font-size: 34px; color: #2a6cb3; 
    margin-bottom: 15px; 
}
.join .tagline { 
    font-size: 20px; font-weight: bold; 
    margin-bottom: 15px; 
}
.join p { 
    margin-bottom: 20px; 
}


/* Buttons */
.btn, .btn-yellow {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
    font-size: clamp(14px, 2vw, 18px);
}
.btn { 
    background: #2a6cb3; color: #fff; 
}
.btn:hover { 
    background: #1d4f80; 
}
.btn-yellow { 
    background: #fd5702; 
    color: #fff; 
    box-shadow: inset 3px 3px 10px rgba(255,255,255,0.6); 
}
.btn-yellow:hover { 
    background: #f6783a; 
}

.btn-login {
    display: inline-block;
    padding: 2px 4px;
    border: 2px solid #fd5702; 
    border-radius: 10px;
    background-color: transparent;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #fd5702;
    color: #fff;
}








@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 425px) {
}
