: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;
}

.cta-container {
    text-align: center;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #1d287552 0%, #ee1f1f52 100%); */
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 6px 10px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(37, 117, 252, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover:before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 117, 252, 0.4);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
}

.cta-button i {
    /*margin-right: 12px;*/
    font-size: 20px;
}

.phone-number {
    font-weight: 700;
    margin-left: 8px;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    flex-flow: column;
    line-height: 1.2;
}
span.phone-text {
    font-size: 13px;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 117, 252, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 117, 252, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 117, 252, 0);
    }
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

/* Banner */

.hero {
    position: relative;
    min-height: 350px;
    background-image: linear-gradient(45deg, #ee1f1fdb, #1d2775cd);
    display: flex;
    width: 100%;
    align-items: center;
    background-position: 50% 90%;
    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/home-banner.jpg');
}

.hotels-hero {
    background-image: url('../images/hotels-bg.jpg');
}

.car-rentals-hero {
    background-image: url('../images/car-rentals-bg.jpg');
}

/* 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;
    }
}

/* 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;
}

/* Flight Card */
.flight-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 24px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.flight-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.flight-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.flight-card .tag {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.flight-card .tag::after {
    content: '';
    background: var(--secondary-color);
    display: block;
    width: 15px;
    height: 6px;
    bottom: -5px;
    position: absolute;
    right: 2px;
    transform: skew(-50deg);
    border-radius: 0 16px 16px 0;
    z-index: 1;
}

.flight-card .route,
.flight-card .to {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.flight-card .from {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 12px;
}

.dates-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--secondary-color);
}

.pricing-wrapper {
    border-top: 1px solid #ccc;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.flight-card .dates {
    font-size: 14px;
    color: #34495e;
    margin-bottom: 4px;
}

.flight-card .airplane {
    font-size: 24px;
    text-align: center;
    margin: 8px 0;
}

.flight-card .price-label {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 700;
}

.flight-card .price {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 700;
}


/* Mobile-only sticky CTA button */
.mobile-cta {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 90%;
    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;
    }
}


/* Trust cards */

.trust-container {
    margin: 1.5rem auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.trust-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-accent), var(--card-accent-light));
}

.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--icon-bg);
    color: var(--icon-color);
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trust-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.trust-description {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Custom properties for each card */
.card-trust .trust-icon { --icon-bg: #e6f7ff; --icon-color: #1890ff; }
.card-support .trust-icon { --icon-bg: #f6ffed; --icon-color: #52c41a; }
.card-security .trust-icon { --icon-bg: #fff2e8; --icon-color: #fa8c16; }
.card-price .trust-icon { --icon-bg: #f9f0ff; --icon-color: #722ed1; }

.card-trust::before { --card-accent: #1890ff; --card-accent-light: #91caff; }
.card-support::before { --card-accent: #52c41a; --card-accent-light: #b7eb8f; }
.card-security::before { --card-accent: #fa8c16; --card-accent-light: #ffd591; }
.card-price::before { --card-accent: #722ed1; --card-accent-light: #d3adf7; }

@media screen and (max-width: 575px){
    .trust-container{
        padding: 1rem;
    }
}

/* Footer  */

.footer {
    background-color: var(--primary-color);
    color: var(--bs-light);
    padding: 60px 0 0;
}

.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);*/
/*}*/

.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: #f9fbff;
  padding: 30px 20px;
  color: #333;
  box-shadow: 0 0 25px #ececec;
  border-radius: 8px;
}

.booking-info strong {
  display: block;
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.booking-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media only screen and (min-width: 920px) {
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}