/* ===== VIP Numbers Homepage Enhanced Styles ===== */

/* GLOBAL STYLES */
:root {
    /* --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    --gold-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 20px;
    --border-radius-sm: 15px;
    --spacing-unit: 1rem;
}

/* ===== ENHANCED HEADING DESIGN ===== */
.vip-numbers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.vip-numbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    position: relative;
    z-index: 2;
}

.heading-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Decorative Elements */
.heading-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.decoration-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent 0%, #4a90e2 50%, transparent 100%);
    position: relative;
}

.decoration-line.left {
    background: linear-gradient(90deg, transparent 0%, #4a90e2 100%);
}

.decoration-line.right {
    background: linear-gradient(90deg, #4a90e2 0%, transparent 100%);
}

.decoration-icon {
    margin: 0 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a90e2 0%, #f5a623 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Main Heading */
.main-heading {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    position: relative;
}

.text-gradient {
    background: linear-gradient(135deg, #4a90e2 0%, #f5a623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4a90e2 0%, #f5a623 100%);
    border-radius: 2px;
    opacity: 0.3;
    transform: scaleX(0);
    animation: underlineGrow 2s ease-out 0.5s forwards;
}

@keyframes underlineGrow {
    to {
        transform: scaleX(1);
    }
}

/* Heading Subtitle */
.heading-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Animated Badge */
.heading-badge {
    margin-top: 1rem;
}

.badge-premium {
    background: linear-gradient(135deg, #4a90e2 0%, #f5a623 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(74, 144, 226, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
    }
}

/* HERO SECTION */
.hero-section {
    background: var(--primary-gradient);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        url('../img/bg-img.png'),
        url('../img/hero_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.3) saturate(1.2);
    z-index: 0;
}

.hero-background.tech-theme {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        url('../img/hero_bg.png');
}

.hero-background.mobile-theme {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        url('../img/hero_bg.png');
}

.hero-background.business-theme {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        url('../img/hero_bg.png');
}

.hero-background.animated::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    z-index: 2;
}

@keyframes sparkle {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(200px);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.text-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

/* MODERN SEARCH BAR */
.search-container {
    max-width: 700px;
    margin: 0 auto;
}

.modern-search-wrapper {
    position: relative;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 8px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.search-input-group:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.search-input-group:focus-within {
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: #6c757d;
    font-size: 1.2rem;
}

.modern-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 5px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3748;
    outline: none;
    letter-spacing: 0.5px;
}

.modern-search-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.modern-search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    color: white;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    min-width: 120px;
    justify-content: center;
}

/* COMPACT SEARCH BAR */
.search-container-compact {
    max-width: 450px;
    margin: 0 auto;
}

.compact-search-wrapper {
    position: relative;
}

.compact-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 4px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 100%;
}

.compact-input-group:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.compact-input-group:focus-within {
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.4);
}

.search-icon-compact {
    padding: 0 12px;
    color: #6c757d;
    font-size: 1rem;
    flex-shrink: 0;
}

.compact-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2d3748;
    outline: none;
    letter-spacing: 0.3px;
    min-width: 0;
}

.compact-search-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
    font-size: 0.9rem;
}

.compact-search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    color: white;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
    min-width: 50px;
    flex-shrink: 0;
}

.compact-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.compact-search-btn:active {
    transform: translateY(0);
}

.modern-search-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6b4190 100%);
    transform: translateX(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.modern-search-btn:active {
    transform: translateX(-1px) scale(0.98);
}

.modern-search-btn .btn-text {
    display: block;
}

.modern-search-btn i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.modern-search-btn:hover i {
    transform: translateX(2px);
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    overflow: hidden;
    z-index: 1000;
    backdrop-filter: blur(20px);
}

.search-suggestions.d-none {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.suggestion-item {
    padding: 15px 25px;
    cursor: default;
    transition: var(--transition);
    display: flex;
    align-items: center;
    color: #4a5568;
    font-weight: 500;
    border-bottom: 1px solid #f7fafc;
    pointer-events: none;
}

.search-suggestions:not(.d-none) .suggestion-item {
    cursor: pointer;
    pointer-events: auto;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2d3748;
    padding-left: 30px;
}

.suggestion-item i {
    width: 20px;
    font-size: 1rem;
}

/* Prevent unwanted clickable behavior */
.hero-section * {
    outline: none !important;
}

.hero-section .hero-background {
    pointer-events: none;
    user-select: none;
}

.hero-content {
    pointer-events: auto;
}

/* Responsive Design for Search */
@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .search-input-group {
        padding: 6px;
    }

    .modern-search-input {
        padding: 15px 5px;
        font-size: 1rem;
    }

    .modern-search-btn {
        padding: 12px 20px;
        min-width: 100px;
        font-size: 0.9rem;
    }

    .search-icon {
        padding: 0 15px;
    }

    /* Compact Search Responsive */
    .search-container-compact {
        max-width: 100%;
        padding: 0 10px;
    }

    .compact-input-group {
        padding: 3px;
    }

    .compact-search-input {
        padding: 10px 6px;
        font-size: 0.9rem;
    }

    .compact-search-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 45px;
    }

    .search-icon-compact {
        padding: 0 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modern-search-btn .btn-text {
        display: none;
    }

    .modern-search-btn {
        min-width: 60px;
        padding: 15px;
    }

    /* Compact Search Mobile */
    .search-container-compact {
        padding: 0 5px;
    }

    .compact-search-input {
        font-size: 0.85rem;
        padding: 9px 5px;
    }

    .compact-search-input::placeholder {
        font-size: 0.85rem;
    }

    .compact-search-btn {
        padding: 8px 10px;
        min-width: 40px;
    }

    .search-icon-compact {
        padding: 0 8px;
        font-size: 0.85rem;
    }

    .stylish-heading .stylish-title {
        font-size: 15px;
        letter-spacing: 0px;

    }

    .stylish-heading .heading-icon {
        font-size: 17px;
        letter-spacing: 0px;
    }

    .view-more-link {
        font-size: 12px;
        color: #6c757d;

        text-decoration: none;
        transition: color 0.3s ease;
    }

}

/* CTA BUTTONS */
.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--gold-gradient);
    border: none;
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 87, 108, 0.4);
}

.cta-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* FILTERS SECTION */
.filters-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.filter-dropdown {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.filter-dropdown:focus {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    border-color: #0d6efd;
}

.filter-tags {
    margin-top: 1rem;
}

.filter-tag {
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.filter-tag.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.filter-tag:hover:not(.active) {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* SECTION HEADERS */
.section-header {
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 0;
}

/* ENHANCED CARDS */
.number-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    height: 100%;
}

.number-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.number-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.enhanced-card:hover .card-overlay {
    opacity: 1;
    visibility: visible;
}

/* CARD BADGES */
.card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    z-index: 3;
}

.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-trending {
    background: var(--warning-gradient);
    color: white;
    box-shadow: 0 3px 10px rgba(250, 112, 154, 0.3);
}

.badge-save {
    background: var(--success-gradient);
    color: white;
    box-shadow: 0 3px 10px rgba(79, 172, 254, 0.3);
}

.badge-offer {
    background: var(--gold-gradient);
    color: white;
    box-shadow: 0 3px 10px rgba(245, 87, 108, 0.3);
}

/* PULSE ANIMATION */
.pulse-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* WISHLIST BUTTON */
.wishlist-container {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 4;
}

.wishlist-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    /* background: rgba(255, 255, 255, 0.9); */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    /* box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1); */
    color: #dc3545;
    font-size: 1.2rem;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    /* background: #dc3545; */
    color: white !important;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
}

.wishlist-btn.active {
    /* background: #dc3545; */
    color: white;
}

.wishlist-btn.loading {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* NUMBER DISPLAY */
.number-display {
    text-align: center;
    margin: 2rem 0 1.5rem;
}

.vip-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.number-pattern {
    font-size: 0.875rem;
    color: #6c757d;
}

/* PRICING */
.pricing {
    text-align: center;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 0.875rem;
    color: #6c757d;
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.25rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    display: block;
    margin-bottom: 0.5rem;
}

.discount-percent {
    font-size: 0.75rem;
    font-weight: 600;
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    display: inline-block;
}

/* BUY NOW BUTTON */
/* .buy-now-btn {
    background: var(--warning-gradient);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
} */

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    color: white;
}

/* CARD OVERLAY */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.overlay-content {
    text-align: center;
    color: white;
}

.rating {
    margin-top: 0.5rem;
}

/* PACK CARDS */
.pack-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: none;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--success-gradient);
}

.family-pack::before {
    background: var(--success-gradient);
}

.business-pack::before {
    background: var(--primary-gradient);
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.pack-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.pack-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--success-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
}

.business-pack .pack-icon {
    background: var(--primary-gradient);
}

.pack-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #2c3e50;
}

.pack-subtitle {
    color: #6c757d;
    margin: 0;
}

.pack-discount {
    margin-left: auto;
}

.discount-badge {
    background: var(--gold-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.875rem;
}

.pack-numbers {
    margin-bottom: 2rem;
}

.number-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.number-item:last-child {
    border-bottom: none;
}

.number-item .number {
    font-weight: 600;
    font-family: 'Courier New', monospace;
    color: #2c3e50;
}

.number-item .price {
    color: #6c757d;
    text-decoration: line-through;
}

.pack-pricing {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 2rem;
}

.original-total {
    color: #6c757d;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.pack-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.savings {
    color: #dc3545;
    font-weight: 600;
}

.pack-buy-btn {
    border-radius: var(--border-radius-sm);
    padding: 1rem 2rem;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.pack-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* LOADING SKELETON */
.loading-skeleton {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.skeleton-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
}

.skeleton-badge,
.skeleton-number,
.skeleton-price,
.skeleton-button {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.skeleton-badge {
    height: 25px;
    width: 80px;
}

.skeleton-number {
    height: 30px;
    width: 150px;
    margin: 2rem auto 1rem;
}

.skeleton-price {
    height: 25px;
    width: 100px;
    margin: 0 auto 1.5rem;
}

.skeleton-button {
    height: 40px;
    width: 100%;
    margin-bottom: 0;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* SPECIAL OFFERS SECTION */
.special-offers-section {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.special-offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.offer-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    gap: 2rem;
}

.time-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem 1rem;
    min-width: 80px;
}

.time-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.time-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CONTACT ICONS */
.contact-icons {
    position: fixed;
    bottom: 1.8rem;
    right: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.contact-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: var(--transition);
    z-index: -1;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background: #007bff;
}

.call-btn:hover {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.4);
}

.email-btn {
    background: #dc3545;
}

.email-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.4);
}

.contact-btn:hover {
    color: white;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) scale(1.1);
    }

    40% {
        transform: translateY(-10px) scale(1.1);
    }

    60% {
        transform: translateY(-5px) scale(1.1);
    }
}

/* SWIPER CUSTOMIZATION */
.most-clicked-swiper {
    padding: 2rem 0;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--card-shadow);
    color: #007bff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: 700;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #007bff;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* TRENDING CARD SPECIFIC STYLES */
.trending-card {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        var(--gold-gradient) border-box;
}

.trending-card:hover {
    transform: translateY(-15px) scale(1.02);
}


/* RESPONSIVE DESIGN */
@media (min-width: 768px) {
    .min-vh-md-100 {
        min-height: 100vh !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

     .contact-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .offer-title {
        font-size: 2rem;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .time-unit {
        padding: 1rem 0.5rem;
        min-width: 60px;
    }

    .time-value {
        font-size: 1.5rem;
    }

    .contact-icons {
        bottom: 1rem;
        right: 1rem;
    }

   

    .pack-header {
        flex-direction: column;
        text-align: center;
    }

    .pack-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .pack-discount {
        margin-left: 0;
        margin-top: 1rem;
    }

    .search-wrapper {
        flex-direction: column;
        border-radius: var(--border-radius);
    }

    .search-input {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

    .search-btn {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .filter-tags {
        text-align: center;
    }

    .number-card {
        padding: 1rem;
    }

    .vip-number {
        font-size: 1.2rem;
    }

    .pack-card {
        padding: 1.5rem;
    }

    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .time-unit {
        flex: 1;
        min-width: 70px;
    }
}

/* UTILITY CLASSES */
.bg-gradient-primary {
    background: var(--primary-gradient);
}

.bg-gradient-success {
    background: var(--success-gradient);
}

.bg-gradient-warning {
    background: var(--warning-gradient);
}

.bg-gradient-gold {
    background: var(--gold-gradient);
}

.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.min-vh-50 {
    min-height: 50vh;
}

/* FADE IN ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MICRO INTERACTIONS */
.scale-on-hover:hover {
    transform: scale(1.05);
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
}

/* PRINT STYLES */
@media print {

    .contact-icons,
    .filters-section,
    .special-offers-section {
        display: none !important;
    }
}


@media (max-width: 576px) {
    .right-pattern {
        display: flex;
    }
}

.pattern a {
    font-size: 8px;

}

@media (max-width: 767.98px) {

    .card .badge.bg-info-subtle,
    .card .badge.bg-warning-subtle,
    .card .badge.bg-success-subtle {
        display: block !important;
        /* width: 100% !important; */
        margin-top: 0.25rem;
        position: static !important;
        left: 0% !important;
        float: left !important;
        transform: unset !important;
        text-align: left;
    }


    .cate-center-badge {
        position: static !important;
        left: unset !important;
        top: unset !important;
        transform: unset !important;
        z-index: unset !important;
        /* width: 100% !important; */
        max-width: 100% !important;
        text-align: left !important;
    }
}

@media (min-width: 768px) {
    .cate-center-badge {
        position: static !important;
        left: unset !important;
        top: unset !important;
        transform: unset !important;
        z-index: unset !important;
        width: auto;
        /* max-width: 90%; */
        text-align: center;
    }

    .card .d-flex.flex-wrap.position-relative {
        min-height: 38px;
    }

    .card .d-flex.flex-wrap.position-relative>.badge {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}