/* ===== GLOBAL STYLES ===== */
        :root {
            --primary-saffron: #FF6F00;
            --primary-dark-brown: #5D4037;
            --accent-gold: #DAA520;
            --background-cream: #FDF7E4;
            --background-dark: #3E2723;
            --white: #FFFFFF;
            --text-primary: #4E342E;
            --text-secondary: #795548;
            --shadow-subtle: 0 4px 15px rgba(78, 52, 46, 0.08);
            --shadow-medium: 0 8px 25px rgba(78, 52, 46, 0.15);
            --shadow-heavy: 0 15px 35px rgba(78, 52, 46, 0.25);
            --gradient-saffron: linear-gradient(135deg, var(--primary-saffron) 0%, #FF9800 100%);
            --gradient-dark: linear-gradient(135deg, var(--primary-dark-brown) 0%, #6D4C41 100%);
            --gradient-hero: linear-gradient(to top, rgba(78, 52, 46, 0.9) 0%, rgba(78, 52, 46, 0.7) 60%, rgba(78, 52, 46, 0.4) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--background-cream);
            overflow-x: hidden;
        }

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

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(253, 247, 228, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(78, 52, 46, 0.1);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 0.75rem 0;
            box-shadow: var(--shadow-medium);
        }

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

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-dark-brown);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            z-index: 1001;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem;
        }

        .nav-link:hover {
            color: var(--primary-saffron);
        }

        .header-contact .contact-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.25rem;
            background: var(--primary-dark-brown);
            color: var(--white);
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .header-contact .contact-btn:hover {
            transform: translateY(-2px);
            background: var(--primary-saffron);
            color: var(--white);
            box-shadow: var(--shadow-medium);
        }

        .mobile-menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            background: transparent;
            border: none;
            color: var(--primary-dark-brown);
            z-index: 1001;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            background: var(--gradient-hero), url('https://images.unsplash.com/photo-1617639485633-23a5e53696a1?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            padding-top: 70px; /* Space for fixed header */
        }

        .hero-content {
            max-width: 800px;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
            padding: 20px;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            font-weight: 500;
            margin-bottom: 1.5rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-medium);
            border: 2px solid transparent;
            text-decoration: none;
        }

        .cta-button.primary {
            background: var(--primary-saffron);
            color: var(--white);
        }

        .cta-button.secondary {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
        }

        .cta-button:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: var(--shadow-heavy);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            min-width: 100px;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-20px) translateX(-50%); }
            60% { transform: translateY(-10px) translateX(-50%); }
        }

        /* ===== FEATURES SECTION ===== */
        .features-section {
            padding: 5rem 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow-subtle);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-saffron);
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-dark-brown);
        }

        .feature-card p {
            color: var(--text-secondary);
        }

        /* ===== PRICING SECTION ===== */
        .pricing-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .pricing-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow-medium);
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(78, 52, 46, 0.15);
            transition: transform 0.3s ease;
        }

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

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 8px;
            background: var(--gradient-saffron);
        }

        .price {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 700;
            color: var(--primary-dark-brown);
            margin-bottom: 0.5rem;
        }

        .price-subtitle {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2.5rem;
            text-align: left;
        }

        .features-list li {
            padding: 0.6rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid rgba(78, 52, 46, 0.1);
        }

        .features-list li:last-child { border-bottom: none; }

        .features-list i {
            color: var(--primary-saffron);
            font-size: 1.2rem;
            min-width: 25px;
        }

        .pricing-card .cta-button {
            background: var(--primary-dark-brown);
            color: var(--white);
            width: 100%;
            justify-content: center;
        }

        /* ===== ITINERARY SECTION ===== */
        .itinerary-timeline {
            margin-top: 3rem;
        }

        .day-section {
            margin-bottom: 4rem;
        }

        .day-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .day-badge {
            background: var(--gradient-saffron);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .day-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--primary-dark-brown);
        }

        .timeline-container {
            position: relative;
            margin-left: 2rem;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 4px;
            background: rgba(93, 64, 55, 0.2);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 2.5rem;
        }

        .timeline-marker {
            position: absolute;
            top: 0;
            left: -10px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent-gold);
            border: 3px solid var(--background-cream);
            z-index: 1;
        }

        .timeline-marker.temple {
            background: var(--primary-saffron);
        }

        .timeline-card {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow-subtle);
            transition: transform 0.3s ease;
        }

        .timeline-card:hover {
            transform: translateX(5px);
        }

        .timeline-time {
            font-weight: 600;
            color: var(--primary-saffron);
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-dark-brown);
        }

        .timeline-desc {
            color: var(--text-secondary);
        }

        .temple-card {
            border-left: 4px solid var(--primary-saffron);
        }

        /* ===== GALLERY SECTION ===== */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .photo-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: var(--shadow-medium);
            cursor: pointer;
            aspect-ratio: 4/3;
        }

        .photo-item.featured {
            grid-column: span 2;
        }

        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .photo-item:hover img {
            transform: scale(1.1);
        }

        .photo-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(78, 52, 46, 0.65);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            padding: 1.5rem;
        }

        .photo-content {
            text-align: center;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .photo-item:hover .photo-overlay {
            opacity: 1;
        }

        .photo-item:hover .photo-content {
            transform: translateY(0);
        }

        .photo-content h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow-subtle);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
        }

        .testimonial-stars {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            position: relative;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 4rem;
            position: absolute;
            top: -20px;
            left: -15px;
            color: rgba(93, 64, 55, 0.1);
            font-family: serif;
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            background: var(--background-dark);
            color: var(--white);
            padding: 5rem 0;
        }

        .contact .section-title {
            color: var(--white);
        }

        .contact .section-subtitle {
            color: rgba(253,247,228,0.7);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            text-decoration: none;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            background: rgba(255, 111, 0, 0.2);
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 2rem;
            min-width: 50px;
            text-align: center;
        }

        .contact-text div:first-child {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .contact-text div:nth-child(2) {
            font-size: 1.2rem;
            margin: 0.3rem 0;
        }

        .contact-info {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 1.5rem;
        }

        .info-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .info-header i {
            font-size: 1.5rem;
            color: var(--accent-gold);
        }

        .info-header h3 {
            font-size: 1.3rem;
        }

        .info-list {
            list-style: none;
        }

        .info-list li {
            padding: 0.7rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .info-list li:last-child {
            border-bottom: none;
        }

        .info-list li::before {
            content: "•";
            color: var(--accent-gold);
        }

        /* ===== WHATSAPP BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            text-decoration: none;
            box-shadow: var(--shadow-heavy);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            background: #128C7E;
            transform: scale(1.1);
        }

        .whatsapp-text {
            display: none;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--background-dark);
            color: var(--white);
            padding: 4rem 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.7rem;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-gold);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-saffron);
            transform: translateY(-3px);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }

        .footer-section ul li a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-bottom {
            padding: 1.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 0.8rem 0;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                height: 100vh;
                background: var(--background-cream);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 2rem;
                gap: 1.5rem;
                transform: translateY(-100%);
                transition: transform 0.4s ease;
                box-shadow: var(--shadow-medium);
                z-index: 1000;
            }
            
            .nav-menu.active {
                transform: translateY(0);
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .header-contact {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            .photo-item.featured {
                grid-column: span 1;
            }
            
            .pricing-cards-container {
                grid-template-columns: 1fr;
            }

            .timeline-container {
                margin-left: 1rem;
            }

            .timeline-item {
                padding-left: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .hero {
                min-height: 90vh;
            }

            .price {
                font-size: 2.8rem;
            }

            .day-title {
                font-size: 1.5rem;
            }
        }

        /* ===== ANIMATIONS ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* New testimonial placeholder style */
        .testimonials-placeholder {
            background: var(--background-cream);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            grid-column: 1 / -1;
        }
        
        .testimonials-placeholder i {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        
        .testimonials-placeholder h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary-dark-brown);
        }

        /* Section header */
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary-dark-brown);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        /* Alternate background */
        .alternate-bg {
            background-color: rgba(253, 247, 228, 0.3);
        }