/* Original Styles Preserved Exactly */
:root {
    /* Primary Colors */
    --primary-orange: #f77f00;
    --dark-blue: #181e4b;
    --light-orange: #fa7436;
    --pink-orange: #ff7152;

    /* Secondary Colors */
    --dark-gray: #2f2f2f;
    --medium-gray: #444;
    --medium-gray-2: #666;
    --light-gray: #5e6282;

    /* Neutral Colors */
    --white: #fff;
    --off-white: #fff4e6;
    --light-bg: #f4f4f4;
    --light-bg-2: #f9f9f9;
    --light-bg-3: #f8f8f8;

    /* Shadows */
    --shadow-light: rgba(0, 0, 0, 0.03);
    --shadow-medium: rgba(0, 0, 0, 0.06);
    --shadow-dark: rgba(0, 0, 0, 0.08);
    --shadow-extra-dark: rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: var(--dark-gray);
    background: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.custom-navbar {
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
}

.custom-width {
    min-width: unset;
    width: 60px;
}

.custom-btn {
    outline: 1px solid orange;
}

.custom-btn:hover {
    background-color: orange;
    color: white;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 600px;
    position: relative;
}

.hero-bg-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.hero-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
    position: relative;
    top: -450px;
}

.hero-left .subheading {
    color: var(--light-orange);
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: bold;
    position: relative;
}

.header-line-img {
    width: 300px;
    position: relative;
    top: 70px;
    left: 150px;
    z-index: 1;
}

.description {
    margin: 20px 0;
    color: var(--medium-gray-2);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.btn-secondary {
    background: none;
    border: none;
    color: var(--medium-gray-2);
    font-size: 16px;
    cursor: pointer;
}

.btn-secondary .fa-solid {
    padding: 10px;
    border-radius: 50%;
    background: var(--pink-orange);
    color: var(--white);
}

.hero-main-img {
    width: 500px;
}

/* Services Section */
.services-section {
    text-align: center;
    padding: 80px 0;
    background: var(--white);
}

.section-category {
    color: var(--light-gray);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 50px;
    font-weight: bold;
}

.service-title {
    height: 200px;
}

.service-img {
    position: relative;
    top: -140px;
    display: flex;
    justify-content: right;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    background: var(--light-bg-2);
    border-radius: 24px;
    padding: 30px 25px;
    width: 240px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 10px 25px var(--shadow-light);
}

.service-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-dark);
    cursor: pointer;
}

/* Destinations Section */
.destinations-section {
    text-align: center;
    padding: 80px 0;
    background-color: var(--white);
}

.destinations-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.destination-card {
    width: 300px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 20px 40px var(--shadow-medium);
    transition: 0.3s ease-in-out;
    z-index: 100;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px var(--shadow-dark);
}

.destination-card img {
    width: 100%;
    height: 350px;
    object-fit: fill;
}

.destination-info {
    padding: 20px;
}

.location-price {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.duration {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-gray);
    font-size: 14px;
}

.city-decor img {
    height: 200px;
    position: relative;
    top: 200px;
    left: -70px;
    z-index: 1;
}

/* Book Trip Section */
.book-trip-section {
    padding: 40px 0;
    background-color: var(--white);
    width: 80%;
    margin: 0 auto;
}

.book-trip-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.steps {
    flex: 1;
    max-width: 500px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 25px 0;
}

.step i.fa-solid {
    align-items: center;
    font-size: 20px;
    padding: 20px;
    border-radius: 10%;
    color: var(--white);
}

.steps i.fa-location-dot {
    background: var(--light-gray);
}

.step i.fa-credit-card {
    background: var(--primary-orange);
}

.step i.fa-car-side {
    background: var(--dark-blue);
}

.step h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--dark-blue);
}

.step p {
    font-size: 14px;
    color: var(--light-gray);
}

.trip-card {
    width: 40%;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--white);
}

.trip-card img {
    width: 450px;
    height: 550px;
    object-fit: fill;
    position: relative;
    top: -50px;
    left: -50px;
}

/* Testimonials Section */
.testimonial-section {
    padding: 40px 0;
    background-color: var(--white);
    width: 80%;
    margin: 0 auto;
}

.testimonial-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

.testimonial-header {
    flex: 1;
    min-width: 280px;
}

.testimonial-header h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.testimonial-header p {
    font-size: 16px;
    color: var(--light-gray);
}

.testimonial-header img {
    width: 70px;
    margin-top: 20px;
}

.testimonial-swiper img {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
}

/* Sponsors */
.sponsors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.sponsors img {
    width: 150px;
    margin: 0 auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.sponsors img:hover {
    filter: grayscale(0%);
    transform: scale(1.10);
    cursor: pointer;
}

/* Subscribe Section */
.subscribe-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.subscribe-icon .fa-solid {
    padding: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--white);
    position: relative;
    top: 20px;
    left: 350px;
    z-index: 100;
}

.subscribe-box {
    max-width: 700px;
    height: 290px;
    margin: 0 auto;
    background: rgb(237, 242, 253);
    border-radius: 24px;
    padding: 50px 30px;
    box-shadow: 0 25px 45px var(--shadow-extra-dark);
    position: relative;
    z-index: 2;
}

.subscribe-box h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-blue);
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
}

.subscribe-form i {
    position: absolute;
    left: 150px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.subscribe-form input {
    padding: 12px 40px;
    border-radius: 10px;
    border: 1px solid #ccc;
    width: 250px;
    font-size: 14px;
}

.subscribe-form button {
    background: var(--pink-orange);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--light-bg-3);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand h2 {
    color: var(--dark-blue);
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--light-gray);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links h4 {
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--light-gray);
    cursor: pointer;
}

.footer-extras {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 50px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-socials i {
    font-size: 24px;
    color: var(--dark-gray);
    transition: color 0.3s ease;
    padding: 10px;
    border-radius: 50%;
}

.footer-socials i:hover {
    color: var(--light-orange);
    cursor: pointer;
}

.footer-copy {
    color: var(--light-gray);
    font-size: 14px;
    margin-top: 20px;
}

.footer-applinks p {
    font-size: 18px;
    color: var(--dark-blue);
}

/* Responsive Adjustments */
@media (max-width: 1215px) {
    .hero-main-img {
        width: 400px;
    }

    .trip-card img {
        width: 380px;
        height: 480px;
    }

    .city-decor {
        display: none;
    }
}

@media (max-width: 992px) {
    .collapse {
        background-color: var(--white);
        padding: 0 20px;
    }

    .hero {
        height: 1000px;
    }

    .hero-text {
        flex-direction: column;
        text-align: center;
        top: -400px;
    }

    .hero-left {
        margin-bottom: 40px;
    }

    .header-line-img {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .book-trip-content {
        flex-direction: column;
    }

    .trip-card {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .trip-card img {
        position: static;
        width: 100%;
        max-width: 450px;
        height: auto;
    }

    .subscribe-icon .fa-solid {
        left: 50%;
        transform: translateX(-50%);
    }

    .sub-up,
    .sub-low,
    .subscribe-puls img {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .service-img {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .sponsors {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        justify-content: space-between;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid,
    .destinations-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .destination-card {
        width: 100%;
        max-width: 300px;
    }

    .sponsors {
        grid-template-columns: repeat(2, 1fr);
    }

    .subscribe-box{
        height: 330px;
    }

    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }

    .subscribe-form i {
        left: 30px;
    }
}