/* ============================================================
   TRAVEL APP SECTION — CUSTOM UI
============================================================ */

.app-showcase-section {
    background: var(--hn-bg-soft);
    padding-top: 80px;
    padding-bottom: 60px;
}

.app-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.app-showcase-section .hn-container {
    overflow: visible !important;
}
/* Outer wrapper should NOT clip the circle */
.app-showcase-image {
    position: relative;
    overflow: visible !important;
}

/* Orange rounded background blob */
.app-showcase-image-bg {
    width: 360px;
    height: 360px;

    background: var(--hn-primary-soft);
    border-radius: 50%;   /* <-- THIS makes it perfectly round */

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0 auto;

    box-shadow: var(--hn-shadow-lg);
    transform: rotate(-2deg);
}


/* Phone mockup image */
.app-showcase-image-bg img {
    width: 380px;
    height: auto;

    /* Slight lift effect like the mockups */
    transform: translateY(-10px);

    /* Prevent touching the circle edges */
    padding: 20px;
}


/* Right Content */
.app-showcase-content {
    padding-right: 20px;
}

.app-feature-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.app-feature-list li {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--hn-text-soft);
}

/* Buttons */
.app-showcase-buttons {
    margin-top: 25px;
    display: flex;
    gap: 14px;
}

.app-ios-disabled {
    opacity: 0.6;
    cursor: default;
}

/* ---------------------------
   MOBILE RESPONSIVE
---------------------------- */
@media (max-width: 768px) {
    .app-showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-showcase-content {
        padding-right: 0;
    }

    .app-feature-list li {
        text-align: left;
        margin-left: 14px;
    }

    .app-showcase-buttons {
        flex-direction: column;
    }

    .app-showcase-buttons .hn-btn {
        justify-content: center;
    }
}

/* ============================================================
   TAXI CONCIERGE — TWO COLUMN LAYOUT
============================================================ */

.taxi-concierge-section {
    background: #fff;
    padding-top: 70px;
    padding-bottom: 60px;
}

/* GRID LAYOUT */
.taxi-row {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* TITLE BLOCK */
.taxi-concierge-title {
    margin-bottom: 12px;
}

.powered-label {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--hn-primary);
    background: var(--hn-primary-bg-soft);
    padding: 6px 14px;
    border-radius: var(--hn-radius-pill);
    box-shadow: 0 4px 12px rgba(255, 85, 39, 0.15);
    margin-bottom: 18px;
}

/* TEXT CONTENT */
.taxi-concierge-text {
    max-width: 700px;
}

.taxi-concierge-body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--hn-text-soft);
    margin-bottom: 14px;
}

/* CARD SIDE */
.taxi-card {
    display: block;
    width: 100%;
    max-width: 400px;
    text-decoration: none;
}

.taxi-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--hn-border-soft);
}

.taxi-card-cta {
    margin-top: 16px;
}

.taxi-card-cta .hn-btn {
    padding: 10px 16px;
}

/* RESPONSIVE */
@media (max-width: 850px) {

    .taxi-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .taxi-card {
        max-width: 100%;
    }
}

/* ============================================================
   ONLINE SERVICES SECTION
============================================================ */

.online-services-section {
    background: var(--hn-bg-soft);
    padding-top: 70px;
    padding-bottom: 70px;
}

/* TEXT BLOCK */
.online-services-text {
    max-width: 780px;
    margin-bottom: 40px;
}

.online-services-body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--hn-text-soft);
    margin-bottom: 14px;
}

/* GRID LAYOUT */
.online-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* CARD */
.service-card {
    display: block;
    overflow: hidden;

}

.service-card-img {
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid var(--hn-border-soft);
}

.service-card-cta {
    margin-top: 16px;
}

/* BUTTON SIZES FIX */
.service-card-cta .hn-btn {
    padding: 10px 16px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .online-services-grid {
        grid-template-columns: 1fr;
    }
}


/**********Improvements**********/
.hn-section-divider {
    width: 60px;
    height: 4px;
    background: var(--hn-primary);
    border-radius: 6px;
    margin: auto;
}
.hn-section-title {
    font-size: 28px;
    font-weight: 800;
}

