
        :root {
            --primary: #FF5E14; /* Vibrant orange - main brand color */
            --secondary: #1A1A1A; /* Dark background */
            --accent: #E53935; /* Red accent color from logo */
            --text: #FFFFFF;
            --dark: #121212;
            --light-gray: rgba(255,255,255,0.1);
        }
        
        body {
            font-family: 'Barlow', sans-serif;
            background-color: var(--secondary);
            color: var(--text);
            overflow-x: hidden;
        }
        
        /* Text color fixes for forms */
        .form-control, .form-select, .form-control::placeholder, .form-control:focus {
            color: white !important;
            background-color: rgba(255,255,255,0.1) !important;
            border-color: var(--light-gray) !important;
        }
        
        .form-control:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 94, 20, 0.25) !important;
        }
        
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url("Assets/Images/Group of Paintball Shooters in Battlefield.jpg") center/cover;
            height: 100vh;
            position: relative;
        }
        
        .nav-link {
            color: white !important;
            font-weight: 600;
            position: relative;
            margin: 0 10px;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .btn-primary {
            background-color: var(--accent);
            border-color: var(--accent);
            color: white;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 50px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(229, 57, 53, 0.3);
            background-color: var(--accent);
            border-color: var(--accent);
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
            font-weight: 700;
            padding: 10px 28px;
            border-radius: 50px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background-color: var(--accent);
            color: white;
        }
        
        /* Enhanced Calendar Styles */
        .calendar-container {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--light-gray);
        }
        
        .calendar-header {
            background: var(--primary);
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            background: var(--light-gray);
        }
        
        .calendar-day {
            background: var(--secondary);
            padding: 15px;
            min-height: 100px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .calendar-day:hover {
            background: rgba(255,255,255,0.05);
            transform: translateY(-2px);
        }
        
        .calendar-day-number {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .available {
            border-left: 4px solid var(--accent);
        }
        
        .available .calendar-day-number {
            color: var(--accent);
        }
        
        .event {
            border-left: 4px solid var(--primary);
        }
        
        .event .calendar-day-number {
            color: var(--primary);
        }
        
        .booked {
            opacity: 0.5;
        }
        
        .day-event {
            font-size: 0.8rem;
            background: var(--primary);
            color: white;
            padding: 2px 5px;
            border-radius: 3px;
            margin-top: 5px;
            display: inline-block;
        }
        
        /* Gallery Styles */
        .gallery-item {
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .gallery-item img {
            transition: transform 0.5s ease;
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Package Cards */
        .package-card {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s ease;
            border: 1px solid var(--light-gray);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .package-card:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            border-color: var(--accent);
        }
        
        .package-card:hover:after {
            transform: scaleX(1);
        }
        
        .package-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--accent);
            text-align: center;
        }
        
        /* Footer */
        .footer {
            background: rgba(0,0,0,0.3);
            padding: 50px 0;
            position: relative;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .social-icon {
            font-size: 1.5rem;
            color: white;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            color: var(--accent);
            transform: translateY(-3px);
        }
        .form-label,.form-check-label {
            color: white;
        }
        .footer img.mb-3 {
            width: 70%;
            border-radius: 25px;
            height: 150px;
        }
        .fixed-top {
            background: rgba(0, 0, 0, 0.9);
        }
        .feature-icon i {
            font-size: 50px;
            color: var(--accent);
            transition: all linear 0.5s;
        }

        .feature-card:hover .feature-icon i {
            transform: translateY(-20%);
        }
        option {
            color: #333;
        }
        section#calendar {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("Assets/Images/Group of Paintball Shooters.jpg") center / cover;
        }
        section#booking{
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url("Assets/Images/Paintball Adventure Best Shooter.jpg") center / cover;
        }
        form a {
            color: var(--accent);
        }
        /* Pulse animation for CTA */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        /* Enhanced Calendar Styles */
        .calendar-container {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--light-gray);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .calendar-header {
            background: var(--primary);
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .calendar-nav {
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .calendar-nav:hover {
            transform: scale(1.1);
            border-color: white;
        }
        
        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            background: rgba(255,94,20,0.2);
            padding: 10px 0;
            text-align: center;
            font-weight: bold;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            background: var(--light-gray);
        }
        
        .calendar-day {
            background: var(--secondary);
            padding: 10px;
            min-height: 100px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .calendar-day:hover {
            background: rgba(255,255,255,0.05);
        }
        
        .calendar-day-number {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .prev-month, .next-month {
            opacity: 0.5;
        }
        
        .available {
            border-left: 4px solid var(--accent);
        }
        
        .available .calendar-day-number {
            color: var(--accent);
        }
        
        .event {
            border-left: 4px solid var(--primary);
        }
        
        .event .calendar-day-number {
            color: var(--primary);
        }
        
        .booked {
            opacity: 0.5;
            position: relative;
        }
        
        .booked:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--accent);
            transform: rotate(-5deg);
        }
        
        .day-event {
            font-size: 0.75rem;
            margin-top: 5px;
        }
        
        .day-event .badge {
            display: block;
            margin-bottom: 3px;
            font-weight: normal;
        }
        
        /* Year navigation */
        .year-btn {
            transition: all 0.3s ease;
        }
        
        .year-btn.active {
            background: var(--primary);
            border-color: var(--primary);
        }
        
        .year-btn:not(.active):hover {
            background: rgba(255,255,255,0.1);
        }


        /* Gallery Slider Styles */
        .gallery-slider {
            position: relative;
            padding: 0 40px;
        }
        
        .slider-container {
            display: flex;
            overflow: hidden;
            scroll-behavior: smooth;
            padding: 20px 0;
        }
        
        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .gallery-slide {
            flex: 0 0 calc(100% / 3);
            padding: 0 15px;
            transition: transform 0.3s ease;
        }
        
        .gallery-slide:hover {
            transform: scale(1.02);
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            height: 300px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            cursor: pointer;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }
        
        .slider-prev, .slider-next {
            background: var(--primary);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-prev:hover, .slider-next:hover {
            background: var(--accent);
            transform: scale(1.1);
        }
        
        .slider-dots {
            display: flex;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }
        
        /* Lightbox Styles */
        #galleryLightbox .modal-content {
            background: transparent;
        }
        
        #galleryLightbox .modal-body {
            padding: 0;
        }
        
        #lightboxImage {
            max-height: 80vh;
            max-width: 100%;
            object-fit: contain;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .gallery-slide {
                flex: 0 0 50%;
            }
        }
        
        @media (max-width: 768px) {
            .gallery-slider {
                padding: 0 20px;
            }
            
            .gallery-slide {
                flex: 0 0 100%;
            }
            
            .gallery-item {
                height: 250px;
            }
        }

        /* Floating Buttons Styles */
        .floating-buttons {
            position: fixed;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            pointer-events: none;
            z-index: 1000;
        }
        
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            pointer-events: auto;
            position: relative;
        }
        
        .floating-btn:hover {
            transform: translateY(-5px) scale(1.1);
        }
        
        .floating-btn i {
            transition: transform 0.3s ease;
        }
        
        .floating-btn:hover i {
            transform: scale(1.2);
        }
        
        .whatsapp-btn {
            background: #25D366;
            text-decoration: none;
        }
        
        .scroll-top-btn {
            background: var(--primary);
        }
        
        .inquiry-btn {
            background: var(--accent);
        }
        
        /* Tooltip for buttons */
        .floating-btn::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .floating-btn:hover::after {
            opacity: 1;
            visibility: visible;
            bottom: calc(100% + 10px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            .day-event{
                display: none;
            }
        }

        /* Legal Links Styling */
        .legal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 20px 0;
        }
        
        .legal-links .btn-link {
            color: var(--accent);
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .legal-links .btn-link:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        
        /* Modal Content Styling */
        .modal-content h6 {
            color: var(--primary);
            margin-top: 20px;
            margin-bottom: 10px;
        }
        
        .modal-content ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .modal-content li {
            margin-bottom: 8px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .legal-links {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }

        /* Thank You Section Styling */
        .thank-you-card {
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
        }
        
        .thank-you-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,94,20,0.1) 0%, rgba(0,0,0,0) 70%);
            animation: pulse 6s infinite;
            z-index: 0;
        }
        
        /* Checkmark Animation */
        .checkmark-animation {
            width: 100px;
            height: 100px;
            margin: 0 auto;
        }
        
        .checkmark-circle {
            stroke-dasharray: 166;
            stroke-dashoffset: 166;
            stroke-width: 2;
            stroke-miterlimit: 10;
            stroke: var(--primary);
            fill: none;
            animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
        }
        
        .checkmark-check {
            transform-origin: 50% 50%;
            stroke-dasharray: 48;
            stroke-dashoffset: 48;
            stroke: var(--primary);
            stroke-width: 3;
            stroke-linecap: round;
            animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
        }
        
        /* Animations */
        @keyframes stroke {
            100% {
                stroke-dashoffset: 0;
            }
        }
        
        /* Confirmation Details */
        .confirmation-details {
            border-left: 3px solid var(--primary);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .thank-you-card {
                padding: 2rem !important;
            }
            
            .checkmark-animation {
                width: 80px;
                height: 80px;
            }
            footer.footer {
                text-align: center;
            }
        }

        /* Zoom effect for icons */
        .zoom-icon {
            transition: transform 0.3s ease;
        }
        
        .contact-link:hover .zoom-icon,
        .social-icon:hover .zoom-icon {
            transform: scale(1.2);
        }
        
        /* Contact link styling */
        .contact-link {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-link:hover {
            color: var(--accent);
        }
        
        /* Social icons styling */
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            margin-right: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background-color: var(--accent);
            color: white;
        }