:root {
    --primary-color: #754da5;
    --secondary-color: #ffa009;
    --bs-primary: var(--primary-color);
    --bs-secondary: var(--secondary-color);
    --bs-primary-rgb: 117, 77, 165;
    --bs-secondary-rgb: 255, 160, 9;
    --bs-body-font-family: "Noto Sans", sans-serif;
    --bs-body-line-height: 1.6;
}

a{
    color: var(--primary-color);
    transition: all .25s linear;
}

a:hover{
    color: var(--secondary-color);
}

.modal {
    --bs-modal-width: 800px;
}

.section-title {
    margin-bottom: 1.6rem;
    color: var(--primary-color);
}

.btn-theme-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.btn-secondary{
    --bs-btn-bg: var(--secondary-color);
}

.nav-item.active .nav-link {
    position: relative;
}

.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
    border-radius: 30px;
}
.hcta-container {
    display: flex;
    align-items: center;
}

.cta-mobile-button{
    text-decoration: none;
    color: #222;
}

/* main inline */
.hcta-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
    padding-left: 12px;
    position: relative;
}

/* subtle left accent line */
/*.hcta-inline::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    height: 70%;*/
/*    width: 2px;*/
/*    background: #e5e7eb;*/
/*}*/

/* icon */
.hcta-icon {
    font-size: 15px;
    color: #6b7280;
}

/* text */
.hcta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* small label */
.hcta-sub {
    font-size: 11px;
    color: #6b7280;
    letter-spacing: 0.3px;
}

/* main number */
.hcta-inline .hcta-number {
    font-size: 17px;
    font-weight: 700;
    color: #000;
}

/* subtle hover */
.hcta-inline:hover .hcta-number {
    color: #111;
}

.hcta-inline:hover .hcta-icon {
    color: #000;
}


/* Banner */

.hero {
    position: relative;
    min-height: 500px;
    background-image: linear-gradient(45deg, #ee1f1fdb, #1d2775cd);
    display: flex;
    width: 100%;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/*.hero::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: #1d2775;*/
/*    opacity: 0.4;*/
/*}*/

.hero-body {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.hero h1,
.hero p {
    color: #fff;
}

.home-hero {
    
    background-image: url('../images/main-hero-banner.webp');
}

.hotels-hero {
    background-image: url('../images/hotels-bg.jpg');
}
.car-rentals-hero {
    background-image: url('../images/car-rentals-bg.webp');
}

/* Main banner container */
.cta-strip-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    position: relative;
    overflow: hidden;
}

/* Travel icon styling */
.cta-strip-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 15px;
}

/* Main promotional text */
.cta-strip-text {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Subtext for additional context */
.cta-strip-subtext {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

/* Call-to-action button */
.cta-strip-button {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

/* Hover effect for button */
.cta-strip-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

@media screen and (max-width: 575px){
    .cta-strip-banner{
        flex-flow: column;
        height: 100%;
        gap: 15px;
    }
    .navbar-brand {
        --bs-navbar-brand-margin-end: 0;
    }
    .navbar-brand img {
        width: 150px;
    }
}

@media screen and (max-width: 370px){
    .navbar-brand img {
        width: 120px;
    }
}

/* Book With */
.book-with-unified-card {
    background: var(--light-color);
    border-radius: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    margin: 30px auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.book-with-card-inner {
    padding: 4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 2;
}

.book-with-content-area {
    flex: 1;
    min-width: 280px;
    padding-right: 2rem;
}

.book-with-header {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.book-with-description {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.book-with-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.book-with-feature {
    display: flex;
    align-items: center;
    margin-right: 2rem;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.book-with-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(117, 77, 165, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.book-with-feature-icon i {
    font-size: 1rem;
    color: var(--primary-color);
}

.book-with-feature-text {
    color: var(--dark-color);
    font-weight: 500;
}

.book-with-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
}

.book-with-image-container {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    /*box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);*/
    position: relative;
}

.book-with-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.book-with-image-container:hover img {
    transform: scale(1.05);
}

.book-with-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 171, 145, 0.3) 0%, rgba(255, 142, 101, 0.2) 100%);
    z-index: 1;
}

.book-with-decoration-1 {
    top: -50px;
    right: -50px;
}

.book-with-decoration-2 {
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
}

.book-with-cta-button {
    background: linear-gradient(45deg, #FFFFFF 0%, #F5F5F5 100%);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.book-with-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.book-with-cta-button i {
    margin-left: 0.75rem;
}

@media (max-width: 992px) {
    .book-with-card-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .book-with-content-area {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .book-with-image-area {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .book-with-header {
        font-size: 1.6rem;
    }
    
    .book-with-description {
        font-size: 1rem;
    }
    
    .book-with-feature {
        margin: 0 1rem 1rem;
    }
    .book-with-card-inner{
        padding: 1rem;
    }
}

section {
    background: #fff;
}

.bg-section {
    background-color: #1d27750f;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed){
    --bs-accordion-active-bg: #fff;
}


/* ===============================
   FLIGHT CARD (MODERN UI)
================================= */

.flight-card {
    display: block;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
}

.flight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Image */
.flight-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.flight-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.flight-card:hover .flight-card-img img {
    transform: scale(1.08);
}

/* Tag */
.flight-card .tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Body */
.flight-card-body {
    padding: 20px;
}

/* Route */
.flight-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 12px;
}

/*.flight-route .plane {*/
/*    font-size: 18px;*/
/*    opacity: 0.6;*/
/*}*/

.flight-route .plane {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.flight-route .plane img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Smooth animation on hover */
.flight-card:hover .plane img {
    transform: translateX(4px) rotate(10deg);
}

/* Dates */
.dates-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 15px;
}

.dates-wrapper .label {
    color: #888;
}

.dates-wrapper .dates {
    color: #2c3e50;
    font-weight: 500;
}

/* Price */
.pricing-wrapper {
    border-top: 1px solid #f1f1f1;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 12px;
    color: #888;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Hover subtle glow */
.flight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: 0.4s;
}

.flight-card:hover::after {
    opacity: 1;
}


/* Mobile-only sticky CTA button */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    text-align: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-cta:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

.cta-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.9;
}

.cta-number {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.cta-number i.fa-headset::before{
    color: var( --secondary-color );
}

/* Phone icon */
.phone-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    color: var(--secondary-color);
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .mobile-cta {
        display: block;
        width: 90%;
    }
}


/* Trust cards */

.trust-container {
    margin: 1.5rem auto;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 20px 25px;
    border: 1px solid #e5e7eb;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    box-shadow: none;
    padding: 10px;
}

/* remove old hover + top border */
.trust-card:hover {
    transform: none;
    box-shadow: none;
}

.trust-card::before {
    display: none;
}

/* icon */
.trust-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* text */
.trust-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.trust-description {
    font-size: 13px;
    color: #6b7280;
    margin: 3px 0 0;
}

/* stack text */
.trust-text {
    display: flex;
    flex-direction: column;
}

/* responsive */
@media (max-width: 768px) {
    .trust-cards {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .trust-cards {
        grid-template-columns: 1fr;
    }
}

/* Footer  */

.footer {
    background-color: var(--primary-color);
    color: var(--bs-light);
    padding: 60px 0 0px;
}

.footer h3 {
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--bs-light);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 12px;
}

.footer a {
    color: var(--bs-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--bs-light);
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
    color: #adb5bd;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--bs-light);
}

.contact-info i {
    width: 24px;
    display: inline-block;
    margin-right: 10px;
    color: var(--secondary-color);
}

.payment-methods.img {
    /*height: 40px;*/
    width: 100px;
    margin-right: 15px;
    /*filter: grayscale(100%) brightness(0.8);*/
    transition: filter 0.3s ease;
}

/*.payment-methods.img:hover {*/
/*    filter: grayscale(0%) brightness(1);*/
/*}*/

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #cecece;
    font-size: 0.9rem;
    /*color: #888;*/
}

/*.footer-logo {*/
/*    filter: brightness(0) invert(1);*/
/*}*/

@media screen and (max-width: 575px ){
    .footer{
        padding: 60px 0 70px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner button {
    background: #4caf50;
    border: none;
    padding: 8px 15px;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.booking-info {
  background: #fefeff;
  padding: 30px 20px;
  color: #333;
  box-shadow: 0 0 25px #ececec;
  border-radius: 8px;
}

.booking-info strong {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 10px;
}


.booking-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.accordion-button strong {
    font-size: 1rem;
    margin: 0;
}

.location-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}

.location-card img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover Zoom */
.location-card:hover img {
    transform: scale(1.06);
}

/* Overlay Gradient */
.location-card .location-overlay{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.2),
        transparent
    );
}

.location-card .location-overlay > div{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

/* Title */
.location-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Price Badge */
.location-price-from {
    display: block;
    margin-top: 6px;
    padding: 5px 12px;
    font-size: 18px;
    border-radius: 20px;
    background: var(--secondary-color);
    color: #fff;
}

@media only screen and (min-width: 920px) {
    .container-fluid {
        --bs-gutter-x: 16rem;
    }
    
    nav.navbar .container-fluid,
    .footer-bottom .container-fluid, 
    footer .container-fluid{
        --bs-gutter-x: 8rem;
    }
}