/* TOP ANNOUNCEMENT BAR */
.top-announcement-bar {
    background: #061122;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.flash-badge {
    animation: flashPulse 2s infinite;
    font-weight: 700;
}

@keyframes flashPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.03);
    }
}

.topbar-call-link {
    transition: color 0.2s ease;
}

.topbar-call-link:hover {
    color: #ffffff !important;
}

/* MAIN NAVBAR */
.main-navbar {
    background: rgba(10, 25, 47, 0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: rgba(10, 25, 47, 0.98) !important;
}

.logo-icon-bg {
    width: 40px;
    height: 40px;
    background: rgba(255, 159, 28, 0.15);
    border: 1px solid rgba(255, 159, 28, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.text-gold {
    color: var(--accent-gold);
}

.logo-tagline {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.main-navbar .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 14px !important;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--accent-gold) !important;
    background: rgba(255, 255, 255, 0.06);
}

/* NAVBAR CALL BUTTON */
.btn-nav-call {
    background: linear-gradient(135deg, #ff9f1c 0%, #f7941e 100%);
    color: #ffffff !important;
    border-radius: var(--radius-full);
    padding: 8px 20px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.35);
    transition: all 0.3s ease;
}

.btn-nav-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 159, 28, 0.5);
    color: #ffffff !important;
}

.call-pulse-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.call-btn-sub {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-weight: 600;
}

.call-btn-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.75) 0%, rgba(10, 25, 47, 0.85) 100%),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&auto=format&fit=crop&q=80') no-repeat center center/cover;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 60px 0 80px;
    color: #ffffff;
}

.hero-content h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
    max-width: 600px;
}

.hero-badge-pill {
    background: rgba(255, 159, 28, 0.15);
    border: 1px solid rgba(255, 159, 28, 0.4);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* GLASS SEARCH BOX */
.hero-search-card {
    background: rgba(15, 42, 74, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.trip-type-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.trip-type-btn.active,
.trip-type-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff;
}

.form-label-custom {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.input-group-custom {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 4px 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.input-group-custom i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-right: 10px;
}

.input-group-custom .form-control,
.input-group-custom .form-select {
    border: none;
    box-shadow: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    background: transparent;
    padding: 10px 0;
}

.swap-btn-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-swap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-swap:hover {
    background: var(--accent-gold);
    color: #ffffff;
    transform: rotate(180deg);
}

.btn-hero-search {
    background: linear-gradient(135deg, #ff9f1c 0%, #f7941e 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px;
    border-radius: var(--radius-md);
    border: none;
    width: 100%;
    box-shadow: 0 6px 20px rgba(255, 159, 28, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-search:hover {
    background: linear-gradient(135deg, #f7941e 0%, #e07b0f 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 159, 28, 0.55);
}

/* HERO TRUST BAR */
.hero-trust-bar {
    background: rgba(10, 25, 47, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* UNPUBLISHED FARES PROMO CARD */
.secret-fares-box {
    background: linear-gradient(135deg, #0f2a4a 0%, #0a192f 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 159, 28, 0.3);
}

.secret-fares-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.2) 0%, rgba(255, 159, 28, 0) 70%);
    pointer-events: none;
}

.secret-fares-badge {
    background: rgba(255, 159, 28, 0.2);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 159, 28, 0.4);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* DESTINATION PACKAGES */
.destination-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.dest-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.dest-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .dest-img-wrapper img {
    transform: scale(1.08);
}

.dest-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(5px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.dest-price-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--accent-gold);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.destination-card .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dest-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.btn-card-call {
    background: var(--primary);
    color: #ffffff !important;
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 10px 20px;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    border: none;
    margin-top: auto;
}

/* Make entire destination card clickable by stretching the link */
.btn-card-call::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.btn-card-call:hover,
.btn-card-call:focus,
.btn-card-call:active {
    background: var(--accent-gold) !important;
    color: #ffffff !important;
    opacity: 1 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* POPULAR ROUTES CARDS */
.route-card-modern {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.route-card-modern:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.route-airports {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.route-price {
    font-weight: 800;
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.blurred-price {
    filter: blur(6px);
    user-select: none;
    transition: filter 0.4s ease, opacity 0.3s ease;
    opacity: 0.75;
}

.blurred-price.unblurred {
    filter: blur(0);
    opacity: 1;
}

.btn-reveal-price {
    background: linear-gradient(135deg, #ff9f1c 0%, #f7941e 100%);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    border: none;
    min-width: 105px;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 159, 28, 0.3);
    transition: all 0.25s ease;
}

.btn-reveal-price:hover {
    background: linear-gradient(135deg, #f7941e 0%, #e07b0f 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.45);
    color: #ffffff !important;
}

.btn-reveal-price.revealed {
    background: #0f2a4a;
    box-shadow: 0 2px 8px rgba(15, 42, 74, 0.3);
}

.btn-reveal-price.revealed:hover {
    background: var(--accent-gold);
}

/* AIRLINE PARTNERS */
.airline-badge-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.2s ease;
}

.airline-badge-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-cyan);
}

.airline-icon {
    font-size: 2rem;
    color: var(--primary);
}

/* WHY CHOOSE US FEATURE CARDS */
.feature-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255, 159, 28, 0.12);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
}

.stars-rating {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* CTA BANNER BOTTOM */
.cta-banner-bottom {
    background: linear-gradient(135deg, #0a192f 0%, #0f2a4a 100%);
    padding: 70px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-banner-bottom::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, rgba(0, 180, 216, 0) 70%);
}

.btn-cta-phone {
    background: linear-gradient(135deg, #ff9f1c 0%, #f7941e 100%);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 16px 42px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(255, 159, 28, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-cta-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 159, 28, 0.65);
}

/* FOOTER STYLING */
.main-footer {
    background: #061122;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-call-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* FLOATING DESKTOP CALL BUTTON */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, #ff9f1c 0%, #f7941e 100%);
    color: #ffffff !important;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 30px rgba(255, 159, 28, 0.55);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-call-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(255, 159, 28, 0.7);
}

.floating-btn-text {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.1;
}

.pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: var(--radius-full);
    border: 2px solid var(--accent-gold);
    animation: pulseRing 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* MODAL CUSTOM STYLING */
.style-modal-card {
    border-radius: var(--radius-lg);
}

.modal-call-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 159, 28, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

/* ==========================================================================
   ABOUT US WEBPAGE STYLES
   ========================================================================== */

/* ABOUT BANNER SECTION */
.about-banner-section {
    background: linear-gradient(135deg, #061122 0%, #0a192f 45%, #0f2a4a 100%);
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    color: #ffffff;
}

.about-banner-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.15) 0%, rgba(255, 159, 28, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-banner-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, rgba(0, 180, 216, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-breadcrumb {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-breadcrumb a:hover {
    color: var(--accent-gold);
}

.about-breadcrumb .active {
    color: var(--accent-gold);
    font-weight: 600;
}

/* OUR STORY SECTION */
.our-story-section {
    padding: 90px 0;
    background-color: var(--light-bg);
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 159, 28, 0.12);
    color: #d97706;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 159, 28, 0.3);
}

.story-heading-sm {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.story-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.story-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 400px;
    transition: transform 0.5s ease;
}

.story-img-wrapper:hover .story-img-main {
    transform: scale(1.02);
}

.story-floating-card {
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: #0a192f;
    color: #ffffff;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(10, 25, 47, 0.25);
    border: 1px solid rgba(255, 159, 28, 0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 280px;
}

.story-floating-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff9f1c 0%, #f7941e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* OUR VISION SECTION */
.our-vision-section {
    padding: 90px 0;
    background: #0a192f;
    color: #ffffff;
    position: relative;
}

.vision-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 35px 28px;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-cyan) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.vision-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 159, 28, 0.4);
}

.vision-card:hover::before {
    opacity: 1;
}

.vision-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(255, 159, 28, 0.15);
    border: 1px solid rgba(255, 159, 28, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.vision-card:hover .vision-icon-box {
    background: var(--accent-gold);
    color: #ffffff;
    transform: rotate(5deg) scale(1.05);
}

/* UNIQUE FACTS SECTION */
.unique-facts-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.fact-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-center: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
}

.fact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.fact-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(15, 42, 74, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.fact-card:hover .fact-icon-wrapper {
    background: var(--accent-gold);
    color: #ffffff;
    transform: scale(1.1);
}

.fact-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #0a192f 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.fact-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ABOUT CTA SECTION */
.about-cta-section {
    padding: 80px 0;
    background: #061122;
    position: relative;
    overflow: hidden;
}

.about-cta-box {
    background: linear-gradient(135deg, #0f2a4a 0%, #1e3a8a 100%);
    border-radius: var(--radius-lg);
    padding: 55px 40px;
    border: 1px solid rgba(255, 159, 28, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.about-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.25) 0%, rgba(255, 159, 28, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ==========================================================================
   DESTINATIONS WEBPAGE STYLES
   ========================================================================== */

/* DESTINATIONS BANNER SECTION */
.dest-banner-section {
    background: linear-gradient(135deg, #061122 0%, #0a192f 50%, #0f2a4a 100%);
    padding: 85px 0 75px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.dest-banner-section::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, rgba(0, 180, 216, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dest-banner-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.15) 0%, rgba(255, 159, 28, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dest-search-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.dest-search-input {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    padding: 14px 22px 14px 48px;
    font-size: 1rem;
    color: var(--primary-dark);
}

.dest-search-input:focus {
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 159, 28, 0.35);
    border-color: var(--accent-gold);
}

.dest-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-dark);
    font-size: 1.1rem;
    z-index: 5;
}

/* CATEGORY FILTER BUTTONS */
.dest-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-dest-filter {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-dest-filter:hover,
.btn-dest-filter.active {
    background: linear-gradient(135deg, #ff9f1c 0%, #f7941e 100%);
    color: #ffffff !important;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.4);
    transform: translateY(-2px);
}

/* FEATURED SPOTLIGHT CARD */
.dest-spotlight-section {
    padding: 90px 0;
    background: var(--light-bg);
}

.spotlight-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
}

.spotlight-card:hover {
    box-shadow: 0 25px 45px rgba(15, 42, 74, 0.15);
}

.spotlight-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff4d4d 0%, #e60000 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.4);
    z-index: 3;
}

.spotlight-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spotlight-card:hover .spotlight-img {
    transform: scale(1.03);
}

.spotlight-amenity {
    background: rgba(15, 42, 74, 0.05);
    border: 1px solid rgba(15, 42, 74, 0.1);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* DESTINATION PERKS SECTION */
.dest-perks-section {
    padding: 85px 0;
    background: #0a192f;
    color: #ffffff;
}

.perk-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    transition: all 0.3s ease;
    height: 100%;
}

.perk-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
    border-color: rgba(255, 159, 28, 0.4);
}

.perk-icon-circle {
    width: 58px;
    height: 58px;
    background: rgba(255, 159, 28, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 18px;
}

/* DESTINATION CARD HOVER ENHANCEMENT */
.destination-card {
    transition: all 0.35s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   FLIGHTS WEBPAGE & POPUP MODAL STYLES
   ========================================================================== */

/* FLIGHT HERO BANNER */
.flights-banner-section {
    background: linear-gradient(135deg, #061122 0%, #0a192f 50%, #0f2a4a 100%);
    padding: 80px 0 75px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.flights-search-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.form-label-custom {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
    display: block;
}

.input-group-custom {
    position: relative;
}

.input-group-custom i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    z-index: 5;
}

.input-group-custom .form-control,
.input-group-custom .form-select {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 14px 12px 42px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.input-group-custom .form-control:focus,
.input-group-custom .form-select:focus {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.35);
    border-color: var(--accent-gold);
}

/* SEARCH POPUP MODAL STYLES */
.flight-modal-content {
    background: linear-gradient(135deg, #0a192f 0%, #061122 100%);
    border: 1px solid rgba(255, 159, 28, 0.35);
    border-radius: var(--radius-lg);
    color: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

/* RADAR PULSE ANIMATION */
.radar-animation-box {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-plane-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9f1c 0%, #f7941e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 159, 28, 0.6);
    z-index: 2;
    animation: planeHover 2s infinite ease-in-out;
}

@keyframes planeHover {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(5deg);
    }
}

.radar-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    animation: radarRipple 2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
    opacity: 0;
}

.radar-ring-2 {
    animation-delay: 0.6s;
}

@keyframes radarRipple {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* PROGRESS BAR */
.searching-progress-bg {
    background: rgba(255, 255, 255, 0.1);
    height: 10px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.searching-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff9f1c 0%, #00b4d8 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: var(--radius-full);
}

/* DEALS FOUND SCREEN STYLES */
.deals-route-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 159, 28, 0.4);
    border-radius: var(--radius-md);
    padding: 20px;
}

.secret-phone-highlight {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(255, 159, 28, 0.3);
}

.btn-get-deal {
    background: linear-gradient(135deg, #ff9f1c 0%, #f7941e 100%);
    color: #ffffff !important;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    padding: 16px 36px;
    box-shadow: 0 8px 30px rgba(255, 159, 28, 0.55);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-get-deal:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(255, 159, 28, 0.75);
    color: #ffffff !important;
}

/* Global Shrink for Deals Modal */
.flight-modal-content {
    padding: 20px !important;
}
#modalDealsFoundView .display-6 {
    font-size: 1.25rem !important;
}
.secret-phone-highlight {
    font-size: 1.25rem;
}
.btn-get-deal {
    padding: 10px 20px;
    font-size: 0.95rem;
}
.deals-route-card {
    padding: 12px;
}
.deals-route-card .fs-3 {
    font-size: 1.1rem !important;
}


/* ==========================================================================
   BLOG SINGLE STYLES
   ========================================================================== */
.blog-single-hero {
    background-color: #0a192f;
    background-image: linear-gradient(180deg, rgba(10, 25, 47, 0.7) 0%, rgba(10, 25, 47, 0.95) 100%), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 160px 0 120px;
    position: relative;
}

.blog-content-card {
    line-height: 1.8;
}

.blog-content-card h3 {
    margin-top: 35px;
}

.custom-blockquote {
    border-left: 4px solid var(--accent-gold) !important;
}

.widget-categories a:hover {
    color: var(--primary) !important;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.widget-categories a {
    transition: all 0.3s ease;
}

/* Responsive adjustments for blog */
@media (max-width: 768px) {
    .blog-single-hero {
        padding: 60px 0 50px;
    }

    .blog-single-hero h1 {
        font-size: 2rem;
    }

    .blog-content-card {
        padding: 20px !important;
    }
}

/* ==========================================================================
   BLOG CARDS (HOME PAGE)
   ========================================================================== */
.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.blog-img-wrap {
    height: 220px;
    overflow: hidden;
}

.blog-img-wrap img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.08);
}

.blog-title-link {
    transition: color 0.2s ease;
}

.blog-title-link:hover {
    color: var(--accent-gold) !important;
}

/* ==========================================================================
   GLOBAL MOBILE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
    .btn {
        font-size: 16px !important;
    }
}