        /* ========== RESET & BASE ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #111;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Playfair Display', serif;
        }

        /* ========== HERO WRAPPER ========== */
        .hero-wrapper {
            min-height: 100vh;
            background:
                linear-gradient(rgba(25, 10, 8, .65), rgba(25, 10, 8, .65)),
                url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1600");
            background-size: cover;
            background-position: center;
            position: relative;
        }

        /* ========== TOP BAR ========== */
        .top-contact {
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: right;
        }

        .top-contact a {
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .top-contact a i {
            color: #d8a24c;
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            top: 1px;
        }

        .top-bar .container {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        /* ========== NAVBAR ========== */
        .custom-navbar {
            position: sticky;
            top: 0;
            z-index: 999;
            backdrop-filter: blur(12px);
            background: rgba(0, 0, 0, .25);
            padding: 10px 0;
            overflow: visible;
        }

        .logo {
            width: 90px;
            border-radius: 50%;
            transition: .4s;
        }

        .logo:hover {
            transform: rotate(8deg) scale(1.08);
        }

        .nav-link {
            color: #fff !important;
            margin: 0 12px;
            transition: .35s;
            font-weight: 500;
        }

        .nav-link:hover {
            color: #d4a25c !important;
        }

        .trip-btn {
            background: #d4a25c;
            color: #111;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            transition: .4s;
            text-decoration: none;
            display: inline-block;
        }

        .trip-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 20px rgba(212, 162, 92, .5);
            color: #111;
        }

        /* ========== HERO ========== */
        .hero-section {
            padding-top: 60px;
        }

        .hero-content {
            color: #fff;
            padding-top: 100px;
        }

        .hero-content h1 {
            font-size: 64px;
            line-height: 1.1;
            max-width: 850px;
        }

        .hero-content span {
            color: #d4a25c;
            text-shadow: 0 0 15px rgba(212, 162, 92, .6);
        }

        .hero-content p {
            margin: 20px 0;
            font-size: 20px;
            max-width: 500px;
        }

        /* ========== TEXT ANIMATION ========== */
        .hero-title {
            opacity: 0;
            animation: slideLeft 1.3s ease forwards;
        }

        .hero-text {
            opacity: 0;
            animation: fadeUp 1.2s ease .5s forwards;
        }

        .hero-btn {
            opacity: 0;
            animation: fadeUp 1.2s ease 1s forwards;
        }

        @keyframes slideLeft {
            from {
                opacity: 0;
                transform: translateX(-120px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== MINI CARDS ========== */
        .mini-cards {
            display: flex;
            gap: 18px;
            margin: 35px 0;
            flex-wrap: wrap;
        }

        .card-box {
            width: 170px;
            height: 110px;
            overflow: hidden;
            border-radius: 15px;
            border: 2px solid rgba(255, 255, 255, .4);
            background: #222;
            display: block;
            transition: .45s;
        }

        .card-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .45s;
        }

        .card-box:hover {
            transform: translateY(-8px) scale(1.06);
            box-shadow: 0 15px 35px rgba(0, 0, 0, .5);
        }

        .card-box:hover img {
            transform: scale(1.15);
        }

        /* ========== HERO BUTTON ========== */
        .hero-btn {
            background: #d4a25c;
            color: #111;
            padding: 14px 32px;
            border-radius: 10px;
            font-weight: 600;
            transition: .4s;
            margin-bottom: 50px;
            text-decoration: none;
            display: inline-block;
        }

        .hero-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(212, 162, 92, .6);
            color: #111;
        }

        /* ========== STATS ========== */
        .stats-strip {
            background: #5b120d;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 22px 15px;
            color: #fff;
            flex-wrap: wrap;
            gap: 20px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .stat-item i {
            font-size: 30px;
            color: #d4a25c;
        }

        .stat-item strong {
            display: block;
            font-size: 24px;
            font-weight: 700;
            color: #fff;
        }

        .stat-item span {
            display: block;
            font-size: 14px;
            color: #ddd;
        }

        /* ========== ABOUT ========== */
        .about-section {
            padding: 100px 0;
            background: #f8f8f8;
        }

        .section-tag {
            color: #d4a25c;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 60px;
            font-weight: 700;
            color: #222;
            margin: 15px 0;
            line-height: 1.1;
        }

        .section-text {
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .feature-box {
            background: #fff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
            transition: .4s;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 45px rgba(0, 0, 0, .18);
        }

        .feature-box i {
            font-size: 35px;
            color: #d4a25c;
            margin-bottom: 15px;
        }

        .feature-box h5 {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .feature-box p {
            color: #666;
            font-size: 15px;
            margin: 0;
        }

        .discover-btn {
            background: #d4a25c;
            color: #fff;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 600;
            transition: .3s;
            text-decoration: none;
            display: inline-block;
        }

        .discover-btn:hover {
            background: #b88743;
            color: #fff;
            transform: translateY(-3px);
        }

        /* ========== DESTINATION ========== */
        .destination-section {
            background: #4b0d0d;
            padding: 80px 0 40px;
        }

        .destination-section .section-tag {
            color: #d4a25c;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 2px;
        }

        .destination-section .section-title {
            color: #fff;
            font-size: 42px;
            margin-top: 10px;
            margin-bottom: 40px;
        }

        .destination-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 350px;
            cursor: pointer;
        }

        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .5s;
        }

        .destination-card:hover img {
            transform: scale(1.1);
        }

        .destination-overlay {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, .8));
        }

        .destination-overlay h4 {
            color: #fff;
            margin-bottom: 8px;
        }

        .destination-overlay a {
            color: #d4a25c;
            text-decoration: none;
            font-size: 14px;
        }

        .destination-btn {
            background: #d4a25c;
            color: #fff;
            padding: 12px 28px;
            border-radius: 8px solid #fff;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
        }

        /* ========== EXPERIENCE ========== */
        .experience-section {
            background: #5d0e0e;
        }

        .experience-section .container {
            max-width: 1320px;
        }

        .experience-section .row {
            align-items: center;
            --bs-gutter-x: 2rem;
        }

        .experience-section .section-tag {
            color: #d4a25c;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 13px;
        }

        .experience-section .section-title {
            color: #fff;
            font-size: 42px;
            margin-top: 10px;
            margin-bottom: 50px;
        }

        .exp-feature-box {
            background: #5d1212;
            border: 1px solid rgba(212, 162, 92, .25);
            border-radius: 12px;
            padding: 25px;
            height: 170px;
            transition: .35s;
        }

        .exp-feature-box i {
            font-size: 30px;
            color: #d4a25c;
        }

        .exp-feature-box h5 {
            color: #fff;
            margin-top: 15px;
        }

        .exp-feature-box p {
            color: #ddd;
            font-size: 14px;
        }

        .exp-feature-box:hover {
            transform: translateY(-8px);
            border-color: #d4a25c;
        }

        .experience-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            border-radius: 15px;
        }

        .experience-wrapper {
            display: flex;
            align-items: stretch;
            gap: 25px;
        }

        .exp-features-grid {
            padding-left: 20px;
            padding-right: 35px;
        }

        .experience-banner {
            height: 620px;
            overflow: hidden;
            border-radius: 18px;
            background: #000;
        }

        .experience-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }

        .destination-section {
            padding-bottom: 70px;
        }

        .experience-section {
            margin-top: 0;
            padding-top: 70px;
        }

        .row.g-4 {
            --bs-gutter-x: 20px;
            --bs-gutter-y: 20px;
        }

        .experience-section .section-title {
            margin-bottom: 35px;
        }

        /* ========== ACHIEVEMENT ========== */
        .achievement-section {
            position: relative;
            background-color: #861818;
            overflow: hidden;
        }

        .achievement-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("images/pattern.png");
            background-repeat: repeat;
            background-size: 320px;
            opacity: .08;
            z-index: 0;
        }

        .achievement-section .container {
            position: relative;
            z-index: 1;
        }

        .achievement-section .section-title {
            color: #fff;
        }

        .achievement-box {
            border: 1px solid rgba(212, 162, 92, .25);
            border-radius: 15px;
            padding: 30px 20px;
            transition: .4s;
            background: rgba(255, 255, 255, .03);
        }

        .achievement-box:hover {
            transform: translateY(-8px);
            border-color: #d4a25c;
        }

        .achievement-box i {
            font-size: 42px;
            color: #d4a25c;
        }

        .achievement-box h2 {
            color: #fff;
            margin-top: 15px;
            font-weight: 700;
        }

        .achievement-box p {
            color: #ddd;
            margin: 0;
        }

        .achievement-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 45px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .achievement-buttons .btn {
            background: #d8a24c;
            color: #4b0000;
            padding: 16px 40px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .achievement-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 34px;
            background: #d8a24c;
            color: #5b1010;
            text-decoration: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            transition: .35s;
            border: 2px solid transparent;
        }

        .achievement-btn:hover {
            background: transparent;
            color: #d8a24c;
            border-color: #d8a24c;
            transform: translateY(-4px);
        }

        .achievement-btn i {
            font-size: 16px;
        }

        /* ========== JOURNEY ========== */
        .journey-section {
            background: #4b0d0d;
            padding: 100px 0;
        }

        .journey-section .section-title {
            color: #fff;
        }

        .journey-section .section-tag {
            color: #d4a25c;
        }

        .journey-card {
            position: relative;
            overflow: hidden;
            border-radius: 18px;
            height: 270px;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, .08);
            box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
        }

        .journey-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .5s;
        }

        .journey-card:hover img {
            transform: scale(1.08);
        }

        .journey-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, .85));
        }

        .journey-overlay h4 {
            color: #fff;
            margin-bottom: 6px;
        }

        .journey-overlay p {
            color: #ddd;
            font-size: 14px;
            margin-bottom: 6px;
        }

        .journey-overlay span {
            color: #d4a25c;
            font-weight: 600;
        }

        /* ========== TESTIMONIAL ========== */
        .testimonial-section {
            background: #f5ebde;
            padding: 100px 0;
        }

        .review-card {
            background: #8b1b1b;
            border: 2px solid #d8a24c;
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            margin: 0 10px;
            transition: .3s;
        }

        .review-card:hover {
            transform: translateY(-10px);
        }

        .review-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .review-card h5 {
            margin-top: 18px;
            font-size: 22px;
        }

        .review-card span {
            display: block;
            color: #888;
            margin-bottom: 18px;
        }

        /* ========== WHY SECTION ========== */
        .why-section {
            background: #f5ebde;
            padding: 100px 0;
        }

        .why-card {
            background: #651414;
            border: 2px solid rgba(212, 162, 92, .4);
            border-radius: 18px;
            padding: 28px;
            height: 100%;
            transition: .4s;
        }

        .why-card:hover {
            transform: translateY(-8px);
            border-color: #d4a25c;
        }

        .why-card i {
            font-size: 36px;
            color: #d4a25c;
            margin-bottom: 18px;
        }

        .why-card h5 {
            color: #fff;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .why-card p {
            color: #ddd;
            font-size: 15px;
            line-height: 1.7;
        }

        .partner-logos {
            display: flex;
            gap: 25px;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .partner-logos img {
            height: 45px;
            opacity: .9;
            transition: .3s;
        }

        .partner-logos img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .why-section .section-title {
            font-size: 58px;
            color: #222;
        }

        .why-section .section-text {
            color: #666;
            max-width: 620px;
        }

        /* ========== REVIEW SECTION ========== */
        .review-section {
            background: url("../images/review-bg.jpg") center center/cover no-repeat;
            padding: 100px 0;
            position: relative;
        }

        .review-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(35, 10, 10, .55);
        }

        .review-section .container {
            position: relative;
            z-index: 2;
        }

        .review-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 70px;
            position: relative;
            overflow: visible;
        }

        .review-image img {
            width: 460px;
            height: auto;
            display: block;
        }

        .review-card {
            width: 400px;
            background: #7d1717;
            border: 2px solid #d8a24c;
            border-radius: 18px;
            padding: 35px;
            color: #fff;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
            position: relative;
            overflow: hidden;
            min-height: 380px;
        }

        .review-card h3 {
            color: #fff;
            margin-bottom: 15px;
        }

        .review-card p {
            color: #f2f2f2;
            line-height: 1.7;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 25px;
        }

        .review-user img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #d8a24c;
        }

        .review-user h5 {
            margin: 0;
            color: #fff;
            font-size: 18px;
        }

        .review-user span {
            color: #ddd;
            font-size: 14px;
        }

        .review-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: #d8a24c;
            color: #5c1010;
            cursor: pointer;
            font-size: 20px;
            z-index: 100;
        }

        .review-heading span {
            color: #d8a24c;
            font-size: 14px;
            letter-spacing: 2px;
        }

        .review-heading h2 {
            color: #fff;
            font-size: 48px;
            margin-top: 10px;
            margin-bottom: 30px;
        }

        .review-tags {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .review-tags button {
            background: #8b1616;
            color: #fff;
            border: 1px solid #d8a24c;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
        }

        .review-arrow.left {
            left: 280px;
        }

        .review-arrow.right {
            right: 280px;
        }

        .review-logo {
            position: absolute;
            width: 250px;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            opacity: .06;
            z-index: 0;
        }

        .review-btn {
            margin-top: 40px;
            text-align: center;
        }

        /* ========== BLOG ========== */
        .blog-section {
            padding: 100px 0;
            background: #f6eee4;
        }

        .blog-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 40px;
            margin-bottom: 50px;
        }

        .blog-subtitle {
            color: #8b2a22;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .blog-top h2 {
            font-size: 46px;
            color: #2d1b14;
            margin-top: 10px;
            font-weight: 700;
        }

        .blog-top p {
            color: #666;
            max-width: 330px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .blog-link {
            color: #8b2a22;
            text-decoration: none;
            font-weight: 600;
        }

        .blog-link i {
            margin-left: 8px;
        }

        .blog-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
            transition: .4s;
        }

        .blog-card:hover {
            transform: translateY(-10px);
        }

        .blog-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .blog-content {
            padding: 22px;
        }

        .blog-meta {
            display: flex;
            gap: 20px;
            font-size: 13px;
            color: #8b2a22;
            margin-bottom: 15px;
        }

        .blog-meta i {
            margin-right: 6px;
        }

        .blog-content h3 {
            font-size: 24px;
            color: #2d1b14;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .blog-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .blog-content a {
            color: #8b2a22;
            text-decoration: none;
            font-weight: 600;
        }

        .blog-content a i {
            margin-left: 8px;
        }

        .blog-content a:hover {
            color: #d89b38;
        }

        /* ========== NEWSLETTER ========== */
        .newsletter {
            background: #6e1414;
            padding: 70px 0;
        }

        .newsletter h2 {
            font-size: 52px;
        }

        .newsletter-left img {
            width: 130px;
        }

        .newsletter-content span {
            color: #d7a24c;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .newsletter-content h2 {
            color: #fff;
            margin-top: 10px;
            font-size: 36px;
            line-height: 1.3;
        }

        .newsletter-form {
            width: 520px;
        }

        .newsletter-form form {
            display: flex;
        }

        .newsletter-form input {
            flex: 1;
            height: 55px;
            border: none;
            outline: none;
            padding: 0 20px;
            border-radius: 10px 0 0 10px;
        }

        .newsletter-form button {
            border: none;
            background: #d8a24c;
            color: #3d0b0b;
            padding: 0 25px;
            border-radius: 0 10px 10px 0;
            font-weight: 600;
            cursor: pointer;
        }

        .newsletter-form p {
            color: #ddd;
            margin-top: 10px;
            font-size: 13px;
        }

        .newsletter-icon {
            width: 70px;
            height: 70px;
            background: #d8a24c;
            color: #5d0d0d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #2b0d0d;
            padding: 60px 0 0;
            color: #fff;
        }

        .footer-wrapper {
            display: grid;
            grid-template-columns: 280px 1fr 1fr 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .footer-image {
            width: 100%;
            overflow: hidden;
            border-radius: 20px;
        }

        .footer-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            border-radius: 20px;
            transition: .4s;
        }

        .footer-image:hover img {
            transform: scale(1.05);
        }

        .footer-logo {
            width: 90px;
            margin-bottom: 20px;
        }

        .footer-about p {
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #d8a24c;
            color: #4b0000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: .3s;
            font-size: 18px;
        }

        .footer-social a:hover {
            background: #fff;
            color: #7d1717;
        }

        .footer-links h4 {
            color: #fff;
            margin-bottom: 22px;
            font-size: 30px;
            font-family: 'Cormorant Garamond', serif;
        }

        .footer-links ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .footer-links ul li {
            margin: 14px 0;
        }

        .footer-links ul li a {
            color: #ddd;
            text-decoration: none;
            transition: .3s;
        }

        .footer-links ul li a:hover {
            color: #d8a24c;
        }

        .support-links {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .support-links li {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 20px;
        }

        .support-links li i {
            width: 48px;
            height: 48px;
            background: #d8a24c;
            color: #5b0b0b;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            transition: .3s;
        }

        .support-links li a {
            color: #ddd;
            text-decoration: none;
            transition: .3s;
            line-height: 1.5;
        }

        .support-links li:hover i {
            background: #fff;
            color: #7d1717;
            transform: translateY(-3px);
        }

        .support-links li:hover a {
            color: #d8a24c;
        }

        .footer-bottom {
            margin-top: 60px;
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, .1);
            text-align: center;
            color: #bbb;
            font-size: 14px;
        }

        /* ============================================================
                   RESPONSIVE – ENHANCED MOBILE DESIGN
                   ============================================================ */

        /* ---------- LARGE TABLETS & SMALL LAPTOPS ---------- */
        @media (max-width: 1199px) {
            .footer-wrapper {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 30px;
            }

            .review-image img {
                width: 380px;
            }

            .review-card {
                width: 350px;
                min-height: 340px;
            }

            .review-arrow.left {
                left: 180px;
            }
            .review-arrow.right {
                right: 180px;
            }
        }

        /* ---------- TABLETS ---------- */
        @media (max-width: 991px) {
            /* Nav */
            .navbar-collapse {
                background: #4b0d0d;
                padding: 20px;
                border-radius: 12px;
                margin-top: 15px;
            }
            .navbar-nav {
                text-align: center;
            }
            .trip-btn {
                width: 100%;
                margin-top: 20px;
                text-align: center;
            }

            /* Hero */
            .hero-content h1 {
                font-size: 48px;
            }

            /* Stats */
            .stats-strip {
                flex-direction: column;
                gap: 25px;
                text-align: center;
            }

            /* About */
            .about-img {
                height: 320px;
            }
            .section-title {
                font-size: 42px;
            }

            /* Experience */
            .experience-wrapper {
                flex-direction: column;
            }
            .exp-features-grid {
                padding-left: 0;
                padding-right: 0;
            }
            .experience-banner {
                height: 420px;
            }

            /* Review */
            .review-heading h2 {
                font-size: 42px;
            }
            .review-wrapper {
                flex-direction: column;
                gap: 30px;
            }
            .review-image img {
                width: 320px;
            }
            .review-card {
                width: 100%;
                max-width: 650px;
                min-height: auto;
            }
            .review-arrow {
                display: none;
            }

            /* Blog */
            .blog-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .blog-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Footer */
            .footer-wrapper {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            /* Newsletter */
            .newsletter-form {
                width: 100%;
            }

            /* Why */
            .why-section .section-title {
                font-size: 42px;
            }

            /* Destination */
            .destination-section .section-title {
                font-size: 34px;
            }
        }

        /* ---------- MOBILE (PHONES) ---------- */
        @media (max-width: 768px) {
            /* Hero */
            .hero-content {
                padding-top: 40px;
                text-align: center;
            }
            .hero-content h1 {
                font-size: 32px;
                line-height: 1.2;
                max-width: 100%;
            }
            .hero-content p {
                font-size: 15px;
                margin: 15px auto;
                max-width: 100%;
            }
            .hero-btn {
                margin-bottom: 30px;
            }

            /* Mini Cards */
            .mini-cards {
                justify-content: center;
                gap: 12px;
            }
            .card-box {
                width: 100px;
                height: 70px;
            }

            /* Stats */
            .stats-strip {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 20px 12px;
            }
            .stat-item {
                justify-content: center;
                flex-direction: column;
                text-align: center;
                gap: 6px;
            }
            .stat-item i {
                font-size: 24px;
            }
            .stat-item strong {
                font-size: 20px;
            }

            /* Section Titles */
            .section-title {
                font-size: 32px !important;
            }

            /* About */
            .about-section {
                padding: 60px 0;
            }
            .about-img {
                height: 240px;
            }

            /* Destination */
            .destination-section {
                padding: 60px 0 30px;
            }
            .destination-section .section-title {
                font-size: 28px;
            }
            .destination-card {
                height: 250px;
            }

            /* Experience */
            .experience-section {
                padding-top: 50px;
            }
            .experience-section .section-title {
                font-size: 28px;
                margin-bottom: 25px;
            }
            .experience-banner {
                height: 280px;
            }
            .exp-feature-box {
                height: auto;
                padding: 20px;
            }

            /* Achievement */
            .achievement-section {
                padding: 60px 0;
            }
            .achievement-box {
                padding: 20px 15px;
                text-align: center;
            }
            .achievement-box i {
                font-size: 32px;
            }
            .achievement-box h2 {
                font-size: 28px;
            }
            .achievement-buttons {
                flex-direction: column;
                gap: 12px;
            }
            .achievement-buttons .btn {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
            }

            /* Journey */
            .journey-section {
                padding: 60px 0;
            }
            .journey-card {
                height: 210px;
            }

            /* Testimonial */
            .testimonial-section {
                padding: 60px 0;
            }
            .review-card {
                padding: 15px;
                margin: 0 5px;
            }
            .review-card img {
                height: 180px;
            }
            .review-card h5 {
                font-size: 18px;
            }

            /* Why */
            .why-section {
                padding: 60px 0;
            }
            .why-section .section-title {
                font-size: 32px;
            }
            .why-section .row {
                row-gap: 30px;
            }
            .partner-logos {
                justify-content: center;
            }
            .partner-logos img {
                height: 35px;
            }
            .why-card {
                padding: 20px;
                text-align: center;
            }
            .why-card h5 {
                font-size: 20px;
            }

            /* Review Section (full-width card) */
            .review-section {
                padding: 60px 0;
            }
            .review-heading h2 {
                font-size: 30px;
                line-height: 1.2;
            }
            .review-tags {
                gap: 8px;
                margin-bottom: 30px;
            }
            .review-tags button {
                padding: 8px 14px;
                font-size: 13px;
            }
            .review-image img {
                width: 200px;
                margin: 0 auto;
            }
            .review-card {
                padding: 25px;
                border-radius: 15px;
                min-height: auto;
            }
            .review-card h3 {
                font-size: 26px;
            }
            .review-card p {
                font-size: 14px;
                line-height: 1.7;
            }
            .review-user img {
                width: 50px;
                height: 50px;
            }
            .review-btn .btn-default {
                padding: 12px 24px;
                font-size: 14px;
            }

            /* Blog */
            .blog-section {
                padding: 60px 0;
            }
            .blog-top h2 {
                font-size: 32px;
            }
            .blog-top p {
                max-width: 100%;
            }
            .blog-wrapper {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .blog-card img {
                height: 200px;
            }
            .blog-content {
                padding: 18px;
            }
            .blog-content h3 {
                font-size: 20px;
            }

            /* Newsletter */
            .newsletter {
                padding: 50px 0;
            }
            .newsletter-wrapper {
                flex-direction: column;
                text-align: center;
            }
            .newsletter-left img {
                width: 100px;
                margin: 0 auto 15px;
            }
            .newsletter-content h2 {
                font-size: 28px;
            }
            .newsletter-form {
                width: 100%;
            }
            .newsletter-form form {
                flex-direction: column;
            }
            .newsletter-form input {
                border-radius: 10px;
                margin-bottom: 10px;
                height: 50px;
            }
            .newsletter-form button {
                border-radius: 10px;
                height: 50px;
                padding: 0 20px;
            }
            .newsletter-icon {
                width: 56px;
                height: 56px;
                font-size: 22px;
                margin: 0 auto 10px;
            }

            /* Footer */
            .footer {
                padding: 40px 0 0;
            }
            .footer-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
            .footer-image img {
                height: 200px;
            }
            .footer-social {
                justify-content: center;
            }
            .footer-links h4 {
                font-size: 24px;
                margin-bottom: 15px;
            }
            .footer-links ul li {
                margin: 10px 0;
            }
            .support-links li {
                justify-content: center;
                flex-wrap: wrap;
            }
            .support-links li i {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            .footer-bottom {
                margin-top: 40px;
                padding: 18px 0;
                font-size: 13px;
            }

            /* Top Bar - hide on small screens or stack */
            .top-contact {
                justify-content: center;
                gap: 12px;
                flex-wrap: wrap;
            }
            .top-contact a {
                font-size: 12px;
            }
            .top-contact a i {
                font-size: 13px;
            }

            /* Utility: center text on mobile */
            .text-center-mobile {
                text-align: center !important;
            }

            /* Destination overlay text */
            .destination-overlay h4 {
                font-size: 18px;
            }
            .destination-overlay a {
                font-size: 13px;
            }
        }

        /* ---------- EXTRA SMALL ( < 480px ) ---------- */
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 26px;
            }
            .hero-content p {
                font-size: 14px;
            }
            .card-box {
                width: 80px;
                height: 60px;
            }
            .stats-strip {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
                padding: 16px 10px;
            }
            .stat-item strong {
                font-size: 18px;
            }
            .stat-item span {
                font-size: 12px;
            }
            .section-title {
                font-size: 26px !important;
            }
            .destination-card {
                height: 200px;
            }
            .journey-card {
                height: 180px;
            }
            .blog-card img {
                height: 170px;
            }
            .review-image img {
                width: 160px;
            }
            .review-card {
                padding: 18px;
            }
            .review-card h3 {
                font-size: 22px;
            }
            .footer-links h4 {
                font-size: 20px;
            }
            .newsletter-content h2 {
                font-size: 24px;
            }
            .experience-banner {
                height: 220px;
            }
        }