    @keyframes borderGlow {
        0% { opacity: 0; width: 0; left: 0; }
        50% { opacity: 1; width: 100%; }
        100% { opacity: 0; width: 0; left: 100%; }
    }
    
    .feature-highlight:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 20px rgba(0,212,255,0.3) !important;
        border-left: 3px solid #00d4ff !important;
        background: rgba(0,50,80,0.6) !important;
    }
    
    .feature-highlight:hover i {
        animation: pulse 1s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    /* Mobile-specific fixes */
    @media (max-width: 767px) {
        .maintextbg2 {
            padding: 25px 15px !important;
        }
        
        .feature-highlight {
            padding: 12px 8px !important;
        }
        
        .feature-highlight h4 {
            font-size: 13px !important;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .feature-highlight p {
            font-size: 10px !important;
            white-space: nowrap;
        }
        
        .trust-item {
            min-width: 60px !important;
        }
        
        .trust-number {
            font-size: 18px !important;
        }
        
        .trust-label {
            font-size: 10px !important;
        }
        
        /* Fix for description text */
        .text16.w400 p {
            font-size: 13px !important;
            line-height: 1.4 !important;
            margin-bottom: 10px !important;
        }
        
        /* Make badges more compact */
        .text16.w400 span {
            font-size: 12px !important;
            padding: 2px 6px !important;
            margin-right: 3px;
        }
    }
    
    /* Small mobile devices */
    @media (max-width: 480px) {
        .feature-highlight {
            padding: 10px 5px !important;
        }
        
        .feature-highlight i {
            font-size: 20px !important;
            margin-bottom: 5px !important;
        }
        
        .feature-highlight h4 {
            font-size: 12px !important;
        }
        
        .trust-item {
            min-width: 50px !important;
        }
        
        .trust-number {
            font-size: 16px !important;
        }
        
        .trust-label {
            font-size: 9px !important;
        }
        
        /* Stack metrics vertically on very small screens */
        .d-flex {
            flex-direction: column !important;
            gap: 8px !important;
            border-radius: 20px !important;
        }
    }
	/* ========================================================================
   OPTIONS & OPERATING SYSTEM SECTION - CLOUD VPS PAGE
   ======================================================================== */

/* ===== VARIABLES ===== */
:root {
    /* UNDERHOST Brand Colors */
    --uh-navy: #0D1F3C;
    --uh-blue: #176ea5;
    --uh-blue-dark: #125a8a;
    --uh-cyan: #0099cc;
    --uh-success: #16a34a;
    --uh-muted: #6b7280;
    --uh-text: #1f2937;
    --uh-border: #e5e7eb;
    --uh-bg: #f6f8fb;
    --uh-card: #ffffff;
}

/* ===== SECTION HEADER ===== */
.section-header {
    position: relative;
    padding: 30px 0 20px;
    margin-bottom: 30px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, rgba(23,110,165,0.1), rgba(23,110,165,0.15));
    color: var(--uh-blue);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(23,110,165,0.2);
    box-shadow: 0 4px 12px rgba(23,110,165,0.08);
}

.highlight-text {
    background: linear-gradient(90deg, var(--uh-blue), var(--uh-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--uh-blue), var(--uh-cyan));
    border-radius: 2px;
}

.feature-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 8px 18px;
    background: var(--uh-card);
    color: var(--uh-text);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--uh-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.feature-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-color: var(--uh-blue);
    color: var(--uh-blue);
}

.feature-tag::before {
    content: '✓';
    margin-right: 6px;
    color: var(--uh-success);
    font-weight: 900;
    font-size: 12px;
}

/* ===== MODERN FEATURE CARDS ===== */
.modern-feature-card {
    background: var(--uh-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(13, 31, 60, 0.08);
    border: 1px solid var(--uh-border);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 31, 60, 0.12);
}

.card-header {
    background: linear-gradient(145deg, #b0c4de, #0091d6, #434cc5, #87a8c4);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: #fff;
    padding: 20px 25px;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    opacity: 0.2;
}

.card-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 5px 0;
    color: #fff;
}

.card-subtitle {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.card-body {
    padding: 0;
}

.feature-list {
    padding: 0;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--uh-border);
    transition: background-color 0.2s ease;
}

.feature-item:hover {
    background-color: var(--uh-bg);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item.featured {
    background: rgba(22, 163, 74, 0.03);
    border-left: 2px solid var(--uh-success);
}

.feature-item.premium {
    background: linear-gradient(to right, rgba(255, 152, 0, 0.03), rgba(255, 152, 0, 0.01));
    border-left: 2px solid #ff9800;
}

.feature-info {
    flex: 1;
    padding-right: 15px;
}

.feature-name {
    font-weight: 700;
    color: var(--uh-text);
    font-size: 15px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.feature-name i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

.feature-description {
    font-size: 13px;
    color: var(--uh-muted);
    line-height: 1.4;
    margin-left: 28px;
}

.feature-price {
    text-align: right;
    flex-shrink: 0;
    min-width: 90px;
}

.price-tag {
    font-size: 18px;
    font-weight: 900;
    color: var(--uh-blue);
    display: block;
    line-height: 1.2;
}

.price-tag-free {
    font-size: 16px;
    font-weight: 900;
    color: var(--uh-success);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-period {
    font-size: 12px;
    color: var(--uh-muted);
    font-weight: 500;
    display: block;
}

/* ===== BADGES ===== */
.badge-unlimited {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(23, 110, 165, 0.08);
    color: var(--uh-blue);
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
    margin: 0 2px;
    border: 1px solid rgba(23, 110, 165, 0.1);
    white-space: nowrap;
}

/* Color variants for badges */
.badge-unlimited[style*="background: rgba(22,163,74,0.1)"] {
    color: #16a34a !important;
    background: rgba(22,163,74,0.1) !important;
    border-color: rgba(22,163,74,0.2) !important;
}

.badge-unlimited[style*="background: rgba(255,193,7,0.1)"] {
    color: #ff9800 !important;
    background: rgba(255,193,7,0.1) !important;
    border-color: rgba(255,193,7,0.2) !important;
}

.badge-unlimited[style*="background: rgba(23,110,165,0.05)"] {
    background: rgba(23,110,165,0.05) !important;
    color: var(--uh-blue-dark) !important;
}

/* ===== OS LIST STYLES - NEW list-option CLASS ===== */
.list-option {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-option li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    border-bottom: 1px dashed #e1e1e1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.list-option li:last-child {
    border-bottom: none;
}

.list-option li i.fa-circle {
    font-size: 8px;
    margin-right: 12px;
    vertical-align: middle;
    color: var(--uh-blue);
}

.list-option .badge-unlimited {
    margin-left: 5px;
}

/* Windows list specific */
.list-option li i.fa-circle[style*="color: #00a4ef"] {
    color: #00a4ef !important;
}

/* ===== BUTTONS ===== */
.btn-order {
    display: inline-block;
    padding: 15px 40px;
    color: #fff;
    background: linear-gradient(90deg, var(--uh-blue), var(--uh-cyan));
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(23,110,165,0.3);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(23,110,165,0.4);
    color: #fff;
    text-decoration: none;
}

/* ===== WOW ANIMATIONS ===== */
.wow {
    visibility: hidden;
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .text50 { font-size: 42px !important; }
    .text32 { font-size: 28px !important; }
    
    .feature-tag {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    .price-tag {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .text50 { font-size: 32px !important; }
    .text32 { font-size: 24px !important; }
    
    .section-header {
        padding: 20px 0 15px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .feature-tag {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .feature-tags {
        gap: 10px;
    }
    
    .modern-feature-card {
        margin-bottom: 20px;
    }
    
    .card-header {
        padding: 15px 20px;
    }
    
    .header-icon {
        top: 15px;
        right: 20px;
        font-size: 24px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    
    .feature-info {
        padding-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .feature-description {
        margin-left: 0;
    }
    
    .feature-price {
        text-align: left;
        width: 100%;
        margin-left: 0;
    }
    
    .price-tag, .price-tag-free {
        display: inline-block;
        margin-right: 5px;
    }
    
    .price-period {
        display: inline-block;
    }
    
    .badge-unlimited {
        font-size: 10px;
        padding: 2px 6px;
        margin: 2px 1px;
    }
    
    .btn-order {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .list-option li {
        font-size: 13px;
        padding: 6px 0;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .text50 { font-size: 28px !important; }
    .text32 { font-size: 22px !important; }
    
    .feature-tag {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .badge-unlimited {
        display: inline-block;
        margin: 2px 1px;
    }
    
    .list-option li {
        font-size: 12px;
    }
}

/* Tablet improvements */
@media (min-width: 768px) and (max-width: 991px) {
    .feature-tags {
        gap: 12px;
    }
    
    .feature-item {
        padding: 12px 15px;
    }
    
    .badge-unlimited {
        font-size: 10px;
        padding: 2px 6px;
    }
}
/* Additional hover effects for feature cards */
.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(0,212,255,0.3) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
}

.feature-card:hover .icon-box {
    background: rgba(0,212,255,0.15) !important;
    transform: scale(1.05);
    border-color: rgba(0,212,255,0.4) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text50 {
        font-size: 32px !important;
    }
    
    .text30 {
        font-size: 24px !important;
    }
    
    .text18 {
        font-size: 16px !important;
    }
    
    .feature-card {
        margin-bottom: 20px;
        padding: 25px 15px !important;
    }
    
    .icon-box {
        width: 80px !important;
        height: 80px !important;
    }
    
    .icon-box img {
        max-width: 45px !important;
    }
}

/* Panel Card Hover Effects */
.panel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1) !important;
    border-color: transparent !important;
}

.panel-card:hover .btn-blue2 {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
}

/* Custom Panel Hover */
.custom-panel-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(110,37,133,0.15);
    border-style: solid !important;
    border-color: #6e2585 !important;
}

/* Button Hover Effects */
.btn-blue2 {
    transition: all 0.3s ease !important;
}

.btn-blue2:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .panel-card {
        margin-bottom: 25px;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .custom-panel-option {
        padding: 30px 20px !important;
    }
    
    .text50 {
        font-size: 32px !important;
    }
    
    .text18 {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .panel-card {
        max-width: 300px;
    }
    
    .custom-panel-option h3 {
        font-size: 24px !important;
    }
}
/* CTA Button Hover Effect */
.btn-cta-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(0,212,255,0.4) !important;
    background: linear-gradient(135deg, #1ad8ff, #1a88ff) !important;
}

.btn-cta-support:hover i:last-child {
    transform: translateX(5px);
}

.btn-cta-support i:last-child {
    transition: transform 0.3s ease;
}

/* Support Card Hover Effect */
.supporttextholder {
    transition: transform 0.4s ease;
}

.supporttextholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 60px rgba(0,0,0,0.4) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .supporttextholder {
        padding: 30px 20px !important;
    }
    
    .text40 {
        font-size: 32px !important;
    }
    

    .text22 {
        font-size: 18px !important;
    }
    
    .btn-cta-support {
        width: 100%;
        justify-content: center;
        padding: 14px 25px !important;
        font-size: 16px !important;
    }
    
    .supporttextholder div[style*="display: flex; gap: 30px;"] {
        flex-direction: column;
        gap: 15px !important;
    }
}
