/* Base Variables */
        :root {
            --primary: #1a75bc;
            --secondary: #f39c12;
            --dark: #2c3e50;
            --light: #ecf0f1;
            --accent: #27ae60;
            --dark-blue: #0a2540;
            --bg-color: #f8f9fa;
            --text-color: #333;
            --card-bg: #ffffff;
            --header-bg: #ffffff;
            --footer-bg: #2c3e50;
            --footer-text: #bbb;
            --border-color: #ddd;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --shadow-lg: 0 15px 30px rgba(0,0,0,0.15);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--bg-color);
            overflow-x: hidden;
            padding-top: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Skip to main content for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 8px;
            z-index: 10000;
            text-decoration: none;
            border-radius: 0 0 4px 0;
            transition: var(--transition);
        }

        .skip-link:focus {
            top: 0;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Header Styles */
        .topbar {
            background-color: var(--dark);
            color: white;
            padding: 8px 0;
            font-size: 14px;
            position: relative;
            z-index: 1002;
        }

        .topbar a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .topbar a:hover {
            color: var(--secondary);
        }

        .topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .topbar-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }

        .topbar-contact span {
            white-space: nowrap;
        }

        .topbar-social {
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Navbar */
        .navbar {
            padding: 15px 0;
            transition: var(--transition);
            background-color: var(--primary);
            position: fixed;
            top: 40px;
            left: 0;
            width: 100%;
            z-index: 1001;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar.sticky {
            position: fixed;
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
            top: 0;
        }

        .navbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 24px;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .navbar.sticky .navbar-brand {
            color: white;
        }

        .navbar-brand span {
            color: var(--secondary);
        }

        /* Navigation Menu - Desktop */
        .navbar-nav {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
        }

        .nav-item {
            position: relative;
        }

        .navbar-nav .nav-link {
            color: white;
            font-weight: 500;
            margin: 0 10px;
            transition: var(--transition);
            text-decoration: none;
            position: relative;
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border-radius: 4px;
        }

        .nav-link.has-dropdown::after {
            content: '\f107';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            margin-left: 5px;
            font-size: 14px;
        }

        .navbar.sticky .navbar-nav .nav-link {
            color: white;
        }

        .navbar-nav .nav-link:hover {
            color: var(--secondary);
            background: rgba(255, 255, 255, 0.1);
        }

        /* Mega Menu Styles */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: var(--shadow-lg);
            border-radius: 8px;
            min-width: 800px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1000;
            padding: 25px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .mega-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Fix for Pilgrimages menu overflow */
        .nav-item:nth-child(4) .mega-menu {
            right: 0;
            left: auto;
            min-width: 700px;
        }

        .mega-menu-column {
            display: flex;
            flex-direction: column;
        }

        .mega-menu-heading {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--dark);
            padding-bottom: 8px;
            border-bottom: 2px solid var(--primary);
        }

        .mega-menu-link {
            display: block;
            padding: 8px 0;
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        .mega-menu-link:hover {
            color: var(--primary);
            padding-left: 8px;
        }

        .mega-menu-link.active {
            color: var(--primary);
            font-weight: 600;
        }

        .mega-menu-link.has-nested::after {
            content: '\f105';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 0;
        }

        /* Nested Submenu */
        .nested-submenu {
            position: absolute;
            left: 100%;
            top: 0;
            background-color: white;
            box-shadow: var(--shadow);
            border-radius: 8px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: var(--transition);
            padding: 15px;
        }

        .mega-menu-link:hover .nested-submenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .nested-submenu-link {
            display: block;
            padding: 8px 0;
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }

        .nested-submenu-link:hover {
            color: var(--primary);
            padding-left: 8px;
        }

        /* Mobile Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
        }

        .nav-toggle:hover {
            color: var(--secondary);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100vh;
            background-color: white;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            z-index: 1001;
            overflow-y: auto;
            transition: var(--transition);
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: var(--primary);
            color: white;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
        }

        .mobile-nav-close:hover {
            color: var(--secondary);
        }

        .mobile-nav-list {
            list-style: none;
            padding: 0;
        }

        .mobile-nav-item {
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-nav-link {
            display: block;
            padding: 15px;
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            position: relative;
        }

        .mobile-nav-link.has-dropdown::after {
            content: '\f107';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 15px;
            transition: transform 0.3s ease;
        }

        .mobile-nav-link.has-dropdown.active::after {
            transform: rotate(180deg);
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #f8f9fa;
        }

        .mobile-submenu.active {
            max-height: 500px;
        }

        .mobile-submenu-link {
            display: block;
            padding: 12px 15px 12px 30px;
            color: var(--dark);
            text-decoration: none;
            border-bottom: 1px solid #e9ecef;
        }

        .mobile-submenu-link:last-child {
            border-bottom: none;
        }

        .mobile-submenu-link.active {
            color: var(--primary);
            font-weight: 600;
        }

        .mobile-submenu-link.has-nested::after {
            content: '\f105';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            float: right;
        }

        .mobile-nested-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #e9ecef;
        }

        .mobile-nested-submenu.active {
            max-height: 500px;
        }

        .mobile-nested-submenu-link {
            display: block;
            padding: 10px 15px 10px 45px;
            color: var(--dark);
            text-decoration: none;
            border-bottom: 1px solid #dee2e6;
        }

        .mobile-nested-submenu-link:last-child {
            border-bottom: none;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        /* Theme Toggle */
        .theme-toggle {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
        }

        .theme-toggle:hover {
            color: var(--secondary);
        }

        /* Active Menu Item */
        .nav-link.active {
            color: var(--secondary);
        }

        /* Email Modal Styles */
        .email-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .email-modal.active {
            display: flex;
        }

        .email-modal-content {
            background: var(--card-bg);
            width: 90%;
            max-width: 500px;
            border-radius: 10px;
            padding: 30px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .email-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: #777;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
        }

        .email-modal-close:hover {
            color: var(--primary);
        }

        .email-modal-title {
            margin-bottom: 20px;
            color: var(--dark);
            font-size: 1.5rem;
        }

        .email-address {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 15px;
            background: var(--bg-color);
            border-radius: 6px;
            font-size: 1.1rem;
        }

        .email-address i {
            color: var(--primary);
        }

        .copy-email-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .copy-email-btn:hover {
            background: #1565a3;
            transform: translateY(-2px);
        }

        .copy-success {
            color: var(--accent);
            font-size: 0.9rem;
            margin-top: 10px;
            display: none;
        }

        .copy-success.active {
            display: block;
        }

        /* Responsive Styles */
        @media (max-width: 991px) {
            .navbar-nav {
                display: none;
            }
            
            .nav-toggle {
                display: block;
            }
            
            .topbar-contact {
                justify-content: center;
            }
            
            .mega-menu {
                min-width: 600px;
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .mega-menu {
                min-width: 300px;
                grid-template-columns: 1fr;
            }
            
            .topbar-contact {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            
            .topbar-contact span {
                display: block;
                margin-bottom: 5px;
            }
        }

        /* Page Specific Styles */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            color: var(--dark);
            font-size: 2.5rem;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background-color: var(--primary);
        }

        .section-title p {
            color: #777;
            max-width: 700px;
            margin: 15px auto 0;
        }

        /* Pilgrimage Hero */
        .pilgrimage-hero {
            height: 70vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('timkat_hero.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 100px;
        }

        .pilgrimage-hero-content {
            max-width: 800px;
            padding: 20px;
            z-index: 2;
        }

        .pilgrimage-hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .pilgrimage-hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: #1565a3;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: white;
        }

        .btn-secondary:hover {
            background-color: #e67e22;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        /* Festival Cards */
        .festivals-section {
            background-color: var(--bg-color);
        }

        .festivals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .festival-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
        }

        .festival-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .festival-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .festival-content {
            padding: 25px;
        }

        .festival-content h3 {
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .festival-content h3 i {
            color: var(--primary);
        }

        .festival-date {
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* Itinerary Section */
        .itinerary-section {
            background-color: var(--card-bg);
        }

        .itinerary-timeline {
            position: relative;
            max-width: 800px;
            margin: 40px auto 0;
        }

        .itinerary-timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            height: 100%;
            width: 2px;
            background: var(--primary);
        }

        .timeline-item {
            position: relative;
            padding-left: 60px;
            margin-bottom: 40px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary);
        }

        .timeline-day {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .timeline-content h4 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        /* Packages Section */
        .packages-section {
            background-color: var(--bg-color);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .package-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .package-card.popular {
            position: relative;
            border-color: var(--secondary);
        }

        .popular-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .package-header {
            padding: 30px;
            background: linear-gradient(135deg, var(--primary), #1565a3);
            color: white;
            text-align: center;
        }

        .package-header h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .package-price {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .package-duration {
            opacity: 0.9;
            font-size: 0.9rem;
        }

        .package-content {
            padding: 30px;
        }

        .package-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .package-features li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .package-features li i {
            color: var(--accent);
        }

        .package-content .btn {
            width: 100%;
            padding: 12px;
            font-size: 1rem;
        }

        /* Sacred Sites Section */
        .sites-section {
            background-color: var(--card-bg);
        }

        .sites-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .site-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .site-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .site-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            transition: var(--transition);
        }

        .site-card:hover .site-image {
            transform: scale(1.05);
        }

        .site-content {
            padding: 25px;
        }

        .site-content h3 {
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* FAQ Section */
        .faq-section {
            background-color: var(--bg-color);
        }

        .faq-container {
            max-width: 800px;
            margin: 40px auto 0;
        }

        .faq-item {
            background: var(--card-bg);
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            padding: 20px;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        /* Booking CTA */
        .booking-cta {
            background: linear-gradient(135deg, var(--primary), var(--dark-blue));
            color: white;
            padding: 60px 0;
            text-align: center;
            border-radius: 10px;
            margin: 60px auto;
            max-width: 1000px;
        }

        .booking-cta h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .booking-cta p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Gallery Section */
        .gallery-section {
            background-color: var(--card-bg);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Footer */
        footer {
            background-color: var(--footer-bg);
            color: white;
            padding: 60px 0 0;
        }

        .footer-widget {
            margin-bottom: 30px;
        }

        .footer-widget h4 {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-widget h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a {
            color: var(--footer-text);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-social {
            margin-top: 20px;
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            line-height: 40px;
            text-align: center;
            transition: var(--transition);
            text-decoration: none;
        }

        .footer-social a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
        }

        .copyright-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        /* Floating Buttons */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }

        .scroll-to-top {
            position: fixed;
            width: 50px;
            height: 50px;
            bottom: 85px;
            right: 25px;
            background-color: var(--primary);
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 20px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background-color: #1565a3;
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .navbar-nav {
                display: none;
            }
            
            .nav-toggle {
                display: block;
            }
            
            .topbar-contact {
                justify-content: center;
            }
            
            .festivals-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .sites-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }

        @media (max-width: 767px) {
            .festivals-grid {
                grid-template-columns: 1fr;
            }
            
            .sites-grid {
                grid-template-columns: 1fr;
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
            }
            
            .pilgrimage-hero {
                height: 50vh;
                margin-top: 140px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .booking-cta {
                padding: 40px 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .copyright-inner {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 575px) {
            .pilgrimage-hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: 20px;
                right: 20px;
            }
            
            .scroll-to-top {
                width: 40px;
                height: 40px;
                font-size: 16px;
                bottom: 75px;
                right: 20px;
            }
        }