        :root {
            --primary-yellow: #FFD700;
            --accent-black: #1a1a1a;
            --pure-white: #ffffff;
            --soft-gray: #f8f9fa;
            --success-green: #28a745;
            --text-dark: #333333;
            --spiritual-orange: #FF6B35;
            --temple-gold: #D4AF37;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(180deg,rgba(40, 167, 69, 0.75),rgba(255, 215, 0, 0.75));
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: var(--pure-white);
            text-align: center;
        }
        
        .page-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Hero Section */
        .hero-section {
            background: var(--soft-gray);
            padding: 80px 0;
        }
        
        .hero-content h2 {
            font-size: 2.5rem;
            color: var(--accent-black);
            margin-bottom: 1.5rem;
        }
        
        .hero-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: var(--pure-white);
        }
        
        .feature-card {
            background: var(--soft-gray);
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--spiritual-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: var(--pure-white);
        }
        
        .feature-title {
            font-size: 1.3rem;
            color: var(--accent-black);
            margin-bottom: 1rem;
        }
        
        .feature-description {
            color: #666;
            line-height: 1.6;
        }
        
        /* Chardham Routes */
        .chardham-routes {
            padding: 80px 0;
            background: var(--soft-gray);
        }
        
        .route-card {
            background: var(--pure-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            padding: 0px !important;
        }
        
        .route-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .route-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .route-content {
            padding: 30px;
        }
        
        .route-title {
            font-size: 1.5rem;
            color: var(--accent-black);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .route-title i {
            margin-right: 0.5rem;
            color: var(--spiritual-orange);
        }
        
        .route-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .route-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .route-distance {
            color: var(--success-green);
            font-weight: 600;
        }
        
        .route-duration {
            color: #666;
            font-size: 0.9rem;
        }
        
        .route-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        
        /* Package Options */
        .packages-section {
            padding: 80px 0;
            background: var(--pure-white);
        }
        
        .package-card {
            background: var(--soft-gray);
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        .package-card.popular {
            border: 3px solid var(--spiritual-orange);
            transform: scale(1.05);
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--spiritual-orange);
            color: var(--pure-white);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .package-title {
            font-size: 1.5rem;
            color: var(--accent-black);
            margin-bottom: 1rem;
        }
        
        .package-duration {
            color: var(--spiritual-orange);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .package-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .package-features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .package-features li i {
            color: var(--success-green);
            margin-right: 0.5rem;
        }
        
        .package-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        
        /* What to Expect */
        .expect-section {
            padding: 80px 0;
            background: var(--soft-gray);
        }
        
        .expect-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 20px;
            background: var(--pure-white);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .expect-icon {
            font-size: 2rem;
            color: var(--spiritual-orange);
            margin-right: 1.5rem;
            min-width: 60px;
        }
        
        .expect-content h4 {
            color: var(--accent-black);
            margin-bottom: 0.5rem;
        }
        
        .expect-content p {
            color: #666;
            margin: 0;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(180deg,rgba(40, 167, 69, 0.75),rgba(255, 215, 0, 0.75));
            text-align: center;
            color: var(--pure-white);
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .cta-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .btn-primary {
            background: var(--pure-white);
            color: var(--spiritual-orange);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 0 10px;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            color: var(--spiritual-orange);
        }
        
        .btn-outline-light {
            border: 2px solid var(--pure-white);
            color: var(--pure-white);
            background: transparent;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 0 10px;
        }
        
        .btn-outline-light:hover {
            background: var(--pure-white);
            color: var(--spiritual-orange);
        }
        
        /* Footer */
        .footer {
            background: var(--accent-black);
            color: var(--pure-white);
            padding: 50px 0 30px;
        }
        
        .footer h5 {
            color: var(--primary-yellow);
            margin-bottom: 1.5rem;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--primary-yellow);
        }
        
        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #999;
        }
        
        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: var(--pure-white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            color: var(--pure-white);
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .hero-content h2 {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .package-card.popular {
                transform: none;
            }
        }
    