/* =====================================================
   ATL BLOG TEMPLATE — SHARED STYLING
===================================================== */

/* ---------------- Banner Section ---------------- */
.banner-wrapper .breadcums,
.banner-wrapper .breadcums-light {
    text-decoration: none;
    color: #fff;
}

.banner-wrapper .breadcums-light {
    color: #ffc107;
}

.banner-wrapper .fa-angle-double-right {
    color: #fff;
    margin: 0 5px;
}

/* ---------------- Main Container ---------------- */
.innher-page {
    padding: 60px 0;
}

/* ---------------- Left Sidebar ---------------- */
.left-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ---------------- Services Menu ---------------- */
.menu-single-service-menu-container ul.menu {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.menu-single-service-menu-container ul.menu li a.tab-service {
    background-color: #F6F6F6;
    display: block;
    padding: 17px 20px 20px;
    margin-top: 10px;
    color: #003c2e;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.menu-single-service-menu-container ul.menu li:hover a {
    background: #325c52;
    color: #fff;
}

/* ---------------- Sidebar Boxes ---------------- */
.book-ride-innher {
    width: 100%;
    padding: 30px;
    border: 1px solid #EAECEE;
    margin-bottom: 27px;
    text-align: center;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.book-ride-innher:hover {
    transform: translateY(-3px);
}

.book-ride-innher .boooking-box img {
    max-width: 100px;
    margin-bottom: 10px;
}

/* ---------------- Featured Image Hero ---------------- */
.airport-transfer-hero {
    margin-bottom: 2rem;
}

.airport-transfer-hero img {
    width: 100%;
    margin-top: 20px;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* ---------------- Right Content ---------------- */
.right-content img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 20px;
}

/* ---------------- Value Points Section ---------------- */
.value-points h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* =====================================================
   FAQ Accordion — Clean & Reusable
===================================================== */

.faq-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

/* Accordion Item Wrapper */
.accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #000;
    padding: 0;
    margin: 0;
}

/* Accordion Button */
.accordion button {
    width: 100%;
    text-align: left;
    padding: 1em 0;
    background: transparent !important;
    border: none;
    font-size: 1.1rem;
    color: #000;
    position: relative;
    transition: color .3s ease, border-color .3s ease;
    box-shadow: none !important;
}

/* Hover + Expanded */
.accordion button:hover,
.accordion button[aria-expanded="true"] {
    color: #325c52 !important;
    border-bottom: 1px solid #325c52;
}

/* Toggle Icon */
.accordion button .icon {
    position: absolute;
    right: 0;
    top: 16px;
    width: 22px;
    height: 22px;
    border: 1px solid currentColor;
    border-radius: 50%;
}

/* Plus / Minus Lines */
.accordion button .icon::before,
.accordion button .icon::after {
    content: "";
    position: absolute;
    background: currentColor;
    transition: .2s ease;
}

.accordion button .icon::before {
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
}

.accordion button .icon::after {
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
}

/* Expanded = minus symbol */
.accordion button[aria-expanded="true"] .icon::after {
    height: 0;
}

/* Accordion Content Animation */
.accordion .accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .4s ease;
}

.accordion button[aria-expanded="true"] + .accordion-content {
    max-height: 999px;
    opacity: 1;
}
/* Keep accordion question text black when collapsed */
.accordion button[aria-expanded="false"] {
    color: #000 !important;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 991px) {
    .right-content {
        margin-top: 30px;
    }
}
