:root {
            --primary: #800020;
            --primary-dark: #5a0017;
            --secondary: #D4AF37;
            --secondary-dark: #B8860B;
            --light: #FFF8F0;
            --light-gray: #F9F5F0;
            --dark: #2C1810;
            --gray: #6D6D6D;
            --success: #2E8B57;
            --shadow: 0 10px 30px rgba(128, 0, 32, 0.1);
            --shadow-hover: 0 20px 40px rgba(128, 0, 32, 0.15);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --border-radius: 10px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: white;
        }
        
        h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--primary);
            position: relative;
            display: inline-block;
            margin-bottom: 2.5rem;
        }
        
        h2:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: clamp(60px, 8vw, 100px) 0;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2);
            gap: 10px;
            position: relative;
            overflow: hidden;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(128, 0, 32, 0.3);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, var(--dark), #1a0f0a);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            top: 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 4vw, 1.8rem);
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }
        
        .back-home {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .back-home:hover {
            color: var(--secondary);
        }
        
        /* Hero */
        .pack-hero {
            
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-align: center;
            padding: 180px 0 100px;
            margin-top: 60px;
        }
        
        .pack-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Filter Section */
        .filter-section {
            background-color: var(--light-gray);
            padding: 40px 0;
        }
        
        .filter-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            align-items: center;
        }
        
        .filter-group {
            display: flex;
            flex-direction: column;
            min-width: 200px;
        }
        
        .filter-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary);
            font-size: 0.9rem;
        }
        
        .filter-select {
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            background: white;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
        }
        
        .filter-buttons {
            display: flex;
            gap: 10px;
            margin-left: 20px;
        }
        
        .filter-btn {
            padding: 12px 25px;
            background: white;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* Packs Section */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
        }
        
        .packs-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .pack-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border: 3px solid transparent;
        }
        
        .pack-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--secondary);
        }
        
        .pack-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--secondary);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
            max-width: 100px; 
            text-align: center;
            line-height: 1.2;
        }
        
        .pack-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 30px 25px;
            text-align: center;
        }
        
        .pack-name {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .pack-duration {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .pack-content {
            padding: 30px;
        }
        
        .pack-price {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .old-price {
            text-decoration: line-through;
            color: var(--gray);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .new-price {
            color: var(--primary);
            font-size: 2.2rem;
            font-weight: 700;
        }
        
        .pack-features {
            list-style: none;
            margin-bottom: 30px;
            max-height: 300px;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .pack-features::-webkit-scrollbar {
            width: 5px;
        }
        
        .pack-features::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .pack-features::-webkit-scrollbar-thumb {
            background: var(--secondary);
            border-radius: 10px;
        }
        
        .pack-features li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            font-size: 0.9rem;
        }
        
        .pack-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }
        
        .pack-gift {
            background: rgba(212, 175, 55, 0.1);
            border-radius: var(--border-radius);
            padding: 15px;
            text-align: center;
            margin-top: 20px;
            font-weight: 600;
            color: var(--secondary-dark);
            border-left: 4px solid var(--secondary);
        }
        
        .pack-gift i {
            margin-right: 8px;
        }
        
        /* Registration Form Section */
        .registration-section {
            background: linear-gradient(135deg, var(--light-gray), white);
        }
        
        .registration-container {
            background: white;
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary);
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-align: center;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .stat-item {
            padding: 30px 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark), #1a0f0a);
            color: white;
            padding: 80px 0 30px;
            text-align: center;
             margin-top: 30px;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 20px;
        
        }
        
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 30px;

        }
        
        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
        }
        
        .floating-whatsapp a {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 15px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
            transition: var(--transition);
        }
        
        .floating-whatsapp a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 998;
            box-shadow: 0 4px 15px rgba(128, 0, 32, 0.3);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        /* No Results */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            grid-column: 1 / -1;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .filter-container {
                flex-direction: column;
                align-items: stretch;
            }
            
            .filter-buttons {
                margin-left: 0;
                margin-top: 15px;
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .packs-container {
                grid-template-columns: 1fr;
            }
            
            .pack-card {
                max-width: 400px;
                margin: 0 auto;
            }
            
            .registration-container {
                padding: 30px;
            }
            
            .pack-hero {
                padding: 140px 0 80px;
            }
            
            .floating-whatsapp a span {
                display: none;
            }
            
            .floating-whatsapp a {
                padding: 15px;
                border-radius: 50%;
            }
        }
        
        @media (max-width: 480px) {
            .pack-hero {
                padding: 120px 0 60px;
            }
            
            .pack-header {
                padding: 20px;
            }
            
            .pack-content {
                padding: 20px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
         }
          .developer-credit a {
                font-size: 0.95rem;
                 margin-top: 30px;
                 margin-bottom: 20px;
                    }
           

          .developer-credit a {
                 color: #D4AF37;
                 text-decoration: none;
                 padding-bottom: 20px;
                    }
                   
 
          .developer-link {
                color:#B8860B;
                text-decoration: none;
                font-weight: 600;
                transition: var(--transition);
                padding: 5px 10px;
                border-radius: 4px;
               }

            .developer-link:hover {
                color: white;
                background: rgba(212, 175, 55, 0.2);
                text-decoration: underline;
}
/* privacy */
.privacy-link {
    color:var(--secondary);
    text-decoration: none;
    font-weight: 500;
}
.privacy-link:hover {
    text-decoration: underline;
}