/* ========== CAR RENTAL HEADER ========== */
.category-filter-section {
    text-align: center;
    margin-bottom: 45px;
}

.category-filter-section h2 {
    font-size: 38px;
    color: #112A46;
    margin-bottom: 15px;
    font-weight: 800;
}

.category-filter-section p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
    .category-filter-section {
        text-align: left;
        margin-bottom: 25px;
        padding-right: 10px;
    }
    .category-filter-section h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .category-filter-section p {
        font-size: 14px;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ========== PROMISE SECTION ========== */
.promise-section {
    padding: 60px 5%;
    background-color: #ffffff;
}
.promise-section .container {
    max-width: 1200px;
    margin: 0 auto;
}
.promise-header {
    text-align: center;
    margin-bottom: 50px;
}
.promise-header h2 {
    font-size: 38px;
    color: #112A46;
    margin-bottom: 15px;
    font-weight: 800;
}
.promise-header h2 span {
    color: #F7BA00;
    font-style: italic;
    font-family: 'Georgia', serif;
}
.promise-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.promise-card {
    background: #FAFBFC;
    border: 1px solid #EAECEF;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.promise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.promise-icon {
    width: 55px;
    height: 55px;
    background: #F8F1E3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.promise-icon i {
    font-size: 24px;
    color: #F7BA00;
}
.promise-card h3 {
    font-size: 17px;
    color: #112A46;
    margin-bottom: 10px;
    font-weight: 700;
}
.promise-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .promise-header {
        text-align: left;
        margin-bottom: 30px;
    }
    .promise-header h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .promise-header p {
        font-size: 14px;
        line-height: 1.5;
    }
    .promise-card {
        aspect-ratio: auto;
        padding: 20px 18px;
        align-items: flex-start;
        text-align: left;
        background: linear-gradient(145deg, #ffffff, #f7f9fc);
        border-radius: 12px;
        border-left: 4px solid #F7BA00;
    }
    .promise-icon {
        margin: 0 0 12px 0;
        width: 48px;
        height: 48px;
    }
    .promise-icon i {
        font-size: 20px;
    }
    .promise-card h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }
    .promise-card p {
        font-size: 13.5px;
    }
}

/* ========== BOOKING PROCESS SECTION ========== */
.booking-process-section {
    padding: 60px 5%;
    background-color: #ffffff;
}
.booking-process-section .container {
    max-width: 1200px;
    margin: 0 auto;
}
.booking-process-header {
    text-align: center;
    margin-bottom: 50px;
}
.booking-process-header h2 {
    font-size: 38px;
    color: #112A46;
    margin-bottom: 15px;
    font-weight: 800;
}
.booking-process-header h2 span {
    color: #C49A2D;
    font-style: italic;
    font-family: 'Georgia', serif;
}
.booking-process-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
.booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}
.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.booking-step .step-number {
    width: 60px;
    height: 60px;
    background-color: #C49A2D;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(196, 154, 45, 0.2);
}
.booking-step h3 {
    font-size: 20px;
    color: #112A46;
    margin-bottom: 15px;
    font-weight: 700;
}
.booking-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .booking-process-header {
        text-align: left;
    }
    .booking-process-header h2 {
        font-size: 28px;
    }
    .booking-step {
        align-items: flex-start;
        text-align: left;
    }
    .booking-step .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
