:root {
    --primary-color: #0081C0;
    --primary-light: #4da6d9;
    --primary-very-light: #e6f4ff;
    --primary-dark: #006699;
    --secondary-color: #6bbd25;
    --secondary-light: #8cd44a;
    --secondary-dark: #5a9a1e;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --border-color: #e0e0e0;
    --gray-color: #6c757d;
    --light-gray: #f5f7fa;
    --medium-gray: #e9ecef;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: f5f6f7;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 14px;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo {
    font-size: 20px;
    font-weight: 500;
    color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 40px;
    height: 40px;
    margin-left: 8px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-right: 20px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:hover:after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.burger-menu span {
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
    background: #f5f6f7;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 550;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 20px;
    font-weight: 400;
}

.booking-box {
    background: var(--light-gray);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(3, 111, 235, 0.07);
    padding: 20px;
    max-width: 800px; margin: 0 auto;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-color);
}

.booking-steps {
    display: none;
}

.step-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.step-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 129, 192, 0.1);
    outline: none;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.datetime-group {
    display: flex;
    gap: 10px;
}

.datetime-group .form-group {
    flex: 1;
}

.datetime-group .time-input {
    width: 120px;
    flex: none;
}

.btn {
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn i {
    margin: 0 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 3px 10px rgba(0, 129, 192, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 129, 192, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    box-shadow: 0 3px 10px rgba(107, 189, 37, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 189, 37, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 13px;
    padding: 10px 16px;
}

.btn-outline:hover {
    background-color: var(--medium-gray);
    color: var(--primary-color);
}

.btn-outline i {
    margin-right: 8px;
    margin-left: 0;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.vehicle-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.vehicle-card {
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.vehicle-card:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    transition: height 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.vehicle-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(0, 129, 192, 0.15);
}

.vehicle-card.selected:before {
    height: 100%;
}

.vehicle-card h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.vehicle-card h4 i {
    margin-right: 8px; 
    color: var(--primary-color);
    font-size: 14px;
}

.vehicle-card p {
    color: var(--gray-color);
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.vehicle-card p i {
    margin-right: 8px; 
    color: var(--primary-color);
}

.vehicle-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.keterangan {
    color: var(--gray-color);
    font-size: 12px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--medium-gray);
}

.price-display {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    padding: 18px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid var(--medium-gray);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.price-display h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.price-display p {
    color: var(--gray-color);
    font-size: 14px;
}

.success-message {
    text-align: center;
    padding: 30px 0;
}

.success-icon {
    font-size: 60px;
    color: var(--secondary-color);
    margin-bottom: 18px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.booking-details {
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: left;
    border: 1px solid var(--medium-gray);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.booking-details h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--medium-gray);
}

.detail-row {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
}

.detail-label {
    width: 120px;
    color: var(--gray-color);
    font-weight: 500;
    font-size: 13px;
}

.detail-value {
    flex: 1;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 13px;
}

footer {
    background: linear-gradient(135deg, var(--dark-color), #2c3136);
    color: white;
    padding: 40px 0 20px;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 12px;
    color: #ccc;
    font-size: 13px;
    line-height: 1.6;
}

.footer-section p i {
    margin-left: 8px;
    color: var(--secondary-color);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #4a4f55;
    color: #ccc;
    font-size: 12px;
}

@media (max-width: 1200px) {
    .container {
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 700px;
    }
    
    .hero h1 {
        margin-top: -5px;
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .booking-box {
        padding: 18px 15px;
        margin-top: 0px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .vehicle-options {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .nav-links {
        position: fixed;
        top: 56px;
        right: -100%;
        background: var(--light-gray);
        width: 300px;
        height: auto;
        max-height: calc(100vh - 70px);
        flex-direction: column;
        text-align: center;
        justify-content: flex-start;
        padding: 20px;
        transition: all 0.3s ease;
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
        border: 1px solid #d6dde4;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-links a {
        padding: 12px 15px;
        width: 100%;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .vehicle-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .navigation-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .detail-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section p, .footer-section a {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.3rem;
    }
    
    .form-control {
        padding: 10px 12px;
    }
    
    .vehicle-card {
        padding: 15px;
    }
    
    .vehicle-image {
        height: 100px;
    }
}

@media (min-width: 769px) {
    #step-3 .form-row {
        display: flex;
        gap: 15px;
        margin-bottom: 18px;
    }
    
    #step-3 .form-row .form-group {
        flex: 1;
        margin-bottom: 0;
    }
}

/* إضافة مسافة بين الأيقونات والنص */
.form-group label i {
    margin-left: 10px;
    color: var(--primary-color);
}