/* =========================================================
   ABOUT PAGE STYLES – Airports Travel Ltd
   ========================================================= */

/* ---------------------------------------------------------
   1. Banner Section (Top header area with background image)
   --------------------------------------------------------- */
.banner-wrapper {
    padding: 200px 0px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 999;
}

/* Overlay effect (dark layer over banner image) */
.banner-wrapper:after {
    background: #000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    content: '';
}

/* Ensure banner text stays above overlay */
.banner-wrapper .container {
    z-index: 9999;
    position: relative;
}

/* Banner title styling */
.banner-wrapper h1 {
    font-size: 48px !important;
    font-family: 'Fira Sans Condensed';
    font-weight: 500 !important;
    color: #fff;
    text-transform: uppercase;
    border: 0;
    position: relative;
    z-index: 999;
}

/* Breadcrumb links on banner – fixed white & yellow version */
.banner-wrapper .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* space between items */
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 16px;
    margin-top: 10px;
}

.banner-wrapper .breadcrumb a {
    color: #ffffff;        /* white for "Home" */
    text-decoration: none;
}

.banner-wrapper .breadcrumb i.fas.fa-angle-double-right  {
    color: #ffffff;        /* white for the arrows */
    font-size: 14px;
}
.banner-wrapper .breadcrumb a.breadcums-light {
    color: #ffe200; /* yellow for About Us */
}

/*.banner-wrapper .breadcrumb span {
    color: #ffe200;
}*/

/* ---------------------------------------------------------
   2. About Section (Top part with text + car image on left)
   --------------------------------------------------------- */
section.about-section {
    padding: 150px 0 50px 0;
    position: relative;
    z-index: 1; /* ensures content sits above pseudo-element */
}

/* Add background car image on the left side */
section.about-section:before {
    content: '';
    position: absolute;
    left: -160px;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    width: 100%;
    height: 100%;
    z-index: -1; /* pushes car image behind content */
}

/* About section header title */
.about-content-header h2 {
    font-size: 36px !important;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500 !important;
    color: #192026;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* Small subheading text under main title */
.about-content-header span {
    color: #585858;
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin-top: 5px;
}

/* Larger subtitle text for inner pages */
section.about-section.innher-page .about-content-header span {
    color: #585858;
    font-size: 21px;
}

/* ---------------------------------------------------------
   3. About Section Details (Green background area)
   --------------------------------------------------------- */
section.about-section-detalis {
    background: #325c52;
}

/* Section headings inside details */
section.about-section-detalis h5 {
    color: #fff;
    font-size: 20px;
    font-family: 'Fira Sans Condensed', sans-serif !important;
    font-weight: 500 !important;
    text-transform: none;
    line-height: 1.3;
    white-space: nowrap; /* Keeps the heading on one line */
}

/* Paragraphs inside details */
section.about-section-detalis p {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Fira Sans', sans-serif !important;
}

/* List layout for detail items */
section.about-section-detalis ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

/* Each individual item block (list element) */
section.about-section-detalis ul li {
    list-style: none; /* removes black bullets */
    width: 42%;
    margin-bottom: 30px;
    margin-right: 60px;
    text-align: justify;
}

/* Inner padding for content */
section.about-section-detalis .about-detail {
    padding: 80px 0 0 180px;
}

/* ---------------------------------------------------------
   4. Generic text styles (applied to About page paragraphs)
   --------------------------------------------------------- */
section.about-section.innher-page p {
    line-height: 30px;
}

/* Small spacing between header and detail sections */
.about-content-header {
    margin-bottom: 15px;
}

/* Paragraph styling for About content (gray text) */
.about-detail p {
    font-size: 16px;
    color: #585858;
    line-height: 24px;
    font-weight: 400;
}

/* “Learn more” or CTA button styling */
.about-detail a {
    font-size: 18px;
    display: inline-block;
    background: #325c52;
    color: #fff;
    padding: 10px 40px;
    border-radius: 30px;
    margin-top: 20px;
    border: 1px solid;
}

/* ---------------------------------------------------------
   5. Responsive Adjustments (Mobile & Tablet)
   --------------------------------------------------------- */

/* For large screens down to 1400px */
@media (max-width: 1400px) {
    section.about-section:before {
        width: 650px;
        left: -290px;
    }
}

/* For medium-large screens (1200px – 1300px) */
@media (max-width: 1300px) {
    section.about-section:before {
        left: -190px;
    }
}

/* For tablets (up to 991px) */
@media (max-width: 991px) {
    section.about-section:before {
        display: none; /* Hide car image on smaller screens */
    }

    section.about-section,
    section.about-section-detalis {
        padding: 60px 20px;
    }

    section.about-section-detalis .about-detail {
        padding: 30px 10px;
    }

    section.about-section-detalis ul li {
        width: 100%;
        margin-right: 0;
        text-align: left;
    }
}

/* For mobile phones (max 767px) */
@media (max-width: 767px) {
    .banner-wrapper {
        padding: 100px 0;
    }

    .banner-wrapper h1 {
        font-size: 30px !important;
    }

    section.about-section {
        padding: 80px 0 40px 0;
    }

    section.about-section-detalis ul li {
        width: 100%;
        margin: 0 0 20px 0;
    }
    
    section.about-section-detalis h5 {
        white-space: normal; /* allow wrapping on smaller screens */
        text-align: center;
    }
}

/* For very small devices (max 520px) */
@media (max-width: 520px) {
    .banner-wrapper {
        padding: 80px 0;
    }

    .banner-wrapper h1 {
        font-size: 26px !important;
    }

    .about-content-header h2 {
        font-size: 32px !important;
    }

    section.about-section-detalis p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ---------------------------------------------------------
   6. Bottom About Us Section (Full-width banner image)
   --------------------------------------------------------- */
.bottom-about-us {
    margin: 0;
    padding: 0;
}

.bottom-about-us .img-box {
    position: relative !important;
    width: 100% !important;
    height: 400px !important;          /* desired banner height */
    margin: 0 !important;
    padding: 0 !important;
}

.bottom-about-us .img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;      /* maintains aspect ratio, crops if needed */
    display: block !important;
}

/* ---------------------------------------------------------
   6. Bottom Full-Width Image Section
   --------------------------------------------------------- */
body {
    overflow-x: hidden; /* Prevents scrollbar caused by 100vw */
}

.bottom-about-us {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 0;
}

.bottom-about-us img {
    width: 100%;
    height: 50vh; /* responsive height */
    min-height: 250px;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* =========================================================
   END OF ABOUT PAGE STYLES
   ========================================================= */
