        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

        @media (min-width: 1536px) and (max-width: 1599px) {
            .container {
                max-width: 1350px !important;
            }
        }

        :root {
            --primary-color: #059669;
            --secondary-color: #065f46;
            --accent-color: #ecfdf5;
            --primary-dark-color: #047857;
            --font-size-base: 16px;
        }

        [data-theme="orange"] {
            --primary-color: #ea580c;
            --secondary-color: #c2410c;
            --accent-color: #fff7ed;
            --primary-dark-color: #dc2626;
        }

        [data-theme="teal"] {
            --primary-color: #0891b2;
            --secondary-color: #0e7490;
            --accent-color: #ecfeff;
            --primary-dark-color: #0c4a6e;
        }

        [data-theme="purple"] {
            --primary-color: #7c3aed;
            --secondary-color: #5b21b6;
            --accent-color: #f3e8ff;
            --primary-dark-color: #4c1d95;
        }

        .theme-adaptive {
            color: var(--primary-color) !important;
        }

        .theme-adaptive-bg {
            background-color: var(--primary-color) !important;
        }

        .theme-adaptive-border {
            border-color: var(--primary-color) !important;
        }

        .theme-gradient {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        }

        .font-size-small {
            font-size: 14px;
        }

        .font-size-normal {
            font-size: 16px;
        }

        .font-size-large {
            font-size: 18px;
        }

        .font-size-small h1 {
            font-size: 2rem;
        }

        .font-size-normal h1 {
            font-size: 2.5rem;
        }

        .font-size-large h1 {
            font-size: 3rem;
        }

        .font-size-small h2 {
            font-size: 1.5rem;
        }

        .font-size-normal h2 {
            font-size: 2rem;
        }

        .font-size-large h2 {
            font-size: 2.5rem;
        }

        body {
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            font-size: var(--font-size-base);
        }

        .w-56 {
            width: 17rem !important;
        }

        .text-primary {
            --tw-text-opacity: 1;
            color: rgb(5 150 105 / var(--tw-text-opacity, 1)) !important;
        }

        .bg-primary\/10 {
            background-color: rgb(5 150 105 / 0.1);
        }

        .fw-500 {
            font-weight: 500;
        }

        .fw-600 {
            font-weight: 600;
        }

        .marquee {
            animation: marquee 25s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        /* Payment Modal */
        .payment-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 99999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .payment-modal.active {
            display: flex;
        }

        .payment-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 100%;
            animation: slideUp 0.5s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Success Modal */
        .success-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 100000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .success-modal.active {
            display: flex;
        }

        .success-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            animation: bounceIn 0.8s ease;
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0.3);
                opacity: 0;
            }

            50% {
                transform: scale(1.05);
            }

            70% {
                transform: scale(0.9);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-checkmark {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #10b981;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            animation: scaleIn 0.5s ease 0.3s both;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }

            to {
                transform: scale(1);
            }
        }

        .ticket-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 99999;
            display: none;
            align-items: center;
            justify-content: center;
            overflow: auto;
            padding: 20px;
        }

        .ticket-container.active {
            display: flex !important;
        }

        .digital-ticket {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            width: 100%;
            max-width: 500px;
            position: relative;
            overflow: hidden;
            animation: ticketSlide 0.6s ease-out;
        }

        @keyframes ticketSlide {
            from {
                opacity: 0;
                transform: translateY(100px) scale(0.8);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .form-input {
            background: rgba(255, 255, 255, 0.7);
            border: 2px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            padding: 14px 16px;
            transition: all 0.3s ease;
            outline: none;
            font-size: 15px;
            width: 100%;
        }

        .form-input:focus {
            border-color: #059669;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
            transform: translateY(-1px);
        }


        /* ---------- Footer style start ----------- */

        /* Main Content Layout - UPDATED FOR FOOTER FIX */
        .main-content-wrapper {
            display: flex;
            flex-direction: column;
            min-height: calc(100vh - 73px);
        }

        .content-area {
            flex: 1;
        }

        .footer-container {
            margin-top: auto;
        }

        .footer-fixed {
            padding-top: 32px;
        }

        .theme-gradient {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        }


        .theme-switcher {
            position: relative;
            display: inline-flex;
            gap: 8px;
        }

        .theme-color {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .theme-color:hover {
            transform: scale(1.2);
        }

        .theme-color.active {
            border-color: white;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }


        .accessibility-controls {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .font-control {
            padding: 4px 8px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
            color: #3b82f6;
            transition: all 0.2s ease;
        }

        .font-control:hover {
            background: rgba(59, 130, 246, 0.2);
            transform: scale(1.05);
        }


        .navbar-dropdown {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-15px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .navbar-dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        .dropdown-item {
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .navbar-dropdown.active .dropdown-item {
            transform: translateY(0);
            opacity: 1;
        }

        .navbar-dropdown.active .dropdown-item:nth-child(1) {
            transition-delay: 0.1s;
        }

        .navbar-dropdown.active .dropdown-item:nth-child(2) {
            transition-delay: 0.2s;
        }

        .navbar-dropdown.active .dropdown-item:nth-child(3) {
            transition-delay: 0.3s;
        }

        .marquee {
            animation: marquee 25s linear infinite;
        }

        .select2-container--default .select2-selection--single {
            background: rgba(255, 255, 255, 0.7);
            border: 2px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            padding: 10px 16px;
            height: 52px;
            font-size: 15px;
        }

        .select2-container--default .select2-selection--single .select2-selection__rendered {
            line-height: 30px;
            color: #374151;
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 50px;
        }

        .select2-container--default.select2-container--focus .select2-selection--single {
            border-color: #059669;
            box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
        }

        .select2-dropdown {
            border: 2px solid #059669;
            border-radius: 12px;
        }

        .select2-container--default .select2-results__option--highlighted[aria-selected] {
            background-color: #059669;
        }

        .form-input {
            background: rgba(255, 255, 255, 0.7);
            border: 2px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            padding: 14px 16px;
            transition: all 0.3s ease;
            outline: none;
            font-size: 15px;
            width: 100%;
        }

        .form-input:focus {
            border-color: #059669;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
            transform: translateY(-1px);
        }

        .form-label {
            color: #374151;
            font-weight: 600;
            margin-bottom: 6px;
            display: block;
            font-size: 14px;
        }

        .radio-option {
            position: relative;
        }

        .radio-option input[type="radio"] {
            display: none;
        }

        .radio-option label {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.6);
            border: 2px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .radio-option input[type="radio"]:checked+label {
            background: #059669;
            color: white;
            border-color: #059669;
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(5, 150, 105, 0.25);
        }

        .radio-option label:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: translateY(-2px);
        }

        .radio-option input[type="radio"]:checked+label:hover {
            background: #047857;
        }

        #scrollToTop {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: scale(0.9);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        #scrollToTop.show {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        #scrollToTop:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 48px rgba(16, 185, 129, 0.4);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.5);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .stw-booking-card {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #fff;
        }

        .stw-booking-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
        }

        .stw-booking-card-image {
            position: relative;
            height: 320px;
            overflow: hidden;
        }

        .stw-booking-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stw-booking-card:hover .stw-booking-card-image img {
            transform: scale(1.1);
        }

        .stw-booking-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stw-booking-card-title {
            color: white;
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            padding: 0 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 0.6s ease-out;
        }

        .stw-booking-card-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
        }

        .stw-booking-buttons {
            display: flex;
            gap: 12px;
            width: 100%;
        }

        .stw-btn-book-now {
            flex: 1;
            padding: 14px 24px;
            background: linear-gradient(135deg, #2d6a4f, #40916c);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .stw-btn-book-now:hover {
            background: linear-gradient(135deg, #1b4332, #2d6a4f);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(45, 106, 79, 0.4);
        }

        .stw-btn-view-details {
            flex: 1;
            padding: 14px 24px;
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .stw-btn-view-details:hover {
            border: 2px solid #2d6a4f;
            background: #2d6a4f;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(45, 106, 79, 0.3);
        }

        .min-h-screen {
            min-height: 80vh !important;
        }

        .stw-theme-adaptive {
            color: #2d6a4f;
        }

        @media (max-width: 768px) {
            .stw-booking-card-title {
                font-size: 1.5rem;
            }

            .stw-booking-card {
                /* height: 450px; */
            }

            .stw-booking-card-image {
                height: 280px;
            }

            .stw-booking-buttons {
                flex-direction: column;
            }

            .stw-btn-book-now,
            .stw-btn-view-details {
                width: 100%;
            }
        }


        /* ------------- Datatable Style Start------------- */

        .btn-export {
            background: linear-gradient(to right, #3b82f6, #2563eb);
            color: white;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            white-space: nowrap;
        }

        .btn-export:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }

        .datatable-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            gap: 16px;
            flex-wrap: wrap;
        }

        .page-size-select {
            padding: 10px 14px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            background: white;
        }

        .search-box input {
            width: 100%;
            padding: 10px 14px 10px 40px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
        }

        .search-box i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }

        .search-box {
            position: relative;
            flex: 1;
            max-width: 400px;
        }

        .header-right {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .datatable-container {
            background: white;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid #e5e7eb;
        }


        /* Fixed Tooltip Styles - Always visible above content */
        .tooltip {
            position: fixed;
            background: #1f2937;
            color: white;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
            z-index: 99999;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .tooltip.show {
            opacity: 1;
        }

        .tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: #1f2937;
        }

        .pagination {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid #e5e7eb;
            flex-wrap: wrap;
            gap: 20px;
        }

        .pagination-info {
            font-size: 14px;
            color: #6b7280;
            font-weight: 500;
        }

        .pagination-controls {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .pagination-btn {
            padding: 8px 12px;
            min-width: 40px;
            border: 1px solid #d1d5db;
            background: white;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 14px;
            color: #374151;
            font-weight: 500;
        }

        .pagination-btn:hover:not(:disabled) {
            background: #f9fafb;
            border-color: #059669;
            color: #059669;
        }

        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .pagination-btn.active {
            background: #059669;
            color: white;
            border-color: #059669;
        }


        /* Table Wrapper for Scroll */
        .table-wrapper {
            position: relative;
            overflow-x: auto;
            overflow-y: visible;
            margin-bottom: 30px;
        }

        .data-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }

        .data-table thead {
            background: linear-gradient(to right, #f9fafb, #f3f4f6);
        }

        .data-table th {
            padding: 14px 16px;
            text-align: left;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            border-bottom: 2px solid #e5e7eb;
            cursor: pointer;
            user-select: none;
            white-space: nowrap;
            background: #059669;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        /* Sortable header with icon on right */
        .data-table th.sortable {
            position: relative;
            padding-right: 32px;
        }

        .data-table th.sortable::after {
            content: '\f0dc';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 11px;
        }

        .data-table th.sort-asc::after {
            content: '\f0de';
            color: #059669;
        }

        .data-table th.sort-desc::after {
            content: '\f0dd';
            color: #059669;
        }

        .data-table th.actions-header {
            position: sticky;
            right: 0;
            background: #065f46;
            z-index: 20;
            cursor: default;
        }

        .data-table th.actions-header:hover {
            background: linear-gradient(to right, #f9fafb, #f3f4f6);
        }

        .data-table tbody tr {
            border-bottom: 1px solid #f3f4f6;
            transition: all 0.2s ease;
        }

        .data-table tbody tr:hover {
            background: #f9fafb;
        }

        .data-table td {
            padding: 14px 16px;
            font-size: 14px;
            color: #4b5563;
            background: white;
            border-bottom: 1px solid #e5e7eb;
            white-space: nowrap;
        }

        .data-table td.actions-cell {
            position: sticky;
            right: 0;
            background: white;
            z-index: 5;
        }

        .data-table tbody tr:hover td.actions-cell {
            background: #f9fafb;
        }

        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        .badge-green {
            background: #d1fae5;
            color: #065f46;
        }

        .badge-yellow {
            background: #fef3c7;
            color: #92400e;
        }

        .badge-blue {
            background: #dbeafe;
            color: #1e40af;
        }

        .badge-red {
            background: #fee2e2;
            color: #991b1b;
        }

        .badge-purple {
            background: #e9d5ff;
            color: #6b21a8;
        }

        .action-buttons {
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .action-btn {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            position: relative;
        }

        .action-btn.view {
            background: #dbeafe;
            color: #1e40af;
        }

        .action-btn.view:hover {
            background: #bfdbfe;
            transform: scale(1.1);
        }

        .action-btn.edit {
            background: #fef3c7;
            color: #92400e;
        }

        .action-btn.edit:hover {
            background: #fde68a;
            transform: scale(1.1);
        }

        .action-btn.delete {
            background: #fee2e2;
            color: #991b1b;
        }

        .action-btn.delete:hover {
            background: #fecaca;
            transform: scale(1.1);
        }

        .safari-card {
            transform-origin: center center;
            transition: all 0.3s ease;
        }

        .safari-card:hover {
            transform: translateY(-7px) scale(1.05);
            -webkit-transform: translateY(-7px) scale(1.05);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
        }


        /* --------------Datatable Style End ------------- */

        @media (max-width: 425px) {

            .d-sm-none {
                display: none !important;
            }

            .row-three-cols {
                grid-template-columns: repeat(1, 1fr) !important;
            }

            .row-two-cols {
                grid-template-columns: repeat(1, 1fr) !important;
            }

        }

        @media (max-width: 768px) {
            .d-md-none {
                display: none !important;
            }

            .row-three-cols {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            .row-two-cols {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        /* Responsive container widths for large viewports */

        @media (max-width: 375px) {
            .logo-img {
                width: 230px !important;
            }
        }

        @media (min-width: 376px) and (max-width: 425px) {
            .logo-img {
                width: 230px !important;
            }
        }

        @media (min-width: 426px) and (max-width: 768px) {
            .logo-img {
                width: 230px !important;
            }
        }


        @media (min-width: 779px) and (max-width: 1199px) {
            .logo-img {
                width: 230px !important;
            }
        }

        @media (min-width: 1200px) and (max-width: 1299px) {
            .logo-img {
                width: 230px !important;
            }

            .details-row {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
        }

        @media (min-width: 1300px) and (max-width: 1399px) {
            .logo-img {
                width: 240px !important;
            }

            .details-row {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 12px;
            }
        }

        @media (min-width: 1400px) and (max-width: 1499px) {
            .logo-img {
                width: 250px !important;
            }

            .details-row {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 12px;
            }
        }

        @media (min-width: 1500px) and (max-width: 1599px) {
            .logo-img {
                width: 280px !important;
            }

            .details-row {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 12px;
            }
        }

        @media (min-width: 1600px) {
            .logo-img {
                width: 300px !important;
            }
        }


        .gallery-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            border: 2px solid #05966930;
            transition: all 0.4s ease;
            border-radius: 10px;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, #05966959 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 1;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item:hover {
            border-color: #059669;
            box-shadow: 0 10px 30px #0596694f;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.15) rotate(2deg);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent 60%);
            padding: 30px;
            transform: translateY(100%);
            transition: transform 0.4s;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            z-index: 2;
        }

        .gallery-item:hover .gallery-overlay {
            /* transform: translateY(0); */
        }



        .modern-card {
            background: white;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        #svgMap {
            width: 100%;
            height: auto;
            max-height: 650px;
        }

        #svgMap path[fill] {
            cursor: pointer;
            transition: all 0.3s ease;
            stroke: #333;
            stroke-width: 0.5;
        }

        #svgMap path[fill]:hover {
            filter: brightness(1.3) saturate(1.2);
            stroke: #000;
            stroke-width: 2;
        }

        #svgMap path[fill].active {
            filter: brightness(1.2);
            stroke: #000;
            stroke-width: 3;
        }

        .info-card-enter {
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .theme-adaptive {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }