 
        :root {
  --primary-color: #FF6B35;      /* Vibrant Rajasthani Orange (desert sunset) */
  --secondary-color: #E67E22;    /* Deep Saffron (traditional turbans) */
  --accent-color: #F39C12;       /* Golden Yellow (sandstone palaces) */
  --dark-color: #000000;        /* Rich Terracotta (earthenware) */
  --light-bg: #FFF8F0;          /* Warm Ivory (marble floors) */
  --text-dark: #3E2723;         /* Dark Chocolate (wood carvings) */
  --text-light: #FFFFFF;        /* Pure White (palace walls) */
  --highlight: #D35400;         /* Deep Orange (traditional fabrics) */
  --earth: #A0522D;             /* Rustic Brown (village walls) */
  --gold: #FFD700;              /* Royal Gold (palace domes) */
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
        }

        /* Header Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--secondary-color) !important;
        }

        .navbar-brand i {
            color: var(--primary-color);
        }

        .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Package Banner */
        .package-banner {
            position: relative;
            height: 500px;
            margin-top: 80px;
            overflow: hidden;
        }

        .package-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .banner-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .banner-content .price {
            font-size: 2rem;
            color: var(--primary-color);
            font-weight: bold;
        }

        /* Package Details Section */
        .package-details {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .detail-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .detail-card h3 {
            color: var(--secondary-color);
            font-weight: bold;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .detail-card h3 i {
            color: var(--primary-color);
        }

        .package-meta {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .meta-item i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        /* Itinerary Styles */
        .itinerary-item {
            border-left: 3px solid var(--primary-color);
            padding-left: 20px;
            margin-bottom: 30px;
            position: relative;
        }

        .itinerary-item::before {
            content: '';
            position: absolute;
            left: -9px;
            top: 0;
            width: 15px;
            height: 15px;
            background: var(--primary-color);
            border-radius: 50%;
        }

        .itinerary-item h5 {
            color: var(--secondary-color);
            font-weight: bold;
            margin-bottom: 10px;
        }

        .itinerary-item p {
            color: #666;
            line-height: 1.8;
        }

        /* Inclusions/Exclusions */
        .inclusion-exclusion ul {
            list-style: none;
            padding: 0;
        }

        .inclusion-exclusion li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .inclusion-exclusion li i {
            font-size: 1.2rem;
        }

        .inclusion-exclusion .inclusion li i {
            color: #28a745;
        }

        .inclusion-exclusion .exclusion li i {
            color: #dc3545;
        }

        /* Enquiry Form */
        .enquiry-form {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 100px;
        }

        .enquiry-form h3 {
            color: var(--secondary-color);
            font-weight: bold;
            margin-bottom: 20px;
        }

        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 15px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
        }

        .btn-submit {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-info {
            background: var(--light-bg);
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }

        .contact-info h5 {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-info i {
            color: var(--primary-color);
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-widget h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: bold;
        }

        .footer-widget ul {
            list-style: none;
            padding: 0;
        }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

        .footer-widget ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-widget ul li a:hover {
            color: var(--primary-color);
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2.5rem;
            }
            
            .package-banner {
                height: 350px;
                margin-top: 70px;
            }
            
            .package-details {
                padding: 50px 0;
            }
            
            .enquiry-form {
                position: relative;
                top: 0;
                margin-top: 30px;
            }
        }
   