
/* Import the existing CSS */
        /* ===============================================
           TABLE OF CONTENTS
           ===============================================
           
           1. GLOBAL STYLES
              1.1 Reset & Base Styles
              1.2 Typography
              1.3 Responsive Font Sizes
              1.4 Animations & Transitions
           
           2. LAYOUT
              2.1 Body & Container
              2.2 Header
              2.3 Main Content
              2.4 Footer
           
           3. NAVIGATION
              3.1 Navbar
              3.2 Mobile Navigation
           
           4. COMPONENTS
              4.1 Buttons
              4.2 Forms & Inputs
              4.3 Result Display
              4.4 Info Sections
              4.5 Steps Container
              4.6 FAQ Container
              4.7 Festival Components
           
           5. UTILITIES
              5.1 Section Dividers
              5.2 Responsive Adjustments
           =============================================== */

        /* ===============================================
           1. GLOBAL STYLES
           =============================================== */

        /* 1.1 Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        /* 1.2 Typography */
        p, li, label, button {
            font-size: var(--body-font);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            line-height: 1.3;
        }

        /* 1.3 Responsive Font Sizes */
        :root {
            --header-font: 2.5rem;
            --title-font: 2rem;
            --subtitle-font: 1.5rem;
            --body-font: 1.1rem;
        }

        @media (max-width: 1200px) {
            :root {
                --header-font: 2.2rem;
                --title-font: 1.8rem;
                --subtitle-font: 1.3rem;
                --body-font: 1rem;
            }
        }

        @media (max-width: 768px) {
            :root {
                --header-font: 1.8rem;
                --title-font: 1.5rem;
                --subtitle-font: 1.2rem;
                --body-font: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            :root {
                --header-font: 1.5rem;
                --title-font: 1.3rem;
                --subtitle-font: 1.1rem;
                --body-font: 0.9rem;
            }
        }

        /* 1.4 Animations & Transitions */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .slide-in.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes highlight {
            0% { background-color: #e6f3ff; }
            50% { background-color: #ffecb3; }
            100% { background-color: #e6f3ff; }
        }

        .highlight-animation {
            animation: highlight 1s ease;
        }

        /* ===============================================
           2. LAYOUT
           =============================================== */

        /* 2.1 Body & Container */
        body {
            line-height: 1.6;
            background-color: #f0f2f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* 2.2 Header */
        header {
            background: linear-gradient(135deg, #003366 0%, #004d99 100%);
            color: white;
            padding: 2rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
            opacity: 0.1;
        }

        header h1 {
            font-size: var(--header-font);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            position: relative;
            z-index: 1;
        }

        .header-subtitle {
            font-size: 1.2rem;
            margin-top: 0.5rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        /* 2.3 Main Content */
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
            flex: 1;
            width: 100%;
        }

        @media (max-width: 768px) {
            main {
                margin: 1rem auto;
            }
        }

        /* ===============================================
           CALENDAR SPECIFIC STYLES
           =============================================== */

        .month-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .month-nav-btn {
            background: #003366;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            min-width: auto;
            width: auto;
            max-width: none;
        }

        .month-nav-btn:hover {
            background: #004d99;
            transform: translateY(-2px);
        }

        .current-month {
            font-size: 1.8rem;
            font-weight: bold;
            color: #003366;
            text-align: center;
        }

        .calendar-container {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            position: relative;
            overflow-x: auto; /* Enable horizontal scrolling */
            max-width: 1200px;
            margin: 2rem auto;
            width: 90%;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, minmax(120px, 1fr)); /* Minimum width for each column */
            gap: 1px;
            background-color: #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        /* Improve responsive behavior for different screen sizes */
        @media (max-width: 768px) {
            .calendar-container {
                padding: 1rem;
                width: 95%;
            }
            
            .calendar-grid {
                grid-template-columns: repeat(7, minmax(90px, 1fr)); /* Smaller minimum width */
            }
            
            .calendar-day {
                min-height: 60px;
                padding: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .calendar-container {
                padding: 0.5rem;
                width: 98%;
            }
            
            .calendar-grid {
                grid-template-columns: repeat(7, minmax(70px, 1fr)); /* Even smaller minimum width */
            }
            
            .calendar-day {
                min-height: 50px;
                padding: 0.3rem;
            }
        }

        .calendar-header {
            background: #003366;
            color: white;
            padding: 1rem;
            text-align: center;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .calendar-day {
            background: white;
            padding: 1rem;
            min-height: 80px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
        }

        .calendar-day:hover {
            background: #f8f9fa;
            transform: scale(1.02);
            border-color: #003366;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0,51,102,0.2);
        }

        .calendar-day.other-month {
            background: #f5f5f5;
            color: #999;
        }

        .calendar-day.holiday {
            background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
            border-color: #ff6b6b;
        }

        .calendar-day.festival {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b3 100%);
            border-color: #ff9800;
        }

        .calendar-day.today {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-color: #2196f3;
            font-weight: bold;
        }

        .day-number {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 0.3rem;
            color: #333;
        }

        .day-label {
            font-size: 0.7rem;
            color: #666;
            text-align: center;
            line-height: 1.2;
            margin-top: auto;
        }

        .day-indicator {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            margin-top: 0.2rem;
        }

        .day-indicator.holiday {
            background: #ff6b6b;
        }

        .day-indicator.festival {
            background: #ff9800;
        }

        .day-indicator.booking {
            background: #4caf50;
        }

        /* Date Detail Modal */
        .date-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .date-modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            width: auto;
            min-width: auto;
            max-width: none;
        }

        .modal-close:hover {
            color: #333;
        }

        .modal-header {
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f0f0f0;
        }

        .modal-date {
            font-size: 1.5rem;
            font-weight: bold;
            color: #003366;
            margin-bottom: 0.5rem;
        }

        .modal-day {
            color: #666;
            font-size: 1rem;
        }

        /* Quick Stats */
        .quick-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #003366, #004d99);
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #003366;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-size: 0.9rem;
        }

        /* Important Dates Section */
        .important-dates {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .important-dates h2 {
            color: #003366;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dates-grid {
            display: grid;
            gap: 1rem;
        }

        .date-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #003366;
            transition: all 0.3s ease;
        }

        .date-item:hover {
            background: #e3f2fd;
            transform: translateX(5px);
        }

        .date-item.festival {
            border-left-color: #ff9800;
        }

        .date-item.holiday {
            border-left-color: #ff6b6b;
        }

        .date-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            min-width: 40px;
        }

        .date-info h4 {
            color: #003366;
            margin-bottom: 0.3rem;
        }

        .date-info p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }

        .booking-date {
            color: #4caf50;
            font-weight: bold;
            font-size: 0.85rem;
        }

        /* Legend */
        .calendar-legend {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin: 1.5rem 0;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 4px;
        }

        .legend-color.holiday {
            background: #ff6b6b;
        }

        .legend-color.festivals {
            background: #ff9800;
        }

        .legend-color.today {
            background: #2196f3;
        }

        .legend-color.booking {
            background: #4caf50;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .calendar-day {
                min-height: 60px;
                padding: 0.5rem;
            }

            .day-number {
                font-size: 1rem;
            }

            .day-label {
                font-size: 0.6rem;
            }

            .month-navigation {
                flex-direction: column;
                gap: 1rem;
            }

            .month-nav-btn {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }

            .current-month {
                font-size: 1.5rem;
            }

            .quick-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .calendar-legend {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .calendar-day {
                min-height: 50px;
                padding: 0.3rem;
            }

            .calendar-header {
                padding: 0.5rem;
                font-size: 0.8rem;
            }

            .quick-stats {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 1.5rem;
            }
        }

        /* Print Styles */
        @media print {
            .month-navigation,
            .date-modal {
                display: none !important;
            }

            .calendar-container {
                box-shadow: none;
                border: 1px solid #ddd;
            }

            .calendar-day:hover {
                transform: none;
                box-shadow: none;
            }
        }

        /* Tooltip Styles */
        .tooltip {
            position: relative;
            cursor: help;
        }

        .tooltip::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #333;
            color: white;
            padding: 0.5rem;
            border-radius: 4px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 1000;
        }

        .tooltip:hover::after {
            opacity: 1;
        }

        /* Additional Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #003366;
        }

        .feature-card h3 {
            color: #003366;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Quick Booking Section */
        .quick-booking {
            background: linear-gradient(135deg, #003366 0%, #004d99 100%);
            color: white;
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            margin: 2rem 0;
        }

        .quick-booking h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .quick-booking-btn {
            background: white;
            color: #003366;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0.5rem;
            text-decoration: none;
            display: inline-block;
            min-width: auto;
            width: auto;
            max-width: none;
        }

        .quick-booking-btn:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            color: #003366;
        }

        /* SEO Content Section */
        .seo-content {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .seo-content h2 {
            color: #003366;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .seo-content h3 {
            color: #004d99;
            margin: 1.5rem 0 1rem;
            font-size: 1.4rem;
        }

        .seo-content p {
            margin-bottom: 1rem;
            line-height: 1.6;
            color: #333;
        }

        .seo-content ul, .seo-content ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .seo-content li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        /* Footer Styles */
        footer {
            background: #003366;
            color: white;
            text-align: center;
            padding: 2rem 1rem;
            margin-top: 3rem;
        }

        footer p {
            margin-bottom: 0.5rem;
            opacity: 0.8;
        }

        /* Improve responsive behavior for different screen sizes */
        @media (max-width: 768px) {
            .seo-content {
                padding: 1.5rem;
            }
            
            .seo-content h2 {
                font-size: 1.5rem;
            }
            
            .seo-content h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .seo-content {
                padding: 1rem;
            }
            
            .seo-content h2 {
                font-size: 1.3rem;
            }
            
            .seo-content h3 {
                font-size: 1.1rem;
            }
            
            .seo-content ul, .seo-content ol {
                margin-left: 1rem;
            }
        }

        /* Print Styles */
        @media print {
            .month-navigation,
            .date-modal {
                display: none !important;
            }

            .calendar-container {
                box-shadow: none;
                border: 1px solid #ddd;
            }

            .calendar-day:hover {
                transform: none;
                box-shadow: none;
            }
        }

        /* Tooltip Styles */
        .tooltip {
            position: relative;
            cursor: help;
        }

        .tooltip::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #333;
            color: white;
            padding: 0.5rem;
            border-radius: 4px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 1000;
        }

        .tooltip:hover::after {
            opacity: 1;
        }

        /* Additional Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #003366;
        }

        .feature-card h3 {
            color: #003366;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Quick Booking Section */
        .quick-booking {
            background: linear-gradient(135deg, #003366 0%, #004d99 100%);
            color: white;
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            margin: 2rem 0;
        }

        .quick-booking h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .quick-booking-btn {
            background: white;
            color: #003366;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0.5rem;
            text-decoration: none;
            display: inline-block;
            min-width: auto;
            width: auto;
            max-width: none;
        }

        .quick-booking-btn:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            color: #003366;
        }

        @media (max-width: 768px) {
            .calendar-container {
                padding: 1rem; /* Adjusted padding for smaller screens */
                box-shadow: none; /* Removed box-shadow for smaller screens */
            }

            .calendar-day:hover {
                transform: none;
                box-shadow: none;
            }
        }