@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: 2.5rem;
    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;
    font-size: 42px;
    font-weight: bold;
}

.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;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

/* 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;
}

/* Umrah Packages Section - Premium Design */
.umrah-packages-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.packages-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.header-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #5170FF;
    background: rgba(81, 112, 255, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.header-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}

.header-title .primary {
    color: #5170FF;
    position: relative;
    display: inline-block;
}

.header-title .primary::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(81, 112, 255, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.header-title .secondary {
    color: #FD8F50;
}

.header-subtitle {
    font-size: 16px;
    color: #5a6a7e;
    margin: 0 auto;
    line-height: 1.6;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Package Card Base Styles */
.package-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #eef2f8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 60px rgba(81, 112, 255, 0.15);
    border-color: transparent;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.card-badge.popular {
    background: rgba(81, 112, 255, 0.1);
    color: #5170FF;
}

.card-badge.premium-badge {
    background: rgba(253, 143, 80, 0.1);
    color: #FD8F50;
}

.badge-icon {
    font-size: 14px;
}

/* Card Header */
.card-header {
    padding: 35px 30px 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(81, 112, 255, 0.02) 0%, transparent 100%);
}

.header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5170FF10, #5170FF20);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #5170FF;
    transition: all 0.3s ease;
}

.package-card:hover .header-icon {
    transform: scale(1.1) rotate(5deg);
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.package-tagline {
    font-size: 14px;
    color: #5a6a7e;
    margin-bottom: 20px;
}

/* Price Tag */
.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: #5170FF;
    align-self: flex-start;
    margin-top: 4px;
}

.amount {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.duration {
    font-size: 14px;
    color: #5a6a7e;
    align-self: flex-end;
    margin-bottom: 8px;
}

/* Card Content */
.card-content {
    padding: 0 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #33485d;
    padding: 8px 0;
    border-bottom: 1px dashed #eef2f8;
}

.features-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #27ae60;
    font-size: 18px;
    flex-shrink: 0;
}

/* Economy specific check icon */
.economy .check-icon {
    color: #27ae60;
}

.standard .check-icon {
    color: #5170FF;
}

.premium .check-icon {
    color: #FD8F50;
}

/* Duration Selector */
.duration-selector {
    background: #f8faff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
}

.duration-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.duration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.duration-item {
    text-align: center;
    padding: 10px 5px;
    background: white;
    border-radius: 16px;
    border: 1px solid #eef2f8;
    transition: all 0.3s ease;
}

.duration-item:hover {
    border-color: #5170FF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(81, 112, 255, 0.1);
}

.nights {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.price {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #5170FF;
}

/* Package Buttons */
.package-btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.package-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.package-btn:hover i {
    transform: translateX(5px);
}

/* Economy Button */
.economy-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.economy-btn:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(46, 204, 113, 0.3);
}

/* Standard Button */
.standard-btn {
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    color: white;
    box-shadow: 0 10px 20px rgba(81, 112, 255, 0.2);
}

.standard-btn:hover {
    background: linear-gradient(135deg, #3a5ae0, #2a4ad0);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(81, 112, 255, 0.3);
}

/* Premium Button */
.premium-btn {
    background: linear-gradient(135deg, #FD8F50, #fd7b30);
    color: white;
    box-shadow: 0 10px 20px rgba(253, 143, 80, 0.2);
}

.premium-btn:hover {
    background: linear-gradient(135deg, #fd7b30, #fc6710);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(253, 143, 80, 0.3);
}

/* Footer */
.packages-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eef2f8;
}

.packages-footer p {
    font-size: 14px;
    color: #5a6a7e;
    margin-bottom: 20px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #1e293b;
}

.trust-indicators i {
    color: #5170FF;
    font-size: 16px;
}

/* Decorative Elements */
.packages-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(81, 112, 255, 0.03) 0%, transparent 70%);
}

.deco-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.deco-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(253, 143, 80, 0.03) 0%, transparent 70%);
}

.deco-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 10%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.03) 0%, transparent 70%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .packages-container {
        padding: 0 20px;
    }

    .header-title {
        font-size: 36px;
    }

    .packages-grid {
        gap: 20px;
    }

    .card-header {
        padding: 30px 20px 15px;
    }

    .package-name {
        font-size: 22px;
    }

    .amount {
        font-size: 36px;
    }

    .card-content {
        padding: 0 20px 25px;
    }

    .duration-grid {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .umrah-packages-section {
        padding: 50px 0;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .header-title {
        font-size: 32px;
    }

    .header-subtitle {
        font-size: 15px;
    }

    .package-card:hover {
        transform: translateY(-5px);
    }

    .trust-indicators {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .umrah-packages-section {
        padding: 40px 0;
    }

    .header-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .header-title {
        font-size: 28px;
    }

    .header-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    .package-name {
        font-size: 20px;
    }

    .amount {
        font-size: 32px;
    }

    .features-list li {
        font-size: 13px;
    }

    .duration-item {
        padding: 8px 3px;
    }

    .nights {
        font-size: 12px;
    }

    .price {
        font-size: 14px;
    }

    .package-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .deco-1,
    .deco-2,
    .deco-3 {
        opacity: 0.5;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.package-card:nth-child(1) {
    animation-delay: 0.1s;
}

.package-card:nth-child(2) {
    animation-delay: 0.2s;
}

.package-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Compact Umrah Booking Form */
.umrah-quick-booking {
    padding: 40px 0;
    background: #f5f8ff;
    font-family: 'Montserrat', sans-serif;
}

.booking-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Compact Header */
.booking-header-compact {
    text-align: center;
    margin-bottom: 25px;
}

.badge-sm {
    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;
    text-transform: uppercase;
}

.title-sm {
    font-size: 42px;
    font-weight: bold;
    color: #1e293b;
    margin: 0;
}

.title-sm .primary {
    color: #5170FF;
}

.title-sm .secondary {
    color: #FD8F50;
}

/* Compact Form Card */
.form-card-compact {
    background: white;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f8;
}

/* 4 Column Row */
.row-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

/* Field Group */
.field-group {
    position: relative;
}

.field-group input,
.field-group select {
    width: 100%;
    height: 48px;
    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-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #5170FF;
    font-size: 16px;
    pointer-events: none;
    opacity: 0.7;
}

/* Passenger Field Specific */
.passenger-compact {
    position: relative;
}

.passenger-compact input {
    cursor: pointer;
    background: #f8faff;
}

/* Compact Passenger Dropdown */
.passenger-dropdown-compact {
    position: absolute;
    top: calc(100% + 5px);
    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: 12px;
    z-index: 100;
    display: none;
}

.passenger-dropdown-compact.show {
    display: block;
}

.compact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #eef2f8;
}

.compact-row:last-child {
    border-bottom: none;
}

.compact-row span {
    font-size: 12px;
    font-weight: 500;
    color: #1e293b;
}

.compact-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.compact-counter button {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    border: 1px solid #eef2f8;
    background: white;
    color: #5170FF;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.compact-counter button:hover {
    background: #5170FF;
    color: white;
    border-color: #5170FF;
}

.compact-counter span {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

/* Submit Row */
.submit-row-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.btn-submit-compact {
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    width: 100%;
    display: flex;
    justify-content: center;
    color: white;
    border: none;
    border-radius: 40px;
    padding: 12px 30px;
    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(81, 112, 255, 0.2);
}

.btn-submit-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(81, 112, 255, 0.3);
}

.btn-submit-compact i {
    font-size: 16px;
}

.trust-badge-compact {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #5a6a7e;
}

.trust-badge-compact i {
    color: #5170FF;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .row-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .booking-wrapper {
        padding: 0 15px;
    }

    .form-card-compact {
        padding: 20px;
    }

    .row-4col {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .title-sm {
        font-size: 24px;
    }

    .submit-row-compact {
        flex-direction: column;
        gap: 15px;
    }

    .btn-submit-compact {
        width: 100%;
        justify-content: center;
    }

    .passenger-dropdown-compact {
        width: 100%;
    }
}

/* NEW Packages */

/* SECTION */

#umrah-popular-packages-sec {
    padding: 80px 20px;
    background: white;
    font-family: Arial, sans-serif;
}

.umrah-popular-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.umrah-popular-header {
    text-align: center;
    margin-bottom: 60px;
}

.umrah-popular-header h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.umrah-popular-header p {
    font-size: 16px;
    color: #5a6a7e;
    margin: 0 auto;
    line-height: 1.6;
}

/* GRID */

.umrah-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARD */

.umrah-popular-card {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all .3s ease;
    position: relative;
}

.umrah-popular-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* ICON */

.umrah-card-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #6b46ff;
}

/* TITLES */

.umrah-popular-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.umrah-card-tag {
    font-weight: 600;
    color: #ff7a00;
    margin-bottom: 15px;
}

/* DESCRIPTION */

.umrah-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 18px;
}

/* LIST */

.umrah-card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 22px;
}

.umrah-card-list li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* BUTTON */

.umrah-card-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #6b46ff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: .3s;
}

.umrah-card-btn:hover {
    background: #4e33d6;
}

/* END Packages */




/* New Umrah Gallery */

/* SECTION */

#umrah-gallery-sec {
    padding: 80px 20px;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.umrah-gallery-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.umrah-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.umrah-gallery-header h3 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
}

.umrah-gallery-header p {
    font-size: 16px;
    color: #5a6a7e;
    margin: 0 auto;
    line-height: 1.6;
}

/* GRID */

.umrah-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */

.umrah-gallery-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.umrah-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.umrah-gallery-img {
    height: 220px;
    overflow: hidden;
}

.umrah-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

.umrah-gallery-card:hover img {
    transform: scale(1.05);
}

/* CONTENT */

.umrah-gallery-content {
    padding: 20px;
}

.umrah-gallery-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.umrah-gallery-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width:1024px) {

    .umrah-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:640px) {

    .umrah-gallery-grid {
        grid-template-columns: 1fr;
    }

    .umrah-gallery-img {
        height: 200px;
    }

}

/* ENG UMRAH GALLERY */



/* SECTION */

#ramadan-umrah-special-sec {
    padding: 90px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    font-family: Arial, sans-serif;
}

.ramadan-umrah-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT */

.ramadan-umrah-text h2 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.ramadan-umrah-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fbbf24;
}

.ramadan-umrah-text p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e2e8f0;
    font-size: 15px;
}

/* BENEFITS BOX */

.ramadan-umrah-benefits {
    background: #ffffff;
    color: #111;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.ramadan-umrah-benefits h4 {
    font-size: 20px;
    margin-bottom: 25px;
}

/* BENEFIT ITEM */

.ramadan-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.ramadan-icon {
    font-size: 22px;
    color: #f59e0b;
    margin-top: 3px;
}

.ramadan-benefit-item strong {
    display: block;
    margin-bottom: 4px;
}

.ramadan-benefit-item p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width:900px) {

    .ramadan-umrah-container {
        grid-template-columns: 1fr;
    }

    .ramadan-umrah-text {
        text-align: center;
    }

}

@media (max-width:500px) {

    .ramadan-umrah-text h2 {
        font-size: 28px;
    }

    .ramadan-umrah-text h3 {
        font-size: 20px;
    }

}


/* SECTION */

#umrah-departure-sec {
    padding: 90px 20px;
    background: #f7f9fc;
    font-family: Arial, sans-serif;
}

.umrah-departure-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.umrah-departure-header {
    text-align: center;
    margin-bottom: 55px;
}

.umrah-departure-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: bold;
}

.umrah-departure-header p {
    font-size: 16px;
    color: #5a6a7e;
    margin: 0 auto;
    line-height: 1.6;
}

/* GRID */

.umrah-departure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */

.umrah-departure-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.umrah-departure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ICON */

.departure-icon {
    font-size: 32px;
    color: #6366f1;
    margin-bottom: 15px;
}

/* TITLE */

.umrah-departure-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* TEXT */

.umrah-departure-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* AIRPORT TAGS */

.airport-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.airport-tags span {
    background: #eef2ff;
    color: #4338ca;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

/* BUTTON */

.departure-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #6366f1;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: .3s;
}

.departure-btn:hover {
    background: #4f46e5;
}

/* RESPONSIVE */

@media (max-width:1024px) {

    .umrah-departure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:640px) {

    .umrah-departure-grid {
        grid-template-columns: 1fr;
    }

    .umrah-departure-card {
        padding: 28px;
    }

    .umrah-departure-header h2 {
        font-size: 28px;
    }

}

/* SECTION */

#umrah-future-planning-sec {
    padding: 90px 20px;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.umrah-future-container {
    max-width: 1100px;
    margin: auto;
}

/* HEADER */

.umrah-future-header {
    text-align: center;
    margin-bottom: 60px;
}

.umrah-future-header h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.umrah-future-header p {
    font-size: 16px;
    color: #5a6a7e;
    margin: 0 auto;
    line-height: 1.6;
}

/* GRID */

.umrah-future-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* CARD */

.umrah-future-card {
    background: #f9fbff;
    padding: 40px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.umrah-future-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* YEAR BADGE */

.future-year {
    position: absolute;
    top: -15px;
    left: 25px;
    background: #6366f1;
    color: #fff;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 600;
}

/* TITLE */

.umrah-future-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 10px;
}

/* TEXT */

.umrah-future-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* BUTTON */

.future-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #6366f1;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: .3s;
}

.future-btn:hover {
    background: #4f46e5;
}

/* RESPONSIVE */

@media (max-width:900px) {

    .umrah-future-grid {
        grid-template-columns: 1fr;
    }

    .umrah-future-card {
        padding: 32px;
    }

    .umrah-future-header h2 {
        font-size: 28px;
    }

}

/* FAQS */

#tripnext-faq-sec {
    padding: 90px 20px;
    background: #f8fafc;
    font-family: Arial, sans-serif;
}

.tripnext-faq-container {
    max-width: 1000px;
    margin: auto;
}

.tripnext-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.tripnext-faq-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: bold;
}

.tripnext-faq-header p {
    font-size: 16px;
    color: #5a6a7e;
    margin: 0 auto;
    line-height: 1.6;
}

.tripnext-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tripnext-faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.tripnext-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.tripnext-faq-icon {
    font-size: 20px;
    color: #6366f1;
}

.tripnext-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 22px;
}

.tripnext-faq-answer p {
    padding-bottom: 18px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ACTIVE STATE */

.tripnext-faq-item.active .tripnext-faq-answer {
    max-height: 200px;
}

.tripnext-faq-item.active .tripnext-faq-icon {
    transform: rotate(45deg);
}

/* RESPONSIVE */

@media (max-width:600px) {

    .tripnext-faq-header h2 {
        font-size: 26px;
    }

    .tripnext-faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }

}

/* END */

/* 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;
    }
}