/* ====== Hero Premium (homepage hero + quick booking card) ======
   Colors reused from css/style.css only: #ffc600 (gold), #07294d /
   #021d3a / #24486e (navy shades), #0c364c (heading navy),
   #8a8a8a (gray text), #edf0f2 (light gray bg), #cecece (border gray). */

#hero-premium {
    position: relative;
    padding: 70px 0 40px;
    overflow: hidden;
}

#hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(2, 29, 58, 0.9) 0%, rgba(7, 41, 77, 0.8) 45%, rgba(36, 72, 110, 0.6) 100%);
    z-index: 1;
}

#hero-premium .container {
    position: relative;
    z-index: 2;
}

.hero-premium-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 40px 0 30px;
}

.hero-premium-left {
    flex: 1 1 460px;
}

.hero-premium-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 22px;
}

.hero-premium-title .line {
    display: block;
}

.hero-premium-title .accent {
    color: #ffc600;
}

.hero-premium-text {
    color: #edf0f2;
    font-size: 17px;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-premium-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.hero-btn-primary,
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: 0.4s ease-in-out;
}

.hero-btn-primary {
    background-color: #ffc600;
    color: #07294d;
    border: 1px solid #ffc600;
}

.hero-btn-primary:hover {
    background-color: #07294d;
    color: #ffc600;
    border-color: #07294d;
}

.hero-btn-outline {
    color: #fff;
    border: 1px solid #ffc600;
}

.hero-btn-outline:hover {
    background-color: #ffc600;
    color: #07294d;
}

.hero-trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: #edf0f2;
    font-size: 14px;
}

.hero-trust-row span i {
    color: #ffc600;
    margin-right: 6px;
}

.hero-premium-right {
    flex: 1 1 360px;
    display: flex;
    justify-content: center;
}

.hero-booking-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(2, 29, 58, 0.35);
    width: 100%;
    max-width: 420px;
    margin: 30px 20px;
}

.hero-booking-card h4 {
    font-size: 19px;
    margin-bottom: 4px;
}

.hero-booking-card .sub {
    font-size: 13px;
    color: #8a8a8a;
    margin-bottom: 20px;
}

.hero-booking-card label {
    font-size: 12px;
    font-weight: 600;
    color: #07294d;
    margin-bottom: 6px;
    display: block;
}

.hero-booking-card select,
.hero-booking-card input {
    background: #edf0f2;
    border: 1px solid #cecece;
    border-radius: 5px;
    height: 46px;
    font-size: 14px;
    color: #505050;
    padding: 0 12px;
    width: 100%;
}

.hero-booking-card .row-gap {
    margin: 0 -8px 16px;
}

.hero-booking-card .row-gap .col-6 {
    padding: 0 8px;
}

.hero-get-quote-btn {
    width: 100%;
    background-color: #e41645;
    border: 0;
    color: #fff;
    padding: 14px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.4s ease-in-out;
}

.hero-get-quote-btn:hover {
    color: #ffc600;
    background-color: #07294d;
}

.hero-badge {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 10px 25px rgba(2, 29, 58, 0.2);
    font-size: 13px;
    color: #8a8a8a;
    line-height: 1.3;
    white-space: nowrap;
}

.hero-badge-clients {
    top: -54px;
    left: -14px;
    text-align: center;
}

.hero-badge-clients b {
    display: block;
    font-size: 20px;
    color: #0c364c;
}

.hero-badge-service {
    bottom: -16px;
    right: -14px;
    background: #07294d;
    color: #ffc600;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 991px) {
    .hero-premium-title {
        font-size: 32px;
    }

    .hero-premium-grid {
        justify-content: center;
        text-align: center;
    }

    .hero-premium-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-premium-buttons,
    .hero-trust-row {
        justify-content: center;
    }

    .hero-booking-card {
        margin: 40px 20px 20px;
    }
}

@media (max-width: 480px) {
    .hero-premium-title {
        font-size: 26px;
    }

    .hero-booking-card .row-gap {
        display: block;
    }

    .hero-booking-card .row-gap .col-6 {
        margin-bottom: 12px;
    }
}

/* ====== Why Choose Us cards: color-per-card layout ====== */

.about-items .about-single-items {
    text-align: center;
    border-radius: 14px;
    padding: 32px 28px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(2, 29, 58, 0.06);
}

.why-choose-icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.about-items .about-single-items .section-title h5::before {
    display: none;
}

.about-items .about-single-items .section-title {
    position: relative;
    padding-bottom: 14px;
}

.about-items .about-single-items .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 3px;
    border-radius: 2px;
}

.why-choose-1 {
    background: #eaf3ff;
}
.why-choose-1 .section-title::after {
    background-color: #3b82f6;
}

.why-choose-2 {
    background: #eafaf1;
}
.why-choose-2 .section-title::after {
    background-color: #10b981;
}

.why-choose-3 {
    background: #f3ecfd;
}
.why-choose-3 .section-title::after {
    background-color: #8b5cf6;
}

.why-choose-4 {
    background: #fdf6e5;
}
.why-choose-4 .section-title::after {
    background-color: #f59e0b;
}

.why-choose-5 {
    background: #fdecf1;
}
.why-choose-5 .section-title::after {
    background-color: #ec4899;
}

.why-choose-6 {
    background: #e7f1fc;
}
.why-choose-6 .section-title::after {
    background-color: #0ea5e9;
}

.why-choose-7 {
    background: #e8f9f5;
}
.why-choose-7 .section-title::after {
    background-color: #14b8a6;
}

.why-choose-8 {
    background: #f1eefc;
}
.why-choose-8 .section-title::after {
    background-color: #7c6ee8;
}

.why-choose-9 {
    background: #fdece2;
}
.why-choose-9 .section-title::after {
    background-color: #f97316;
}

.why-choose-10 {
    background: #eaf1fd;
}
.why-choose-10 .section-title::after {
    background-color: #4f7fe0;
}

/* ====== Homepage Q&A accordion (teaser, links out to /faq/) ====== */

.qa-view-all-btn {
    color: #07294d;
    border-color: #07294d;
}

.qa-view-all-btn:hover {
    background-color: #07294d;
    color: #ffc600;
}

.qa-item {
    background: #edf0f2;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}

.qa-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0c364c;
}

.qa-item-header:hover {
    color: #0c364c;
}

.qa-item-header i {
    flex: 0 0 auto;
    color: #07294d;
    transition: transform 0.25s ease;
}

.qa-item-header:not(.collapsed) i {
    transform: rotate(45deg);
    color: #e41645;
}

.qa-item-body {
    padding: 0 26px 24px;
    color: #505050;
}

.qa-item-body p {
    line-height: 1.8;
    margin-bottom: 12px;
}

.qa-item-body p:last-child {
    margin-bottom: 0;
}

.qa-item-body ul li {
    color: #505050;
    margin-bottom: 8px;
}

.qa-item-body ul li i {
    color: #ffc600;
    margin-right: 8px;
}

@media (max-width: 991px) {
    .qa-view-all-btn {
        margin-top: 16px;
        display: inline-flex;
    }
}

/* ====== "Our transfers from paris airport" feature cards ====== */

.about-premium-section {
    background: #edf0f2;
}

.about-premium-section .about-cont > p {
    font-size: 17px;
    line-height: 1.85;
    color: #505050;
}

.about-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(2, 29, 58, 0.08);
    border-top: 3px solid #ffc600;
    transition: 0.3s ease-in-out;
    height: 100%;
}

.about-feature-card:hover {
    box-shadow: 0 20px 50px rgba(2, 29, 58, 0.14);
    transform: translateY(-4px);
}

.about-feature-card-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    background-color: #07294d;
    color: #ffc600;
    text-align: center;
    font-size: 22px;
    box-shadow: 0 8px 18px rgba(7, 41, 77, 0.3);
}

.about-feature-card-body h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.about-feature-card-body p {
    color: #505050;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-feature-card-body p:last-child {
    margin-bottom: 0;
}

.about-image-framed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(2, 29, 58, 0.2);
}

.about-image-framed img {
    display: block;
    border-radius: 12px;
}

@media (max-width: 767px) {
    .about-feature-card {
        padding: 24px;
    }
}

/* ====== Center the section-title accent line when the title itself is centered ====== */

.section-title.text-center h5::before {
    left: 50%;
    transform: translateX(-50%);
}

/* ====== Testimonial section subtext (dark bg needs light text) ====== */

#testimonial .section-title p {
    color: #edf0f2;
}

/* ====== Final CTA (Ready to Experience Premium Travel?) ====== */

.cta-premium {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: linear-gradient(115deg, #021d3a 0%, #07294d 50%, #24486e 100%);
}

.cta-premium-inner {
    max-width: 620px;
    margin: 0 auto;
}

.cta-premium-icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    background-color: #ffc600;
    color: #07294d;
    font-size: 24px;
    margin: 0 auto 22px;
}

.cta-premium h2 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-premium p {
    color: #edf0f2;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.cta-premium-btn {
    font-size: 16px;
    padding: 16px 34px;
}

@media (max-width: 480px) {
    .cta-premium {
        padding: 60px 0;
    }

    .cta-premium h2 {
        font-size: 28px;
    }
}
