:root {
    --purple: #5170ff;
    --orange: #fd8f50;
}

.hero-content h4 {
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.35);
}

.hero-content .google-tag p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.35);
}

/* Second Section */
.content-section {
    background: #ffffff;
    padding: 60px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.container h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.container p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ========== NAVBAR ========== */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    position: relative;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 35px;
}

.nav-left a,
.nav-right a,
.mobile-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
    opacity: 0.7;
}

.nav-logo a {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: absolute;
    right: 1px;
    z-index: 1100;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transform: translateY(-100%);
    transition: 0.4s ease;
    z-index: 1050;
}

.mobile-menu a {
    font-size: 22px;
}

.mobile-menu.active {
    transform: translateY(0);
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 992px) {

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
        width: 100%;
    }

    .nav-logo {
        margin: 0;
    }

    .hamburger {
        display: flex;
    }
}

/* ========== GOOGLE TAG ========== */
.google-tag {
    background-color: var(--orange);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 25px;
}

.google-tag-inside {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ========== TRAVEL ASSURANCE SECTION ========== */
.travel-assurance-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.assurance-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(81, 112, 255, 0.03) 0%, transparent 70%);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(253, 143, 80, 0.03) 0%, transparent 70%);
}

.decoration-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(81, 112, 255, 0.1), transparent);
}

.line-1 {
    width: 100%;
    height: 1px;
    top: 30%;
    left: 0;
    transform: rotate(-3deg);
}

.line-2 {
    width: 100%;
    height: 1px;
    bottom: 30%;
    left: 0;
    transform: rotate(2deg);
}

.assurance-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* ── Assurance Card ──
   FIX: Removed 'will-change: transform, opacity' from static state.
   FIX: Removed animation from base — now triggered by .animated class
        (added by IntersectionObserver). Cards are visible (opacity:1) by default. */
.assurance-card {
    position: relative;
    border-radius: 24px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    /* No animation, no opacity:0, no will-change by default */
}

/* Hover gradient bar — only animates on hover, not on page load */
.assurance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5170FF, #FD8F50, #5170FF);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.assurance-card:hover::before {
    opacity: 1;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* FIX: .animated class added by IntersectionObserver only when card enters viewport.
   On mobile this whole block is overridden to do nothing (see mobile media query). */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.assurance-card.animated {
    animation: fadeInUp 0.5s ease forwards;
}

.assurance-card.animated:nth-child(1) {
    animation-delay: 0.05s;
}

.assurance-card.animated:nth-child(2) {
    animation-delay: 0.12s;
}

.assurance-card.animated:nth-child(3) {
    animation-delay: 0.19s;
}

.assurance-card.animated:nth-child(4) {
    animation-delay: 0.26s;
}

.assurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px rgba(81, 112, 255, 0.12);
    will-change: transform;
    /* only set on hover when needed */
}

/* Border glow on hover */
.assurance-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #5170FF, #FD8F50, #5170FF);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.assurance-card:hover::after {
    opacity: 1;
}

.card-inner {
    padding: 35px 25px 30px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.assurance-card:hover .card-icon-wrapper {
    transform: scale(1.05) rotate(5deg);
}

.icon-ring {
    width: 45px;
    height: 45px;
    border-radius: 22px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.assurance-icon {
    font-size: 25px;
    transition: transform 0.3s ease;
}

.assurance-card:hover .assurance-icon {
    transform: scale(1.1);
}

.card-content {
    position: relative;
    text-align: center;
}

.assurance-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.assurance-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5170FF, #FD8F50);
    transition: width 0.3s ease;
}

.assurance-card:hover .assurance-title::after {
    width: 100%;
}

.assurance-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6a7e;
    margin: 0;
}

.card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(81, 112, 255, 0.03) 50%);
    border-radius: 24px 0 0 0;
    transition: all 0.3s ease;
}

.assurance-card:hover .card-accent {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(81, 112, 255, 0.08) 50%);
}

/* Responsive — Assurance */
@media (max-width: 1024px) {
    .assurance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .card-inner {
        padding: 30px 20px 25px;
    }

    .assurance-title {
        font-size: 18px;
    }

    .assurance-text {
        font-size: 13px;
    }

    .card-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-ring {
        width: 50px;
        height: 50px;
    }

    .assurance-icon {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .travel-assurance-section {
        padding: 40px 0;
    }

    .assurance-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 20px;
    }

    .card-inner {
        padding: 25px;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }

    .card-icon-wrapper {
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .icon-ring {
        width: 44px;
        height: 44px;
    }

    .assurance-icon {
        font-size: 24px;
    }

    .assurance-title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .assurance-text {
        font-size: 13px;
    }

    .card-accent {
        width: 40px;
        height: 40px;
    }

    .assurance-card:hover .card-accent {
        width: 60px;
        height: 60px;
    }

    .decoration-circle {
        opacity: 0.5;
    }

    .circle-1 {
        width: 300px;
        height: 300px;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
    }

    /* FIX: Simplified box-shadow on mobile — heavy shadows are expensive on mobile GPU */
    .assurance-card {
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    }

    .assurance-card:hover {
        box-shadow: 0 10px 25px rgba(81, 112, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .travel-assurance-section {
        padding: 30px 0;
        margin: 20px 0;
    }

    .assurance-grid {
        padding: 0 15px;
        gap: 15px;
    }

    .card-inner {
        padding: 20px 18px;
        gap: 15px;
    }

    .card-icon-wrapper {
        width: 52px;
        height: 52px;
    }

    .icon-ring {
        width: 38px;
        height: 38px;
    }

    .assurance-icon {
        font-size: 20px;
    }

    .assurance-title {
        font-size: 16px;
    }

    .assurance-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .assurance-card::before {
        height: 3px;
    }
}

/* ========== DESTINATION SECTION (utility CSS only) ========== */
/* Inline styles in HTML handle this section's layout */
.destination__container {
    padding: 60px 20px;
}

.destination__card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.destination__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ========== STORY / ABOUT SECTION ========== */
.story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f8ff 100%);
    position: relative;
    overflow: hidden;
}

.story-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.story-header {
    text-align: center;
    margin-bottom: 50px;
    /* FIX: Removed always-on fadeInUp animation. Now triggered by .animated class. */
}

.story-header.animated,
.story-content.animated,
.story-visual.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.story-content {
    position: relative;
}

.story-visual {
    position: relative;
}

.story-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.badge-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #5170FF, #FD8F50);
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #5170FF;
    text-transform: uppercase;
}

.story-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.1;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.title-word {
    display: inline-block;
}

.title-word.accent-primary {
    color: #5170FF;
    position: relative;
}

.title-word.accent-primary::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(81, 112, 255, 0.15);
    border-radius: 6px;
    z-index: -1;
}

.title-word.accent-secondary {
    color: #FD8F50;
}

.uk-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f8;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

.story-description {
    margin-bottom: 35px;
}

.story-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #33485d;
}

.drop-cap {
    font-size: 60px;
    font-weight: 700;
    color: #5170FF;
    float: left;
    line-height: 0.8;
    margin-right: 8px;
    margin-top: 5px;
    font-family: 'Times New Roman', serif;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.point-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.key-point:hover .point-icon {
    transform: scale(1.1) rotate(5deg);
}

/* FIX: Single declaration for .point-text h3 (was duplicated twice) */
.point-text h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
}

.point-text p {
    font-size: 11px;
    color: #5a6a7e;
    margin: 0;
}

.story-cta {
    position: relative;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 30px rgba(81, 112, 255, 0.2);
    border: none;
    cursor: pointer;
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 40px rgba(81, 112, 255, 0.3);
}

.cta-button:hover .button-glow {
    opacity: 1;
}

.button-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

/* Story Visual */
.story-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
}

.frame-decoration {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 30px;
    background: linear-gradient(135deg, #5170FF, #FD8F50) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    pointer-events: none;
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.visual-frame:hover .story-image {
    transform: scale(1.05);
}

/* Floating badges */
.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    border: 1px solid rgba(81, 112, 255, 0.2);
    /* FIX: Removed always-on 'float' keyframe animation — saves paint on mobile.
       The animation is subtle and not worth the CPU cost. */
}

.experience-badge {
    top: 30px;
    right: -20px;
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    color: white;
    border: none;
}

.experience-badge .badge-number {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .badge-label {
    font-size: 10px;
    opacity: 0.9;
}

.customer-badge {
    bottom: 50px;
    left: -20px;
    background: white;
}

.customer-badge .badge-number {
    font-size: 20px;
    font-weight: 800;
    color: #FD8F50;
    line-height: 1;
}

.customer-badge .badge-label {
    font-size: 10px;
    color: #1e293b;
}

.uk-office-badge {
    bottom: -15px;
    right: 30px;
    flex-direction: row;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    /* FIX: Removed backdrop-filter:blur — very expensive on mobile GPU */
}

.uk-office-badge .badge-icon {
    font-size: 16px;
}

.uk-office-badge .badge-label {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
}

/* ========== BLOG SECTION ========== */
.blog-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
    position: relative;
}

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.blog-heading {
    text-align: center;
    margin-bottom: 42px;
}

.blog-heading.animated,
.blog-card.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.blog-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(81, 112, 255, 0.1);
    color: #5170FF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blog-title {
    font-size: 40px;
    line-height: 1.15;
    color: #10233d;
    margin-bottom: 16px;
}

.blog-intro {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #52657c;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e7edf6;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(16, 35, 61, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 55px rgba(16, 35, 61, 0.14);
    border-color: rgba(81, 112, 255, 0.25);
}

.blog-card-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.06);
}

.blog-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(16, 35, 61, 0.82);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.blog-card-body {
    padding: 24px;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.blog-tags span {
    background: #f3f6fb;
    color: #43576e;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #10233d;
    margin-bottom: 14px;
}

.blog-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #60748a;
    margin-bottom: 22px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 13px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(81, 112, 255, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(81, 112, 255, 0.24);
}

.trust-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: 0.3;
    line-height: 0;
}

.trust-wave svg {
    width: 100%;
    height: auto;
}

/* Story responsive */
@media (max-width: 1024px) {
    .story-grid {
        gap: 40px;
        padding: 0 20px;
    }

    .story-title {
        font-size: 44px;
    }

    .key-points {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .story-section {
        padding: 50px 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-title {
        font-size: 42px;
        justify-content: center;
        text-align: center;
    }

    .uk-trust-badge {
        margin: 0 auto;
    }

    .story-description {
        text-align: left;
    }

    .key-points {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .story-cta {
        text-align: center;
    }

    .visual-frame {
        max-width: 500px;
        margin: 0 auto;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .experience-badge {
        right: 10px;
    }

    .customer-badge {
        left: 10px;
    }
}

@media (max-width: 480px) {
    .story-section {
        padding: 40px 0;
    }

    .story-title {
        font-size: 32px;
    }

    .badge-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .badge-line {
        width: 25px;
    }

    .uk-trust-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px 15px;
    }

    .uk-text {
        font-size: 13px;
    }

    .story-description p {
        font-size: 14px;
        text-align: justify;
    }

    .drop-cap {
        font-size: 42px;
    }

    .key-points {
        display: none;
    }

    .story-image {
        display: none;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* ========== FLIGHT BOOKING FORM ========== */
.flight-quick-booking {
    padding: 40px 0;
    background: #f5f8ff;
}

.flight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flight-header-compact {
    text-align: center;
    margin-bottom: 20px;
}

.badge-flight {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #5170FF;
    background: rgba(81, 112, 255, 0.08);
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.title-flight {
    font-size: 42px;
    font-weight: bold;
    color: #1e293b;
    margin: 0;
}

.title-flight .primary {
    color: #5170FF;
}

.title-flight .secondary {
    color: #FD8F50;
}

.booking-header-compact {
    text-align: center;
    margin-bottom: 25px;
}

.title-sm {
    font-size: 42px;
    font-weight: bold;
    color: #1e293b;
    margin: 0;
}

.title-sm .primary {
    color: #5170FF;
}

.title-sm .secondary {
    color: #FD8F50;
}

.header-subtitle {
    font-size: 16px;
    color: #5a6a7e;
    margin: 0 auto;
    line-height: 1.6;
}

.flight-card-compact {
    background: white;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f8;
    margin-bottom: 15px;
}

.trip-type-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.toggle-container {
    display: inline-flex;
    background: #f0f4ff;
    border-radius: 40px;
    padding: 4px;
    position: relative;
}

.toggle-container input[type="radio"] {
    display: none;
}

.toggle-label {
    padding: 8px 25px;
    font-size: 13px;
    font-weight: 600;
    color: #5a6a7e;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.toggle-container input[type="radio"]:checked+.toggle-label {
    color: white;
}

.toggle-bg {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #5170FF, #FD8F50);
    border-radius: 40px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.toggle-container:has(#roundtrip-flight:checked) .toggle-bg {
    transform: translateX(100%);
}

.flight-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.flight-row-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.field-group {
    position: relative;
    height: 48px;
}

.field-group input,
.field-group select {
    width: 100%;
    height: 100%;
    padding: 0 15px 0 40px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    color: #1e293b;
    background: #f8faff;
    border: 1px solid #eef2f8;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.field-group select {
    appearance: none;
    cursor: pointer;
    padding-right: 30px;
}

.field-group input:focus,
.field-group select:focus {
    outline: none;
    border-color: #5170FF;
    background: white;
    box-shadow: 0 3px 10px rgba(81, 112, 255, 0.1);
}

.field-group .field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #5170FF;
    font-size: 16px;
    opacity: 0.7;
    pointer-events: none;
}

.field-group input::placeholder,
.field-group select::placeholder,
.location-input::placeholder,
.date-input::placeholder,
.passenger-input::placeholder {
    color: #767676;
    opacity: 1;
}

.location-group {
    position: relative;
}

.suggestions-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #eef2f8;
    z-index: 100;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.suggestions-dropdown.show {
    display: block;
}

.suggestion-item {
    padding: 10px 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-item:hover {
    background: #f0f4ff;
    color: #5170FF;
}

.suggestion-item i {
    margin-right: 8px;
    color: #5170FF;
    font-size: 14px;
}

.date-group {
    position: relative;
}

.date-input {
    cursor: pointer;
    background: #f8faff;
}

.calendar-popup {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eef2f8;
    padding: 15px;
    z-index: 100;
    display: none;
}

.calendar-popup.show {
    display: block;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-header button {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #eef2f8;
    background: white;
    color: #5170FF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-header button:hover {
    background: #5170FF;
    color: white;
}

.calendar-header span {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 15px;
}

.weekday {
    font-size: 11px;
    font-weight: 600;
    color: #5a6a7e;
    text-align: center;
    padding: 5px;
}

.calendar-day {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.calendar-day:hover {
    background: #f0f4ff;
    color: #5170FF;
}

.calendar-day.selected {
    background: #5170FF;
    color: white;
}

.calendar-day.today {
    border: 1px solid #5170FF;
    font-weight: 600;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

.calendar-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.calendar-footer button {
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-footer button:first-child {
    background: #f0f4ff;
    color: #5170FF;
    border: 1px solid #eef2f8;
}

.calendar-footer button:last-child {
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    color: white;
    border: none;
}

.passenger-compact-group {
    position: relative;
}

.passenger-dropdown-flight {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 220px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eef2f8;
    padding: 15px;
    z-index: 100;
    display: none;
}

.passenger-dropdown-flight.show {
    display: block;
}

.passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eef2f8;
}

.passenger-row:last-child {
    border-bottom: none;
}

.passenger-row span {
    font-size: 12px;
    font-weight: 500;
    color: #1e293b;
}

.passenger-row small {
    font-size: 10px;
    color: #5a6a7e;
    margin-left: 4px;
}

.counter-sm {
    display: flex;
    align-items: center;
    gap: 8px;
}

.counter-sm button {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid #eef2f8;
    background: white;
    color: #5170FF;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-sm button:hover {
    background: #5170FF;
    color: white;
}

.counter-sm span {
    min-width: 20px;
    text-align: center;
}

.passenger-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #eef2f8;
    text-align: right;
}

.passenger-footer button {
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.flight-submit-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.btn-flight-submit {
    background: linear-gradient(135deg, #FD8F50, #fd7b30);
    color: white;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    border: none;
    border-radius: 40px;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(253, 143, 80, 0.2);
}

.btn-flight-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(253, 143, 80, 0.3);
}

.flight-trust {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #5a6a7e;
}

.flight-trust i {
    color: #5170FF;
}

.popular-routes {
    text-align: center;
    font-size: 12px;
    color: #5a6a7e;
}

.popular-routes span {
    font-weight: 600;
    color: #1e293b;
}

.popular-routes a {
    color: #5170FF;
    text-decoration: none;
    margin: 0 8px;
    padding: 4px 10px;
    background: rgba(81, 112, 255, 0.08);
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 5px;
}

.popular-routes a:hover {
    background: rgba(81, 112, 255, 0.15);
}

/* Flight form responsive */
@media (max-width: 800px) {
    .flight-row-3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .flight-row-3col .date-group:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .flight-card-compact {
        padding: 20px;
    }

    .flight-row-2col,
    .flight-row-3col {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .flight-row-3col .date-group:last-child {
        grid-column: auto;
    }

    .title-flight,
    .title-sm {
        font-size: 24px;
    }

    .toggle-label {
        padding: 6px 20px;
        font-size: 12px;
    }

    .flight-submit-row {
        flex-direction: column;
        gap: 15px;
    }

    .btn-flight-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
}

/* ========== UTILITY ========== */
.section__header {
    font-size: 40px;
}

.section__description {
    font-size: 16px;
}

@media (max-width: 767px) {

    .assurance-card,
    .assurance-card.animated,
    .story-header,
    .story-header.animated,
    .story-content,
    .story-content.animated,
    .story-visual,
    .story-visual.animated {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Simpler transition on mobile — no 3D transforms */
    .assurance-card:hover {
        transform: none;
    }

    .assurance-card:hover .card-icon-wrapper {
        transform: none;
    }

    /* Simpler box-shadow on mobile */
    .visual-frame {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .floating-badge {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .assurance-card,
    .assurance-card.animated,
    .story-header.animated,
    .story-content.animated,
    .story-visual.animated,
    .blog-heading.animated,
    .blog-card.animated {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 72px 0;
    }

    .blog-container {
        padding: 0 20px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-media {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .blog-card-body {
        padding: 20px;
    }

    .blog-card h3 {
        font-size: 21px;
    }

    .blog-link {
        width: 100%;
    }
}

/* Success Message Styles */
.submission-success-message {
    margin-top: 40px;
    padding: 0;
    animation: slideDown 0.5s ease-out;
}

.success-message-content {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 12px;
    padding: 2px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-icon {
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.success-text {
    color: white;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Add a subtle fade-out animation when removing */
.submission-success-message {
    transition: opacity 0.5s ease-out;
}

/* Responsive styles for success message */
@media (max-width: 768px) {
    .success-message-content {
        padding: 14px 20px;
    }

    .success-icon {
        font-size: 24px;
    }

    .success-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .success-message-content {
        padding: 12px 16px;
    }

    .success-icon {
        font-size: 20px;
    }

    .success-text {
        font-size: 13px;
    }
}
