/**
 * @file home.css
 * @description CSS styles for homepage sections including campaigns and announcements
 * @author Erdinç Taze
 * @copyright 
 */

/* ========================================
   Campaigns & Announcements Section
   ======================================== */

   .campaigns-announcements-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
}

/* Campaigns Header */
.campaigns-header {
    margin-bottom: 40px;
}

.campaigns-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.2;
}

.campaigns-title span {
    color: #FFA633;
}

.campaigns-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.4;
}

.view-all-link {
    color: #FFA633;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #E6941A;
    text-decoration: none;
}

/* Campaigns Carousel Wrapper */
.campaigns-carousel-wrapper {
    position: relative;
}

/* Campaign Cards */
.campaign-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #e9ecef;
    margin: 0 10px;
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    box-sizing: border-box;
}

.campaign-card:hover {
    border-color: #FFA633;
}

/* Campaign Image */
.campaign-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.campaign-card:hover .campaign-image img {
    transform: scale(1.05);
}

/* Campaign Type Badge */
.campaign-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFA633;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 166, 51, 0.2);
}

.campaign-type-badge.announcement {
    background: #6c757d;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

.campaign-type-badge span {
    display: block;
    line-height: 1;
}

/* Campaign Content */
.campaign-content {
    padding: 20px;
    background: #ffffff;
}

.campaign-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.campaign-duration {
    margin-bottom: 16px;
}

.duration-text {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

/* Campaign Action */
.campaign-action {
    display: flex;
    justify-content: flex-start;
}

.discover-btn {
    color: #FFA633;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.discover-btn:hover {
    color: #E6941A;
    text-decoration: none;
    transform: translateX(4px);
}

/* Campaigns Pagination */
.campaigns-pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-dots .owl-dot.active {
    background: #FFA633;
    transform: scale(1.2);
}

/* Owl Carousel Custom Styles */
.campaigns-carousel.owl-carousel .owl-nav {
    display: none;
}

.campaigns-carousel.owl-carousel .owl-dots {
    display: none;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .campaigns-announcements-section {
        padding: 60px 0;
    }
    
    .campaigns-title {
        font-size: 2.2rem;
    }
    
    .campaign-title {
        font-size: 15px;
        min-height: 42px;
    }
    
    .campaign-image {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .campaigns-announcements-section {
        padding: 50px 0;
    }
    
    .campaigns-title {
        font-size: 2rem;
    }
    
    .campaigns-subtitle {
        font-size: 1rem;
    }
    
    .campaign-image {
        height: 160px;
    }
    
    .campaign-content {
        padding: 18px;
    }
    
    .campaign-title {
        font-size: 14px;
        min-height: 40px;
    }
}

@media (max-width: 767px) {
    .campaigns-announcements-section {
        padding: 40px 0;
    }
    
    .campaigns-title {
        font-size: 1.8rem;
    }
    
    .campaigns-subtitle {
        font-size: 0.95rem;
    }
    
    .campaign-card {
        margin: 0 5px;
    }
    
    .campaign-image {
        height: 140px;
    }
    
    .campaign-type-badge {
        top: 10px;
        left: 10px;
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .campaign-content {
        padding: 16px;
    }
    
    .campaign-title {
        font-size: 13px;
        min-height: 36px;
    }
    
    .duration-text {
        font-size: 12px;
    }
    
    .discover-btn {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .campaigns-title {
        font-size: 1.6rem;
    }
    
    .campaign-image {
        height: 120px;
    }
    
    .campaign-type-badge {
        top: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 9px;
    }
    
    .campaign-content {
        padding: 14px;
    }
    
    .campaign-title {
        font-size: 12px;
        min-height: 32px;
    }
    
    .discover-btn {
        font-size: 12px;
    }
}

/* ===============================
   Homepage Features Section
   =============================== */
.homepage-features-section {
    background: #fafcff;
    padding: 40px 0 20px 0;
}

.homepage-feature-col {
    margin-bottom: 24px;
}

.homepage-feature-item {
    gap: 18px;
    width: 100%;
    max-width: 520px;
}

.homepage-feature-icon {
    font-size: 48px;
    color: #FFA633;
    flex-shrink: 0;
    margin-top: 2px;
}

.homepage-feature-title {
    color: #FFA633;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    margin-top: 0;
}

.homepage-feature-desc {
    color: #222;
    font-size: 17px;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .homepage-feature-item {
        max-width: 100%;
    }
    .homepage-feature-title {
        font-size: 18px;
    }
    .homepage-feature-icon {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .homepage-features-section {
        padding: 30px 0 10px 0;
    }
    .homepage-feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .homepage-feature-title {
        font-size: 16px;
        letter-spacing: 1px;
    }
    .homepage-feature-icon {
        font-size: 32px;
        margin-bottom: 4px;
    }
}

/* ===============================
   Homepage Included Section
   =============================== */
.homepage-included-section {
    background: #fff;
    padding: 56px 0 40px 0;
}

/* ===============================
   Homepage Reviews Section
   =============================== */
.dalaman-reviews-section {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
}

/* ===============================
   About Blocks Section - Attractive & Compact
   =============================== */
.dalaman-about-blocks-section {
    background: linear-gradient(180deg, #fafbfc 0%, #f0f2f5 100%);
    padding: 40px 0;
    position: relative;
}

.about-blocks-grid {
    margin-bottom: 0;
}

.about-block-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
}

.about-block-card:hover {
    box-shadow: 0 12px 32px rgba(255, 166, 51, 0.15);
    border-color: #FFA633;
    transform: translateY(-4px);
}

.about-block-card-featured {
    border-color: rgba(255, 166, 51, 0.4);
    box-shadow: 0 6px 24px rgba(255, 166, 51, 0.12);
}

.about-block-card-featured:hover {
    box-shadow: 0 14px 36px rgba(255, 166, 51, 0.2);
}

.about-block-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-block-card .about-block-img {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.about-block-card .about-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-block-card:hover .about-block-img img {
    transform: scale(1.06);
}

.about-block-card .about-block-content {
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-block-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFA633;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-block-card-featured .about-block-title {
    color: #E6941A;
}

.about-block-card .about-block-content p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .dalaman-about-blocks-section {
        padding: 36px 0;
    }
    .about-block-card .about-block-img {
        height: 180px;
    }
    .about-block-card .about-block-content {
        padding: 20px 18px;
    }
    .about-block-title {
        font-size: 1rem;
    }
    .about-block-card .about-block-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .dalaman-about-blocks-section {
        padding: 28px 0;
    }
    .about-block-card .about-block-img {
        height: 160px;
    }
    .about-block-card .about-block-content {
        padding: 18px 16px;
    }
    .about-block-card .about-block-content p {
        font-size: 0.875rem;
    }
}

/* ===============================
   Airport Info Section - Modern Design
   =============================== */
.airport-info-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #fafbfc 100%);
    padding: 48px 0;
}

/* 1. Unified Payment + Guide Card */
.airport-info-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 40px;
}

.airport-pay-strip {
    background: linear-gradient(135deg, #FFA633 0%, #E6941A 100%);
    padding: 32px 28px;
}

.airport-pay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.airport-pay-icon {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
}

.airport-pay-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.airport-pay-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}

.airport-pay-logos {
    list-style: none;
    padding: 8px 16px;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
}

.airport-pay-logos li img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.airport-guide-strip {
    padding: 32px 36px;
}

.airport-guide-inner {
    position: relative;
}

.airport-guide-icon {
    font-size: 1.75rem;
    color: #FFA633;
    margin-bottom: 8px;
}

.airport-guide-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.airport-guide-inner p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* 2. Arrivals & Departures - Premium cards */
.airport-flights-block {
    margin-bottom: 40px;
}

.airport-flights-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.airport-flights-sub {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 24px;
}

.airport-flight-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.airport-flight-card:hover {
    box-shadow: 0 16px 40px rgba(255, 166, 51, 0.25);
    transform: translateY(-6px);
}

.airport-flight-card:hover .airport-flight-bg img {
    transform: scale(1.08);
}

.airport-flight-card:hover .airport-flight-cta {
    opacity: 1;
    transform: translateX(0);
}

.airport-flight-bg {
    position: absolute;
    inset: 0;
}

.airport-flight-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.airport-flight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.airport-flight-badge {
    display: inline-block;
    background: #FFA633;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 8px;
}

.airport-flight-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.airport-flight-cta {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.airport-flight-card:hover .airport-flight-cta {
    gap: 8px;
}

/* 3. Company Trust Block */
.airport-trust-block {
    margin-bottom: 0;
}

.airport-trust-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px 32px 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.airport-trust-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FFA633, #E6941A);
    border-radius: 4px 0 0 4px;
}

.airport-trust-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.airport-trust-icon {
    font-size: 1.75rem;
    color: #FFA633;
}

.airport-trust-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.airport-trust-content p {
    font-size: 17px;
    color: #495057;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .airport-pay-strip,
    .airport-guide-strip {
        padding: 24px 20px;
    }
    .airport-flight-card {
        height: 200px;
    }
    .airport-trust-card {
        padding: 24px 24px 24px 32px;
    }
}

@media (max-width: 767px) {
    .airport-info-section {
        padding: 36px 0;
    }
    .airport-info-card {
        margin-bottom: 32px;
    }
    .airport-pay-strip {
        padding: 24px 20px;
    }
    .airport-guide-inner p {
        font-size: 0.9rem;
    }
    .airport-flights-block {
        margin-bottom: 32px;
    }
    .airport-flight-card {
        height: 180px;
    }
    .airport-flight-badge {
        font-size: 0.7rem;
    }
    .airport-flight-label {
        font-size: 1.1rem;
    }
    .airport-trust-card {
        padding: 20px 20px 20px 28px;
    }
    .airport-trust-header h4 {
        font-size: 1.05rem;
    }
}

/* Reviews Content Wrapper */
.reviews-content-wrapper {
    margin: 0 auto;
}

/* Main Title */
.reviews-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFA633;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Main Content */
.reviews-main-content {
    margin-bottom: 25px;
}

.reviews-description {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
}

.reviews-description strong {
    color: #FFA633;
    font-weight: 600;
}

/* Call to Action */
.reviews-cta-content {
    text-align: center;
}

.cta-message {
    font-size: 1rem;
    color: #495057;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 500;
}

.cta-message strong {
    color: #FFA633;
    font-weight: 600;
}



/* Reviews Header */
.reviews-header {
    margin-bottom: 50px;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

.reviews-title span {
    color: #FFA633;
}

.reviews-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

.write-review-link {
    color: #FFA633;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.write-review-link:hover {
    color: #E6941A;
    text-decoration: none;
    transform: translateX(4px);
}

/* Reviews Carousel Wrapper */
.reviews-carousel-wrapper {
    position: relative;
    margin-bottom: 50px;
}

/* Review Cards */
.review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin: 0 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    position: relative;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 166, 51, 0.15);
    border-color: #FFA633;
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: #FFA633;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    line-height: 1.2;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    color: #FFA633;
    font-size: 14px;
}

.review-rating i.far {
    color: #e9ecef;
}

.review-date {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

/* Review Content */
.review-content {
    margin-bottom: 16px;
}

.review-content p {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
}

/* Review Footer */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.car-model {
    font-size: 13px;
    color: #FFA633;
    font-weight: 600;
    background: rgba(255, 166, 51, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.rental-duration {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

/* Reviews Pagination */
.reviews-pagination {
    margin-top: 30px;
    text-align: center;
}

.reviews-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.reviews-pagination-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reviews-pagination-dots .owl-dot.active {
    background: #FFA633;
    transform: scale(1.2);
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    padding-top: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 24px;
    line-height: 1.5;
}

.cta-text strong {
    color: #FFA633;
    font-weight: 700;
}

.contact-btn {
    display: inline-block;
    background: #FFA633;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #FFA633;
}

.contact-btn:hover {
    background: #E6941A;
    border-color: #E6941A;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 166, 51, 0.3);
}

/* Owl Carousel Custom Styles for Reviews */
.reviews-carousel.owl-carousel .owl-nav {
    display: none;
}

.reviews-carousel.owl-carousel .owl-dots {
    display: none;
}

/* Responsive Design for Reviews */
@media (max-width: 1199px) {
    .dalaman-reviews-section {
        padding: 50px 0;
    }
    
    .reviews-main-title {
        font-size: 2.5rem;
    }
    
    .reviews-description {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .dalaman-reviews-section {
        padding: 40px 0;
    }
    
    .reviews-main-title {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }
    
    .reviews-description {
        font-size: 0.95rem;
    }
    
    .cta-message {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .dalaman-reviews-section {
        padding: 35px 0;
    }
    
    .reviews-main-title {
        font-size: 1.8rem;
        letter-spacing: 0.3px;
    }
    
    .reviews-description {
        font-size: 0.9rem;
    }
    
    .cta-message {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .dalaman-reviews-section {
        padding: 30px 0;
    }
    
    .reviews-main-title {
        font-size: 1.6rem;
    }
    
    .reviews-description {
        font-size: 0.85rem;
    }
    
    .cta-message {
        font-size: 0.8rem;
    }
}

@media (max-width: 991px) {
    .reviews-section {
        padding: 50px 0;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .reviews-subtitle {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 18px;
        margin: 0 5px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .reviewer-name {
        font-size: 15px;
    }
    
    .review-content p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-title {
        font-size: 1.8rem;
    }
    
    .reviews-subtitle {
        font-size: 0.95rem;
    }
    
    .review-card {
        padding: 16px;
        margin: 0 3px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .reviewer-avatar {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .reviewer-name {
        font-size: 14px;
    }
    
    .review-content p {
        font-size: 12px;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .reviews-title {
        font-size: 1.6rem;
    }
    
    .review-card {
        padding: 14px;
    }
    
    .reviewer-avatar {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .reviewer-name {
        font-size: 13px;
    }
    
    .review-content p {
        font-size: 11px;
    }
    
    .contact-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

.included-title {
    color: #222;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 1px;
}

.included-title i {
    color: #FFA633;
    font-size: 1.5em;
}

.included-item-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.included-item-card:hover {
    background: #FFF5E1;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 166, 51, 0.15);
    border-color: #FFA633;
}

.included-item-icon {
    font-size: 2.5rem;
    color: #FFA633;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.included-item-card:hover .included-item-icon {
    color: #E6941A;
}

.included-item-content h5 {
    color: #222;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.included-item-content p {
    color: #666;
    font-size: 17px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* ===============================
   Popular Cars Section (Car Rental)
   =============================== */
.popular-cars-section {
    position: relative;
    overflow: hidden;
}

.popular-cars-section .popular-cars-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
    z-index: 0;
}

.popular-cars-section .container {
    position: relative;
    z-index: 1;
}

.car-category-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.car-category-card:hover {
    border-color: #FFA633;
    box-shadow: 0 12px 40px rgba(255, 166, 51, 0.15);
    transform: translateY(-4px);
}

.car-category-img {
    padding: 24px 24px 0;
    text-align: center;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-category-img img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.car-category-img a:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.car-category-content {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.car-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.car-category-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.car-category-title a:hover {
    color: #FFA633;
}

.car-category-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.car-category-specs li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #495057;
}

.car-category-specs li span {
    display: inline-flex;
}

.car-category-specs li span img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.car-category-content .btn-order {
    margin-top: auto;
    align-self: flex-start;
}

/* Work Section - Car Rental */
.work-car-rental-section .work-icon i {
    font-size: 2rem;
}

/* FAQ Section - Car Rental */
.faq-car-rental-section .count-box h3 span:not(.counterUp) {
    font-size: inherit;
}

@media (max-width: 991px) {
    .homepage-included-section {
        padding: 40px 0 24px 0;
    }
    .included-title {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
    .included-item-card {
        padding: 20px 16px;
    }
    .included-item-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 767px) {
    .homepage-included-section {
        padding: 24px 0 10px 0;
    }
    .included-title {
        font-size: 1.3rem;
        margin-bottom: 0;
    }
    .included-item-card {
        padding: 18px 16px;
    }
    .included-item-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .included-item-content h5 {
        font-size: 0.95rem;
    }
    .included-item-content p {
        font-size: 0.85rem;
    }
}

