/* ==========================================================================
   Hidden Sections CSS
   Hide booking, car listing, drivers, app download, and blog sections
   across all pages. To restore, comment out or remove the display:none rules.
   ========================================================================== */

/* HIDDEN: Booking Section */
.booking-one,
.booking-two,
.booking-three,
section[class*="booking-"] {
    display: none !important;
}

/* HIDDEN: Car Listing / Car Types Section */
.listing-one,
.listing-two,
.listing-three,
section[class*="listing-"] {
    display: none !important;
}

/* HIDDEN: Popular Cars Section */
.popular-car,
.popular-cars,
section[class*="popular-car"] {
    display: none !important;
}

/* HIDDEN: Team / Drivers Section */
.team-one,
.team-two,
.team-three,
section[class*="team-"] {
    display: none !important;
}

/* HIDDEN: App Download Section */
.app-one,
.app-two,
.app-three,
.app-download,
section[class*="app-"] {
    display: none !important;
}

/* HIDDEN: Blog Section */
.blog-one,
.blog-two,
.blog-three,
section[class*="blog-"] {
    display: none !important;
}

/*
   ========================================
   HOW TO RESTORE HIDDEN SECTIONS:
   ========================================
   
   To restore any section, simply comment out or delete 
   the corresponding CSS rule above.
   
   For example, to restore the Booking section:
   
   // .booking-one,
   // .booking-two,
   // .booking-three,
   // section[class*="booking-"] {
   //     display: none !important;
   // }
   
   ========================================
*/