        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: sans-serif;
        }

        :root {
            --primary: #D35400;
            --secondary: #16A085;
            --accent: #E67E22;
            --light: #FFF9F2;
            --dark: #2C2C2C;
            --gray: #6c757d;
            --orange-light: #FFE8D6;
            --orange-dark: #A84300;
            --teal-light: #D1F2EB;
            --teal-dark: #0E6251;
            --footer-bg: #1a1a1a;
        }

        html {
            overflow-x: hidden;
        }

        body {
            background-color: #fefefe;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            /*max-width: 1200px;*/
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #0d2615 100%);
            color: white;
            padding: 0px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .logo i {
            color: var(--teal-light);
            margin-right: 10px;
            font-size: 32px;
        }

        .logo span {
            color: var(--teal-light);
            text-shadow: 0 0 5px rgba(22, 160, 133, 0.5);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 0;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--teal-light);
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }

        nav ul li a:hover {
            color: var(--teal-light);
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .cta-button {
            background: var(--teal-light);
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(22, 160, 133, 0.4);
            background: white;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu ul {
            list-style: none;
            text-align: center;
        }

        .mobile-menu ul li {
            margin: 20px 0;
        }

        .mobile-menu ul li a {
            color: white;
            text-decoration: none;
            font-size: 24px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .mobile-menu ul li a:hover {
            color: var(--teal-light);
        }

        .close-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 30px;
            background: none;
            border: none;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://bhutanluxurytour.com/bhutan-tour-package/image/banner3.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 150px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(211, 84, 0, 0.3), rgba(22, 160, 133, 0.2));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 52px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            font-weight: 700;
        }

        .hero h1 span {
            color: var(--secondary);
            text-shadow: 0 0 10px rgba(22, 160, 133, 0.5);
        }

        .hero p {
            font-size: 22px;
            max-width: 700px;
            margin: 0 auto 30px;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-wtsp {
            /* padding: 15px 35px; */
            border-radius: 30px;
                width: 50%;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            letter-spacing: 1px;
            border: none;
            background: linear-gradient(45deg, #12816b, #0cab8c);
        }


        .btn-whatsapp {
            padding: 1px 10px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            letter-spacing: 1px;
        }


        .btn-primary {
            /*background: linear-gradient(45deg, var(--secondary), var(--teal-dark));*/
            color: white;
            /*box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);*/
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(22, 160, 133, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Section Styles */
        section {
            padding: 40px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 42px;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 25px auto 0;
            font-size: 18px;
        }

        /* Tours Section */
        .tours-section {
            background: linear-gradient(to bottom, #fefefe, var(--light));
        }

        .tours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .tour-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s;
            position: relative;
        }

        .tour-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .tour-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            z-index: 1;
        }

        .tour-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .tour-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .tour-content {
            padding: 25px;
        }

        .tour-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .tour-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .tour-features {
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .tour-feature {
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .tour-feature i {
            color: var(--secondary);
            margin-right: 5px;
            font-size: 16px;
        }

        .tour-price {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }

        .download-btn {
            background:linear-gradient(45deg, #5c5b59, #a9a4a1);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 30px;
            cursor: pointer;
            width: 100%;
            height: 100%;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
        }

        .download-btn i {
            margin-right: 8px;
            font-size: 18px;
        }

        .download-btn:hover {
            background: linear-gradient(45deg, #a9a4a1, #5c5b59);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
        }
        
        .enquiry-btn {
            background: linear-gradient(45deg, var(--primary), var(--orange-dark));
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 30px;
            cursor: pointer;
            width: 50%;
            height: 100%;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
        }

        .enquiry-btn i {
            margin-right: 8px;
            font-size: 18px;
        }

        .enquiry-btn:hover {
            background: linear-gradient(45deg, var(--orange-dark), var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
        }

        /* Team Section */
        .team-section {
            background: linear-gradient(to bottom, var(--light), #fefefe);
            position: relative;
        }

        .team-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/cream-paper.png');
            opacity: 0.3;
            z-index: 0;
        }

        .team-container {
            position: relative;
            z-index: 1;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .team-member {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 25px 15px;
            transition: all 0.3s;
            position: relative;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .team-member:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .member-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background-size: cover;
            background-position: center;
            border: 5px solid var(--orange-light);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .member-info h3 {
            font-size: 22px;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .member-role {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .member-desc {
            color: var(--gray);
            font-size: 15px;
            line-height: 26px;
            text-align: justify;
        }

        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .member-social a {
            color: var(--primary);
            font-size: 18px;
            transition: all 0.3s;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--orange-light);
        }

        .member-social a:hover {
            color: white;
            background: var(--primary);
            transform: translateY(-3px);
        }

        /* Founder Section */
        .founder-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange-dark) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .founder-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/diagmonds.png');
            opacity: 0.1;
            z-index: 0;
        }

        .founder-container {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .founder-img {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            transform: rotate(-3deg);
            transition: all 0.4s;
        }

        .founder-img:hover {
            transform: rotate(0deg);
        }

        .founder-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .founder-info {
            flex: 1;
        }

        .founder-info h2 {
            font-size: 42px;
            margin-bottom: 5px;
            color: white;
            font-weight: 700;
        }

        .founder-info h3 {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 600;
            color: var(--teal-light);
        }

        .founder-info p {
            margin-bottom: 20px;
            font-size: 17px;
            line-height: 1.8;
        }

        .founder-quote {
            font-style: italic;
            border-left: 4px solid var(--teal-light);
            padding-left: 20px;
            margin: 20px 0;
            font-size: 18px;
            background: rgba(255, 255, 255, 0.1);
            padding: 9px;
            border-radius: 0 10px 10px 0;
        }

        /* Reviews Slider - 2 Cards View */
        .reviews-slider {
            max-width: 1200px;
            margin: 0 auto;
        }

        .review-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 0 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
            height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .review-card:before {
            content: "";
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .review-text {
            /* font-style: italic; */
            margin: 25px 0px 8px 0px;
            color: var(--gray);
            position: relative;
            z-index: 1;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
            text-align: justify;
        }

        .reviewer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: auto;
            margin-bottom: 20px;
        }

        .reviewer-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            border: 3px solid var(--secondary);
            flex-shrink: 0;
        }

        .reviewer-info h4 {
            color: var(--primary);
            margin-bottom: 5px;
            font-size: 16px;
        }

        .reviewer-info p {
            color: var(--gray);
            font-size: 14px;
        }

        /* Slick Slider Customization for 2 Cards */

        .reviews-slider .slick-track {
            display: flex;
            gap: 0;
        }

        .reviews-slider .slick-slide {
            height: auto;
            padding: 0 10px;
        }

        .more-text {
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            /* show 3 lines */
            -webkit-box-orient: vertical;
        }

        .more-text.show-all {
            -webkit-line-clamp: unset;
        }

        .read-more-btn {
            display: inline-block;
            margin-bottom: 6px;
            font-weight: 600;
            cursor: pointer;
            color: #0166ff;
        }


        /* .reviews-slider .slick-slide > div {
    height: 100%;
} */

        /* Slick Dots */
        .slick-dots {
            bottom: -50px;
        }

        .slick-dots li button:before {
            font-size: 12px;
            color: var(--primary);
            opacity: 0.5;
        }

        .slick-dots li.slick-active button:before {
            color: var(--primary);
            opacity: 1;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .review-card {
                margin: 0 5px;
                padding: 20px;
                height: 280px;
            }

            .review-text {
                -webkit-line-clamp: 3;
                font-size: 14px;
            }

            .reviewer {
                gap: 10px;
            }

            .reviewer-img {
                width: 50px;
                height: 50px;
            }

            .reviewer-info h4 {
                font-size: 14px;
            }

            .reviewer-info p {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .review-card {
                height: 250px;
                padding: 15px;
            }

            .review-text {
                -webkit-line-clamp: 3;
                font-size: 13px;
                margin-bottom: 15px;
            }

            .reviewer {
                flex-direction: column;
                gap: 8px;
            }

            .reviewer-img {
                width: 45px;
                height: 45px;
            }
        }

        /* Hotels Slider */
        .hotels-section {
            background: white;
        }

        .hotels-slider {
            margin: 0 -15px;
        }

        .hotel-card {
            margin: 0 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .hotel-card:hover {
            transform: translateY(-10px);
        }

        .hotel-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .hotel-info {
            padding: 20px;
            background: white;
        }

        .hotel-info h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .hotel-info p {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 10px;
            text-align: justify;
        }

        .hotel-rating {
            color: var(--secondary);
        }

        /* Partners Slider */
        .partners-section {
            background: var(--light);
            padding: 50px 0;
        }

        .partners-slider {
            margin: 0 auto;
            max-width: 1000px;
        }

        .partner-logo {
            display: flex !important;
            justify-content: center;
            align-items: center;
            height: 120px;
            margin: 0 20px;
        }

        .partner-logo img {
            max-width: 150px;
            max-height: 150px;
            transition: all 0.3s;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        /* FAQ Section */
        .faq-section {
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            background: var(--orange-light);
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
            transition: all 0.3s;
        }

        .faq-question i {
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
            background: white;
        }

        .faq-item.active .faq-question {
            background: var(--orange-light);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        /* Contact Form */
        .contact-section {
            background: linear-gradient(to bottom, #fefefe, var(--light));
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 24px;
        }

        .contact-details {
            margin-bottom: 15px;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-detail i {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .contact-form .form-group {
            margin-bottom: 20px;
        }

        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s;
        }

        textarea {
            height: 85px;
        }

        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 2px rgba(211, 84, 0, 0.2);
        }

        .contact-form textarea {
            height: 100px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(211, 84, 0, 0.4);
        }

        /* ===== Modal Overlay ===== */
        .modal {
            display: none;
            /* Hidden by default */
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow-y: auto;
            background-color: rgba(0, 0, 0, 0.7);
            /* semi-transparent dark overlay */
            backdrop-filter: blur(3px);
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        /* ===== Modal Box ===== */
        .modal-content {
            background: #ffffff;
            color: #222;
            border-radius: 12px;
            padding: 25px 30px;
            max-width: 450px;
            width: 100%;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: fadeInUp 0.4s ease;
        }

        /* ===== Close Button ===== */
        .close-modal {
            position: absolute;
            top: 12px;
            right: 16px;
            font-size: 28px;
            font-weight: bold;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: #000;
        }

        /* ===== Modal Heading ===== */
        .modal-content h3 {
            text-align: center;
            color: #d1a807;
            /* your golden color */
            margin-bottom: 20px;
            font-size: 1.5rem;
            letter-spacing: 0.5px;
        }

        /* ===== Form Styling ===== */
        .form-group {
            margin-bottom: 15px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 8px 14px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 15px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #d1a807;
            box-shadow: 0 0 4px rgba(209, 168, 7, 0.5);
            outline: none;
        }

        /* ===== Submit Button ===== */
        .submit-btn {
            width: 100%;
            background-color: #d1a807;
            color: #fff;
            border: none;
            padding: 12px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #b89506;
            transform: translateY(-1px);
        }

        /* ===== Animation ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 480px) {
            .modal-content {
                padding: 20px;
            }

            .modal-content h3 {
                font-size: 1.3rem;
            }

            .submit-btn {
                font-size: 15px;
            }
        }

        /* Fixed Contact Buttons */
        .fixed-contact {
            position: fixed;
            right: 30px;
            bottom: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .contact-btn:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            top: 0;
            left: -100%;
            transform: skewX(-30deg);
            transition: all 0.6s;
        }

        .contact-btn:hover:after {
            left: 120%;
        }

        .contact-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .call-btn {
            background: linear-gradient(45deg, var(--primary), var(--orange-dark));
        }

        .whatsapp-btn {
            background: linear-gradient(45deg, #25D366, #128C7E);
        }

        .contact-tooltip {
            position: absolute;
            right: 70px;
            background: var(--dark);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s;
            pointer-events: none;
        }

        .contact-btn:hover .contact-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        /* Footer Styles */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #0d2615 100%);
            color: white;
            padding: 70px 0 0;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .footer-wave {
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .footer-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 35px;
        }

        .footer-wave .shape-fill {
            fill: var(--footer-bg);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 7px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .footer-col {
            padding: 0 15px;
        }

        .footer-col h3 {
            font-size: 22px;
            margin-bottom: 25px;
            color: var(--teal-light);
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: 0;
            left: 0;
            border-radius: 3px;
        }

        .footer-col p {
            color: #b0b0b0;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }

        .footer-links li:hover {
            transform: translateX(5px);
        }

        .footer-links li i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .footer-links li:hover i {
            color: var(--primary);
            transform: scale(1.2);
        }

        .footer-links li a {
            color: #b0b0b0;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links li:hover a {
            color: var(--teal-light);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--orange-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
        }

        .contact-icon i {
            color: white;
            font-size: 16px;
        }

        .contact-details h4 {
            color: var(--teal-light);
            margin-bottom: 5px;
            font-size: 16px;
        }

        .contact-details p {
            color: #b0b0b0;
            margin: 0;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            color: white;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .social-links a:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 0.3s;
            z-index: -1;
        }

        .social-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        .social-links a:hover:before {
            opacity: 1;
        }

        .social-links a i {
            font-size: 18px;
            transition: all 0.3s;
        }

        .instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }

        .facebook {
            background: #3b5998;
        }

        .twitter {
            background: #1da1f2 !important;
        }

        .linkedin {
            background: #0077b5;
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .copyright {
            color: #888;
            font-size: 14px;
            justify-items: center;
        }

        .copyright a {
            color: var(--teal-light);
            text-decoration: none;
            transition: all 0.3s;
        }

        .copyright a:hover {
            color: var(--primary);
        }

        .footer-menu {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-menu a {
            color: #888;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .footer-menu a:hover {
            color: var(--teal-light);
        }

        .back-to-top {
            position: absolute;
            right: 20px;
            top: -25px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            z-index: 2;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Floating Elements */
        .floating-elem {
            position: absolute;
            z-index: 0;
        }

        .elem-1 {
            top: 10%;
            left: 5%;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        .elem-2 {
            bottom: 20%;
            right: 8%;
            width: 70px;
            height: 70px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.2;
            animation: float 8s ease-in-out infinite;
        }

        .elem-3 {
            top: 40%;
            right: 10%;
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0.2;
            animation: float 7s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }

            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* Site Logo */
        .site-logo img {
            display: block;
            max-width: 100%;
            height: auto;
            width: auto;
            max-height: 88px;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .site-logo img {
                max-height: 80px;
            }
        }

        @media (max-width: 992px) {

            .founder-container,
            .contact-container {
                flex-direction: column;
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero p {
                font-size: 20px;
            }

            .section-title h2 {
                font-size: 36px;
            }

            .fixed-contact {
                right: 20px;
                bottom: 20px;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {

            /* Mobile Menu */
            nav ul {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .btn {
                width: 80%;
                text-align: center;
            }

            .section-title h2 {
                font-size: 32px;
            }

            .hero {
                padding: 120px 0;
            }

            section {
                padding: 80px 0;
            }

            .fixed-contact {
                right: 15px;
                bottom: 15px;
            }

            .contact-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-menu {
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            .site-logo img {
                max-height: 70px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-title h2 {
                font-size: 26px;
            }

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

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

            .tour-features {
                flex-direction: column;
                gap: 10px;
            }

            .tour-feature {
                /*justify-content: center;*/
            }

            .founder-info h2 {
                font-size: 32px;
            }

            .founder-info h3 {
                font-size: 20px;
            }

            .founder-quote {
                font-size: 16px;
                padding: 15px;
            }

            .contact-container {
                gap: 30px;
            }

            footer {
                padding: 50px 0 0;
            }

            .footer-col {
                padding: 0 10px;
            }
        }

        @media (max-width: 480px) {
             .site-logo img {
                max-height: 65px;
            }
            .hero {
                padding: 100px 0;
            }

            .hero h1 {
                font-size: 24px;
            }

            .btn {
                padding: 12px 25px;
                font-size: 14px;
            }

            .section-title h2 {
                font-size: 22px;
            }

            .section-title p {
                font-size: 16px;
            }

            .tour-content h3 {
                font-size: 20px;
            }

            .tour-price {
                font-size: 24px;
            }

            .member-info h3 {
                font-size: 20px;
            }

            .founder-info h2 {
                font-size: 28px;
            }

            .founder-info h3 {
                font-size: 18px;
            }

            .founder-info p {
                font-size: 15px;
            }

            .founder-quote {
                font-size: 14px;
                padding: 10px;
                margin: 20px 0;
                border-left-width: 3px;
                padding-left: 15px;
                border-radius: 0 8px 8px 0;
                background: rgba(255, 255, 255, 0.05);
                font-style: normal;
                font-weight: 300;
                line-height: 1.6;
                letter-spacing: 0.2px;
                box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
                backdrop-filter: blur(5px);
                -webkit-backdrop-filter: blur(5px);
                border: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .form-group input, .form-group select, .form-group textarea {
                padding: 5px 14px;
            }
        }


        .lead-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .lead-popup-content {
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            width: 350px;
            position: relative;
            text-align: center;
        }

        .lead-popup-content input {
            width: 100%;
            padding: 10px;
            margin: 8px 0;
        }

        #closePopup {
            position: absolute;
            top: 10px;
            right: 15px;
            cursor: pointer;
            font-size: 20px;
        }
        
        
        
        
        .info-btn {
            display: flex;
        }


        /* Desktop */
        .btn-wrapper {

            gap: 12px;
        }



        @media (max-width: 480px) {

            /* Stack buttons */
            .tour-content .d-flex.pb-4 {
                flex-direction: column;
                align-items: stretch;
            }

            .info-btn {
                display: block;
            }

            /* Enquiry button */
            .tour-content .enquiry-btn {
                width: 100%;
                height: 48px;
                font-size: 15px;
                justify-content: center;
                border-radius: 30px;
                margin: 0 !important;
            }

            /* WhatsApp button container */
            .tour-content .btn-wtsp {
                width: 100%;
                padding: 0;
                border: none;
                margin-top: 10px;
            }

            /* Actual WhatsApp link */
            .tour-content .btn-whatsapp {
                width: 100%;
                height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 30px;
                font-size: 15px;
                text-decoration: none;
            }
        }