        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            box-sizing: border-box;
            font-weight: 800;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        html, body {
            height: 100%;
            overflow-x: hidden;
        }

        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        header.header-hidden {
            transform: translateY(-100%);
        }

        header.header-visible {
            transform: translateY(0);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        body {
            padding-top: 80px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 24px;
            font-weight: 900;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .logo-icon svg {
            width: 100%;
            height: 100%;
        }

        nav {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
        }

        .nav-btn {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 14px;
            font-weight: 800;
        }

        .nav-btn:hover, .nav-btn.active {
            background: white;
            color: #800020;
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 5px 15px rgba(255,255,255,0.3);
        }

        .mobile-menu-btn {
            display: none;
            background: rgba(255,255,255,0.1);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 20px;
        }

        /* Hero Section */
        .hero {
            background: url('https://i.pinimg.com/736x/07/17/d3/0717d3ef2c2fc2a16d604e09c159f169.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            color: white;
            padding: 150px 0 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
            z-index: 0;
        }

        @keyframes moveBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.3s;
            opacity: 0;
            font-family: 'Poppins', 'Montserrat', sans-serif;
            font-weight: 900;
            -webkit-text-stroke: 2px black;
            paint-order: stroke fill;
        }

        .hero-subtitle {
            font-size: 24px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.8s;
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            font-family: 'Poppins', 'Montserrat', sans-serif;
            font-weight: 900;
            -webkit-text-stroke: 2px black;
            paint-order: stroke fill;
        }

        .animated-text {
            display: inline-block;
            font-family: 'Poppins', 'Montserrat', sans-serif;
            font-weight: 900;
            color: #FFD700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            animation: glow 2s ease-in-out infinite;
            position: relative;
            -webkit-text-stroke: 2px black;
            paint-order: stroke fill;
        }

        @keyframes glow {
            0%, 100% { 
                text-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
                             0 0 30px rgba(255, 215, 0, 0.3);
            }
            50% { 
                text-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
                             0 0 40px rgba(255, 215, 0, 0.5),
                             0 0 50px rgba(255, 215, 0, 0.3);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-icons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease forwards;
            animation-delay: 1.3s;
            opacity: 0;
        }

        .hero-icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .hero-icon-item:nth-child(1) .hero-icon {
            animation: float 3s ease-in-out infinite;
            animation-delay: 0s;
        }
        
        .hero-icon-item:nth-child(2) .hero-icon {
            animation: float 3s ease-in-out infinite;
            animation-delay: 0.5s;
        }
        
        .hero-icon-item:nth-child(3) .hero-icon {
            animation: float 3s ease-in-out infinite;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .hero-icon {
            font-size: 48px;
            background: rgba(255,255,255,0.1);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid rgba(255,255,255,0.3);
            transition: all 0.3s;
        }

        .hero-icon-item:hover .hero-icon {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,215,0,0.8);
            transform: scale(1.1) rotate(5deg);
        }

        .hero-icon-text {
            font-size: 14px;
            font-family: 'Poppins', 'Montserrat', sans-serif;
            font-weight: 900;
            opacity: 0.9;
            -webkit-text-stroke: 1.5px black;
            paint-order: stroke fill;
        }

        /* Package Section */
        .package-section {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            color: #800020;
            font-weight: 900;
        }

        .package-grid {
            display: grid;
            gap: 40px;
        }

        .package-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: 432px 1fr;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 30px;
            padding: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .package-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .poster-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .package-image-wrapper {
            position: relative;
            perspective: 1000px;
        }

        .package-image {
            position: relative;
            overflow: hidden;
            width: 432px;
            height: 540px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            cursor: pointer;
            transition: transform 0.3s;
            border: 4px solid #e0e0e0;
        }

        .package-image:hover {
            transform: scale(1.02);
        }

        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            image-rendering: high-quality;
        }

        .package-card:hover .package-image img {
            transform: scale(1.05);
        }

        .view-poster-btn {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
            box-shadow: 0 3px 15px rgba(128, 0, 32, 0.2);
        }

        .view-poster-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(128, 0, 32, 0.4);
            background: linear-gradient(135deg, #a0002a 0%, #c00030 100%);
        }

        .view-poster-btn:active {
            transform: translateY(0);
        }

        .view-equipment-btn {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: white;
        }

        .view-equipment-btn:hover {
            background: linear-gradient(135deg, #FFC700 0%, #FF8C00 100%);
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
        }

        .package-content {
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .package-title {
            font-size: 28px;
            color: #800020;
            margin-bottom: 20px;
            font-weight: 900;
        }

        .package-details {
            margin-bottom: 30px;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 16px;
        }

        .detail-icon {
            font-size: 20px;
            color: #800020;
        }

        .admin-buttons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 20px;
        }

        .admin-btn {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: white;
            border: none;
            padding: 12px 15px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            font-size: 13px;
        }

        .admin-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
            background: linear-gradient(135deg, #FFC700 0%, #FF8C00 100%);
        }

        .haji-btn {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            grid-column: 1 / -1;
        }

        .haji-btn:hover {
            box-shadow: 0 5px 15px rgba(128, 0, 32, 0.5);
            background: linear-gradient(135deg, #a0002a 0%, #c00030 100%);
        }

        /* Gallery Slider */
        .gallery-slider-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 0;
        }

        .gallery-slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .gallery-slides {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-slide {
            min-width: 100%;
            position: relative;
            aspect-ratio: 16/9;
        }

        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .gallery-slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: white;
            padding: 40px 30px 30px;
            font-size: 24px;
            font-weight: bold;
        }

        .gallery-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            color: #800020;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .gallery-nav-btn:hover {
            background: #800020;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .gallery-nav-btn.prev {
            left: 20px;
        }

        .gallery-nav-btn.next {
            right: 20px;
        }

        .gallery-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .gallery-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .gallery-indicator.active {
            background: white;
            width: 40px;
            border-radius: 6px;
        }

        .gallery-counter {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            z-index: 10;
        }

        .gallery-thumbnails {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }

        .gallery-thumbnail {
            aspect-ratio: 16/9;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            border: 3px solid transparent;
        }

        .gallery-thumbnail:hover {
            transform: scale(1.05);
            border-color: #800020;
        }

        .gallery-thumbnail.active {
            border-color: #FFD700;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
        }

        .gallery-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Articles */
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 60px 0;
        }

        .article-card:nth-child(1) { animation-delay: 0.1s; }
        .article-card:nth-child(2) { animation-delay: 0.2s; }
        .article-card:nth-child(3) { animation-delay: 0.3s; }
        .article-card:nth-child(4) { animation-delay: 0.4s; }
        .article-card:nth-child(5) { animation-delay: 0.5s; }
        .article-card:nth-child(6) { animation-delay: 0.6s; }

        .article-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .article-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .article-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
        }

        .article-content {
            padding: 25px;
        }

        .article-date {
            color: #888;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .article-title {
            font-size: 20px;
            color: #800020;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .article-excerpt {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .read-more {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: bold;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
        }

        .read-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3);
        }

        .article-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            animation: fadeInModal 0.3s forwards;
            padding: 20px;
            overflow-y: auto;
        }

        .article-modal-content {
            background: white;
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 90%;
            overflow-y: auto;
            box-shadow: 0 10px 50px rgba(0,0,0,0.5);
            transform: scale(0.9) translateY(-20px);
            opacity: 0;
            animation: popIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
        }

        .article-modal-header {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
            padding: 30px;
            border-radius: 20px 20px 0 0;
            position: relative;
        }

        .article-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
        }

        .article-modal-close:hover {
            background: rgba(255, 255, 255, 0.9);
            color: #800020;
            transform: rotate(90deg) scale(1.1);
            border-color: white;
        }

        .article-modal-date {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 10px;
        }

        .article-modal-title {
            font-size: 32px;
            font-weight: bold;
            margin: 0;
        }

        .article-modal-body {
            padding: 40px;
            max-height: 60vh;
            overflow-y: auto;
        }

        .article-modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .article-modal-body::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .article-modal-body::-webkit-scrollbar-thumb {
            background: #800020;
            border-radius: 10px;
        }

        .article-modal-body::-webkit-scrollbar-thumb:hover {
            background: #a0002a;
        }

        .article-modal-content-text {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            white-space: pre-wrap;
            font-weight: 400;
        }

        /* About Section */
        .about-section {
            padding: 60px 0;
            background: white;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-logo {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 40px;
            overflow: hidden;
        }

        .about-logo svg {
            width: 80%;
            height: 80%;
        }

        .about-text {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 40px;
        }

        .vision-mission {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .vm-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #800020;
        }

        .vm-card h3 {
            color: #800020;
            margin-bottom: 15px;
            font-size: 24px;
        }

        /* Login Form */
        .login-section {
            padding: 0;
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            min-height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .login-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }

        .login-form {
            background: white;
            padding: 60px 50px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            max-width: 480px;
            width: 100%;
            margin: 40px 20px;
            position: relative;
            z-index: 1;
            animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-form h2 {
            text-align: center;
            color: #800020;
            margin-bottom: 40px;
            font-size: 36px;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .login-form .about-logo {
            background: white;
        }

        .form-group {
            margin-bottom: 30px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 12px;
            color: #333;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.3px;
        }

        .form-group input {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: #f8f9fa;
            font-weight: 500;
        }

        .form-group input:focus {
            outline: none;
            border-color: #800020;
            background: white;
            box-shadow: 0 5px 20px rgba(128, 0, 32, 0.1);
            transform: translateY(-2px);
        }

        .form-group input::placeholder {
            color: #aaa;
        }

        .login-btn {
            width: 100%;
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 15px;
            font-size: 18px;
            font-weight: 900;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }

        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(128, 0, 32, 0.4);
            background: linear-gradient(135deg, #a0002a 0%, #c00030 100%);
        }

        .login-btn:active {
            transform: translateY(-1px);
        }

        .login-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-section p {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: 1.6;
        }

        .social-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
        }

        .social-btn {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 12px 20px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
        }

        .social-btn:hover {
            background: white;
            color: #800020;
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            opacity: 0.8;
        }

        /* Carousel/Slider Styles */
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 15px;
            background: #000;
        }

        .carousel-wrapper {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide {
            min-width: 100%;
            height: 400px;
            position: relative;
            cursor: pointer;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            image-rendering: high-quality;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: rgba(128, 0, 32, 0.9);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav.prev {
            left: 15px;
        }

        .carousel-nav.next {
            right: 15px;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-indicator.active {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        .carousel-counter {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            z-index: 10;
        }

        /* Fullscreen Modal */
        .fullscreen-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.98);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            animation: fadeInModal 0.3s forwards;
        }

        @keyframes fadeInModal {
            to {
                opacity: 1;
            }
        }

        @keyframes fadeOutModal {
            from {
                opacity: 1;
            }
            to {
                opacity: 0;
            }
        }

        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            transform: scale(0.9) translateY(-20px);
            opacity: 0;
            animation: popIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
        }

        @keyframes popIn {
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .fullscreen-content {
            position: relative;
            width: 90%;
            height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fullscreen-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            image-rendering: high-quality;
        }

        .fullscreen-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
        }

        .fullscreen-nav:hover {
            background: rgba(128, 0, 32, 0.9);
            border-color: #800020;
            transform: translateY(-50%) scale(1.15);
        }

        .fullscreen-nav.prev {
            left: 30px;
        }

        .fullscreen-nav.next {
            right: 30px;
        }

        .fullscreen-close {
            position: absolute;
            top: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
        }

        .fullscreen-close:hover {
            background: rgba(255, 0, 0, 0.9);
            border-color: #ff0000;
            transform: rotate(90deg) scale(1.1);
        }

        .fullscreen-caption {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            max-width: 80%;
            z-index: 10;
        }

        .fullscreen-counter {
            position: absolute;
            top: 30px;
            left: 30px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            z-index: 10;
        }

        .page-content {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .page-content.hidden {
            display: none;
        }

        /* Dashboard Admin */
        .dashboard-header {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logout-btn {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid white;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }

        .logout-btn:hover {
            background: white;
            color: #800020;
        }

        .dashboard-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .tab-btn {
            background: #f8f9fa;
            color: #333;
            border: 2px solid #e0e0e0;
            padding: 15px 30px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }

        .tab-btn.active {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
            border-color: transparent;
        }

        .admin-form {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(128, 0, 32, 0.3);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .cancel-btn {
            background: #e0e0e0;
            color: #333;
            border: none;
            padding: 15px 40px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s;
        }

        .cancel-btn:hover {
            background: #d0d0d0;
        }

        .category-btn {
            background: white;
            color: #333;
            border: 2px solid #e0e0e0;
            padding: 12px 25px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            font-size: 14px;
        }

        .category-btn:hover {
            border-color: #800020;
            transform: translateY(-2px);
        }

        .category-btn.active {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
            border-color: transparent;
        }

        .data-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .table-responsive {
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        thead {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }

        tbody tr:hover {
            background: #f8f9fa;
        }

        .action-btns {
            display: flex;
            gap: 10px;
        }

        .edit-btn, .delete-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 12px;
            transition: all 0.3s;
        }

        .edit-btn {
            background: #800020;
            color: white;
        }

        .edit-btn:hover {
            background: #a0002a;
        }

        .delete-btn {
            background: #ff4757;
            color: white;
        }

        .delete-btn:hover {
            background: #ee5a6f;
        }

        .modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            padding: 20px;
        }

        .modal-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .confirm-btn {
            flex: 1;
            background: #ff4757;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
        }

        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #888;
        }

        .image-preview {
            margin-top: 15px;
            display: none;
        }

        /* Registration Form Modal */
        .registration-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            animation: fadeInModal 0.3s forwards;
            padding: 20px;
            overflow-y: auto;
        }

        .registration-modal-content {
            background: white;
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 10px 50px rgba(0,0,0,0.5);
            transform: scale(0.9) translateY(-20px);
            opacity: 0;
            animation: popIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
        }

        .registration-modal-header {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
            padding: 30px;
            border-radius: 20px 20px 0 0;
            position: relative;
        }

        .registration-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
        }

        .registration-modal-close:hover {
            background: rgba(255, 255, 255, 0.9);
            color: #800020;
            transform: rotate(90deg) scale(1.1);
        }

        .registration-modal-title {
            font-size: 28px;
            font-weight: bold;
            margin: 0;
        }

        .registration-modal-body {
            padding: 40px;
        }

        .registration-section {
            margin-bottom: 40px;
        }

        .registration-section-title {
            color: #800020;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #800020;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .registration-form-group {
            margin-bottom: 20px;
        }

        .registration-form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 14px;
        }

        .registration-form-group input,
        .registration-form-group select,
        .registration-form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s;
            font-weight: 500;
        }

        .registration-form-group input:focus,
        .registration-form-group select:focus,
        .registration-form-group textarea:focus {
            outline: none;
            border-color: #800020;
            box-shadow: 0 3px 15px rgba(128, 0, 32, 0.1);
        }

        .registration-form-group textarea {
            min-height: 80px;
            resize: vertical;
        }

        .registration-form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .cs-selection {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .cs-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 3px solid #e0e0e0;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cs-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-color: #800020;
        }

        .cs-card.selected {
            background: linear-gradient(135deg, #800020 0%, #a0002a 100%);
            color: white;
            border-color: #800020;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(128, 0, 32, 0.3);
        }

        .cs-card-icon {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .cs-card-name {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .cs-card-phone {
            font-size: 14px;
            opacity: 0.8;
        }

        .registration-submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 15px;
            font-size: 18px;
            font-weight: 900;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 30px;
        }

        .registration-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
        }

        .registration-submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .file-input-wrapper {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        .file-input-wrapper input[type=file] {
            position: absolute;
            left: -9999px;
        }

        .file-input-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px;
            background: #f8f9fa;
            border: 2px dashed #800020;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            color: #800020;
        }

        .file-input-label:hover {
            background: #fff5f5;
            border-color: #a0002a;
        }

        .file-preview {
            margin-top: 10px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 8px;
            font-size: 13px;
            color: #666;
            display: none;
        }

        .file-preview.active {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .file-remove-btn {
            background: #ff4757;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
        }

        .image-preview.active {
            display: block;
        }

        .image-preview img {
            max-width: 100%;
            max-height: 300px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .remove-image-btn {
            background: #ff4757;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
            font-weight: bold;
            margin-top: 10px;
        }

        .info-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 5px solid #800020;
        }

        .info-card h4 {
            color: #800020;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-card p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .package-card {
                grid-template-columns: 1fr;
            }

            .package-image {
                width: 100%;
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #800020;
                flex-direction: column;
                padding: 20px;
            }

            nav.active {
                display: flex;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .admin-buttons {
                grid-template-columns: 1fr;
            }

            .dashboard-header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* Floating registration button */
        .floating-register-btn {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 11000;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            border: none;
            padding: 14px 18px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(32,201,151,0.18);
            font-weight: 800;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(6px);
            transition: transform 0.18s ease, box-shadow 0.18s ease;
        }

        .floating-register-btn:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(32,201,151,0.22);
        }

        @media (max-width: 480px) {
            .floating-register-btn {
                right: 12px;
                bottom: 12px;
                padding: 12px 14px;
                font-size: 14px;
            }
        }