@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --purple: #5170ff;
    --orange: #fd8f50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Video */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Black Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.625);
}

/* Apply to all headings in hero */
.hero-content h1,
.hero-content h4,
.hero-content p {
    color: #fff;
    /* keep text visible */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
}

/* Optional: stronger shadow for smaller text */
.hero-content h4 {
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.35);
}

/* Optional: for your Google rating box text */
.hero-content .google-tag p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content h4 {
    font-size: 1.2rem;
    font-weight: 400;
}

/* Second Section */
.content-section {
    background: #ffffff;
    padding: 60px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.container h2 {
    margin-bottom: 20px;
}

.container p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Navbar */

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
}

/* Container */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    position: relative;
}

/* Left + Right Nav */
.nav-left,
.nav-right {
    display: flex;
    gap: 35px;
}

/* Links */
.nav-left a,
.nav-right a,
.mobile-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
    opacity: 0.7;
}

/* Logo */
.nav-logo a {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

/* Hamburger Menu*/

.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;
}

/* Active state */
.mobile-menu.active {
    transform: translateY(0);
}

/* Prevent body scroll when menu open */
.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 {
    background-color: var(--orange);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 25px;
}

.google-tag-inside {
    display: flex;
    gap: 10px;
}

/* Travel Assurance Section - Premium Redesign */
.travel-assurance-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

/* Decorative Background Elements */
.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 */
.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;
}

/* Premium Card Design */
.assurance-card {
    position: relative;
    border-radius: 24px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.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%;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.assurance-card:hover::before {
    opacity: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.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;
}

/* Icon Styling */
.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 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: all 0.3s ease;
}

.assurance-card:hover .assurance-icon {
    transform: scale(1.1);
}

/* Content Styling */
.card-content {
    position: relative;
    text-align: center;
}

.assurance-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    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;
    font-family: 'Montserrat', sans-serif;
}

/* Card Accent */
.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 Design */
@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 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;
    }
}

@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;
    }
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.assurance-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.assurance-card:nth-child(1) {
    animation-delay: 0.1s;
}

.assurance-card:nth-child(2) {
    animation-delay: 0.2s;
}

.assurance-card:nth-child(3) {
    animation-delay: 0.3s;
}

.assurance-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Hover Effects */
.assurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px rgba(81, 112, 255, 0.12);
}

/* Optional: Add a subtle border glow */
.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;
}

/* Destination Section */
.destination__container {
    padding: 60px 20px;
}

.destination__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 3rem;
}

.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;
}

.destination__card__details {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destination__card__details h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0b2b40;
}

.destination__card__details p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
}

.destination__rating {
    padding: 5px 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    color: #fff;
    background-color: #0073e6;
    border-radius: 1rem;
    transition: background-color 0.3s;
}

.destination__card:hover .destination__rating {
    background-color: #005bb5;
}

.destination__explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    border: 1px solid #e8edf1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    text-decoration: none;
    font-weight: 500;
    color: #0b2b40;
    transition: all 0.2s ease;
}

.destination__explore-btn:hover {
    background: #f8fafd;
    border-color: #0073e6;
}

.destination__explore-btn i {
    color: #0073e6;
    transition: transform 0.2s;
}

.destination__explore-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .destination__card img {
        height: 180px;
    }

    .destination__card__details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.section__header {
    font-size: 40px;
}

.section__description {
    font-size: 16px;
}

/* Story Section - Premium Redesign with Centered Header */
.story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f8ff 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.story-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Centered Header */
.story-header {
    text-align: center;
    margin-bottom: 50px;
}

.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 - Centered */
.uk-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 10px 10px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f8;
    margin: 0 auto;
}

/* Content Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

/* Left Content */
.story-content {
    position: relative;
}

.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 Differentiators */
.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: all 0.3s ease;
}

.key-point:hover .point-icon {
    transform: scale(1.1) rotate(5deg);
}

.point-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
}

.point-text p {
    font-size: 11px;
    color: #5a6a7e;
    margin: 0;
}

/* CTA Button */
.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: all 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);
}

/* Right Visual Content */
.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;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(81, 112, 255, 0.2);
    backdrop-filter: blur(5px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.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;
}

.uk-office-badge .badge-icon {
    font-size: 16px;
}

.uk-office-badge .badge-label {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
}

/* Trust Wave Decoration */
.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;
}

/* Responsive Design */
@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;
    }

    .story-badge {
        justify-content: center;
    }

    .story-title {
        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;
    }

    .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;
    }

    .trust-seal {
        font-size: 11px;
    }

    .story-description p {
        font-size: 14px;
        text-align: justify;
    }

    .drop-cap {
        font-size: 42px;
    }

    .key-points {
        grid-template-columns: 1fr;
        gap: 12px;
        display: none;
    }

    .story-image{
        display: none;
    }

    .key-point {
        justify-content: center;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 14px;
    }

    .floating-badge {
        padding: 8px 15px;
    }

    .experience-badge .badge-number {
        font-size: 18px;
    }

    .customer-badge .badge-number {
        font-size: 16px;
    }

    .uk-office-badge {
        padding: 8px 15px;
    }

    .uk-office-badge .badge-label {
        font-size: 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-header {
    animation: fadeInUp 0.6s ease forwards;
}

.story-content {
    animation: fadeInUp 0.8s ease forwards;
}

.story-visual {
    animation: fadeInUp 1s ease forwards;
}

.purple {
    color: #5170ff !important;
}

.orange {
    color: #fd8f50 !important;
}

/* Flight Booking Form - Compact Design */
.flight-quick-booking {
    padding: 40px 0;
    background: #f5f8ff;
    font-family: 'Montserrat', sans-serif;
}

.flight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.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;
}

/* Form Card */
.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 */
.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%);
}

/* 2 Column Row */
.flight-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

/* 3 Column Row */
.flight-row-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

/* Field Group */
.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;
}

/* Location Suggestions */
.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 Groups */
.date-group {
    position: relative;
}

.date-input {
    cursor: pointer;
    background: #f8faff;
}

/* Calendar Popup */
.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: all 0.2s 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 Dropdown */
.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;
}

/* Submit Row */
.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: flex;
    justify-content: center;
    border: none;
    border-radius: 40px;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 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);
}

.btn-flight-submit i {
    font-size: 16px;
}

.flight-trust {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #5a6a7e;
}

.flight-trust i {
    color: #5170FF;
}

/* Popular Routes */
.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);
}

/* 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 {
        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;
    }
    
    .popular-routes a {
        display: inline-block;
        margin: 3px;
    }
}

/* Compact Header */
.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;
}

@media (max-width: 768px) {
    .header-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
}

/* 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;
    }
}