/* Enhanced Packages Section Styles */
.enhanced-packages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.enhanced-packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23533cae" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

/* Header Styles */
.packages-header {
    position: relative;
    z-index: 2;
}

.packages-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--main-colur);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.packages-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 2rem;
}

.packages-description {
    max-width: 800px;
    margin: 0 auto;
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Enhanced Package Grid */
.enhanced-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

/* Enhanced Package Card */
.enhanced-package-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.enhanced-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--main-colur), #7c5fd9);
}

.enhanced-package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(83, 60, 174, 0.2);
    border-color: var(--main-colur);
}

/* Popular Package Special Styling */
.popular-package {
    transform: scale(1.05);
    border: 2px solid var(--main-colur);
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.popular-package::before {
    height: 8px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Package Header */
.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--main-colur), #7c5fd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(83, 60, 174, 0.3);
}

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--main-colur);
    margin-bottom: 0.5rem;
}

.package-duration {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Package Price */
.package-price {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9ff, #e9ecff);
    border-radius: 15px;
    border: 1px solid rgba(83, 60, 174, 0.1);
}

.package-price .currency {
    font-size: 1.5rem;
    color: var(--main-colur);
    font-weight: 600;
    vertical-align: top;
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--main-colur);
    line-height: 1;
}

.package-price .period {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 500;
}

/* Package Features */
.package-features ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.package-features li {
    padding: 0.8rem 0;
    font-size: 1rem;
    color: #495057;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Package Action Button */
.package-action {
    text-align: center;
    margin-top: 2rem;
}

.enhanced-package-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--main-colur), #7c5fd9);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(83, 60, 174, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enhanced-package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(83, 60, 174, 0.4);
    color: white;
    text-decoration: none;
}

.popular-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333 !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.popular-btn:hover {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    color: #333 !important;
}

/* Package Benefits */
.package-benefits {
    margin-top: 4rem;
}

.benefit-item {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--main-colur), #7c5fd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 6px 20px rgba(83, 60, 174, 0.3);
}

.benefit-item h5 {
    color: var(--main-colur);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .packages-main-title {
        font-size: 2.2rem;
    }
    
    .enhanced-packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .enhanced-package-card {
        padding: 2rem;
    }
    
    .popular-package {
        transform: none;
    }
    
    .package-price .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .enhanced-packages-section {
        padding: 60px 0;
    }

    .packages-main-title {
        font-size: 1.8rem;
    }

    .enhanced-package-card {
        padding: 1.5rem;
    }

    .package-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .package-price .amount {
        font-size: 2rem;
    }
}

/* Mobile Proxy Section Styles */
.mobile-proxy-section {
    padding: 60px 0;
    background: white;
}

.section-title-enhanced {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--main-colur);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 3rem;
}

/* Package Category Styles */
.package-category {
    margin-bottom: 4rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff, #e9ecff);
    border-radius: 15px;
    border: 1px solid rgba(83, 60, 174, 0.1);
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-colur);
    margin-bottom: 0.5rem;
}

.category-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* Compact Package Grid */
.compact-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Compact Package Card */
.compact-package-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.compact-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-colur), #7c5fd9);
}

.compact-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(83, 60, 174, 0.15);
    border-color: var(--main-colur);
}

.compact-package-card.featured {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #fff 0%, #fffef8 100%);
}

.compact-package-card.featured::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Compact Header */
.compact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.duration-badge {
    background: linear-gradient(135deg, var(--main-colur), #7c5fd9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-display {
    text-align: right;
}

.price-display .currency {
    font-size: 1rem;
    color: var(--main-colur);
    font-weight: 600;
}

.price-display .amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--main-colur);
    line-height: 1;
}

/* Features List */
.features-list {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(83, 60, 174, 0.1);
    color: var(--main-colur);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Compact Buttons */
.compact-btn {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.golden-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.golden-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #333;
    text-decoration: none;
}

.injection-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.injection-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    color: white;
    text-decoration: none;
}

.silver-btn {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}

.silver-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Mobile Proxy Section */
@media (max-width: 768px) {
    .section-title-enhanced {
        font-size: 2rem;
    }

    .compact-packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .compact-package-card {
        padding: 1.2rem;
    }

    .category-header {
        padding: 1.5rem;
    }

    .category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-proxy-section {
        padding: 40px 0;
    }

    .section-title-enhanced {
        font-size: 1.8rem;
    }

    .compact-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .price-display {
        text-align: center;
    }
}

/* Enhanced Datacenter Section Styles */
.enhanced-datacenter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--main-colur) 0%, #7c5fd9 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.enhanced-datacenter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.datacenter-header {
    position: relative;
    z-index: 2;
}

.datacenter-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.datacenter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 3rem;
}

/* Datacenter Features Grid */
.datacenter-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.datacenter-feature-card {
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.datacenter-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.datacenter-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.datacenter-feature-card:hover .feature-icon {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.feature-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tags .tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Enhanced Use Cases Section */
.enhanced-use-cases-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.use-cases-header {
    position: relative;
    z-index: 2;
}

.use-cases-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--main-colur);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.use-cases-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 3rem;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(40, 167, 69, 0.2);
    border-color: #28a745;
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.use-case-content h3 {
    color: var(--main-colur);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.use-case-content h4 {
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.use-case-content p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.use-case-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #495057;
    display: flex;
    align-items: center;
}

.use-case-features li i {
    color: #28a745;
    margin-right: 0.8rem;
    font-size: 1rem;
}

/* Enhanced Features Section */
.enhanced-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.features-header {
    position: relative;
    z-index: 2;
}

.features-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--main-colur);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.features-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 3rem;
}

/* Features Showcase */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-showcase-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffc107, #ffed4e);
}

.feature-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
}

.feature-showcase-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc107, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #333;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.feature-showcase-content h3 {
    color: var(--main-colur);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-showcase-content p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Feature Stats */
.feature-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--main-colur);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 0.3rem;
}

/* Responsive Design for Enhanced Sections */
@media (max-width: 768px) {
    .datacenter-title,
    .use-cases-title,
    .features-title {
        font-size: 2.2rem;
    }

    .datacenter-features-grid,
    .use-cases-grid,
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .datacenter-feature-card,
    .use-case-card,
    .feature-showcase-card {
        padding: 2rem;
    }

    .feature-icon,
    .use-case-icon,
    .feature-showcase-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .enhanced-datacenter-section,
    .enhanced-use-cases-section,
    .enhanced-features-section {
        padding: 60px 0;
    }

    .datacenter-title,
    .use-cases-title,
    .features-title {
        font-size: 1.8rem;
    }

    .datacenter-feature-card,
    .use-case-card,
    .feature-showcase-card {
        padding: 1.5rem;
    }

    .feature-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
