:root {
    --primary: #6b21a8; /* Deep Purple */
    --primary-light: #a855f7;
    --accent: #ec4899; /* Pink highlight */
    --bg-dark: #0f172a;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.95);
    --grad: linear-gradient(135deg, #6b21a8 0%, #4c1d95 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body { background-color: #f8fafc; color: var(--text-main); line-height: 1.6; }

/* Typography */
h1, h2, h3 { font-weight: 800; color: #1e1b4b; }
.purple-grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(107, 33, 168, 0.05);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 2rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--primary); }

/* Pricing UI */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 33, 168, 0.1);
}

.card.popular {
    border: 2px solid var(--primary);
}

.badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--grad);
    color: white;
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    transform: rotate(45deg) translate(30%, -20%);
    font-weight: bold;
}

/* Toggle Switch */
.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.switch {
    width: 60px;
    height: 30px;
    background: #ddd;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}

.switch .dot {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px; left: 3px;
    transition: 0.3s;
}

.switch.active { background: var(--primary); }
.switch.active .dot { left: 33px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    text-align: center;
    width: 100%;
    margin-top: 1.5rem;
}

.btn-primary { background: var(--grad); color: white; }
.btn-primary:hover { opacity: 0.9; transform: scale(1.02); }

/* Skeleton Loader */
.skeleton {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 10px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}
.btn-tab, .btn-cycle {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-tab:hover, .btn-cycle:hover {
    background: var(--primary-light);
    color: white;
}

.active-btn {
    background: var(--primary) !important;
    color: white !important;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}






.main-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 5px 0;
}

.main-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
}

.billing-note {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.btn-order {
    background: #0284c7; /* Sky Blue like image */
    color: white;
    text-decoration: none;
    padding: 12px 0;
    display: block;
    border-radius: 8px;
    font-weight: 700;
    margin: 20px 0;
    transition: 0.3s;
}


.promo-banner {
    background: #ef4444; /* Bright Red */
    color: white;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.btn-order {
    background: linear-gradient(to right, #0284c7, #0369a1);
    box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(2, 132, 199, 0.4);
}

.save-badge {
    background: #10b981; /* Green color from reference */
    color: white;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 8px;
}

.was-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 0.95rem;
    margin-bottom: -5px;
}

.billing-info {
    font-size: 0.85rem;
    color: #6b21a8;
    background: #f3e8ff;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 10px;
}

.btn-signup {
    display: block;
    background: #0284c7;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin: 20px 0;
}
@keyframes shine {
    to { background-position-x: -200%; }
}





:root {
    --primary-blue: #0085cf;
    --dark-blue: #005a8d;
    --accent-orange: #ff9d00;
    --bg-light: #f4f7f9;
    --text-dark: #333;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section with Reference Image Background Style */
.hero-section {
    background: linear-gradient(135deg, #0099e5 0%, #0077b6 100%);
    color: white;
    padding: 60px 0 100px 0;
    text-align: center;
    clip-path: ellipse(150% 100% at 50% 0%); /* Creates the slight curve at bottom */
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section h1 span {
    color: #fff;
}

.hero-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Attractive Countdown Design */
.attractive-countdown {
    background: rgba(0, 0, 0, 0.8);
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 12px;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


/* --- Seasonal Hero Styles --- */
.hero-section.seasonal-hero {
    /* To change the theme, just replace this image URL */
    background: linear-gradient(135deg, rgba(0, 153, 229, 0.85) 0%, rgba(107, 33, 168, 0.85) 100%), 
                url('https://images.unsplash.com/photo-1483921020237-2ff51e8e4b22?auto=format&fit=crop&q=80&w=1920'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    position: relative;
}

/* Offer Badge Style */
.offer-badge {
    background: var(--accent-pink);
    color: white;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Ensure countdown stands out against the image */
.attractive-countdown {
    background: rgba(15, 23, 42, 0.9) !important; /* Darker navy with transparency */
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}


/* Container to manage the glow and position */
.seasonal-offer-container {
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
    z-index: 10;
}

/* The Glowing Background Layer */
.winter-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, rgba(107, 33, 168, 0) 70%);
    filter: blur(15px);
    z-index: -1;
    animation: glow-pulse 3s infinite alternate;
}

/* The Main Badge */
.offer-badge-premium {
    background: rgba(255, 255, 255, 0.1); /* Glass effect */
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.offer-text {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Animated Snowflakes */
.snow-icon {
    color: #00d2ff;
    font-size: 1.2rem;
    animation: spin-snow 4s linear infinite;
}

/* Animations */
@keyframes glow-pulse {
    from { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes spin-snow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Fix for horizontal scroll issues identified in mobile view */
.hero-section {
    max-width: 100%;
    overflow: hidden;
}
.time-block {
    text-align: center;
    min-width: 60px;
}

.time-block span {
    font-size: 32px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.time-block small {
    font-size: 10px;
    letter-spacing: 1px;
    opacity: 0.7;
}

.time-separator {
    font-size: 24px;
    font-weight: bold;
    margin-top: -15px;
}

.hurry-text {
    color: var(--accent-orange);
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Controls Styling */
.controls-wrapper {
    margin-top: 40px;
}

.btn-tab, .btn-cycle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-tab:hover, .btn-cycle:hover {
    background: white;
    color: var(--primary-blue);
}

/* Pricing Grid Separation */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: -60px; /* Overlaps the hero section */
    padding-bottom: 60px;
}

/* Modern Card Design */
.card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
    transition: transform 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
}

.card.popular {
    border: 2px solid var(--primary-blue);
}

/* Pricing UI tweaks to match reference */
.save-badge {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

.btn-signup {
    background: var(--primary-blue) !important;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 1.8rem; }
    .pricing-grid { grid-template-columns: 1fr; margin-top: 20px; }
    .hero-section { clip-path: none; padding-bottom: 40px; }
    .attractive-countdown { padding: 10px 15px; gap: 8px; }
    .time-block span { font-size: 24px; }
    .time-block { min-width: 40px; }
}

/* Container for the WHMCS description */
.specs ul, .features-list ul {
    list-style: none; /* Removes the default dots */
    padding: 0;
    margin: 20px 0;
    text-align: left; /* Aligns text to the left for better readability */
}

.specs ul li, .features-list ul li {
    position: relative;
    padding-left: 30px; /* Space for the icon */
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.4;
    border-bottom: 1px solid #f1f5f9; /* Optional: adds a subtle separator line */
    padding-bottom: 8px;
}

/* Adding a Custom Designed Bullet/Icon */
.specs ul li::before, .features-list ul li::before {
    content: '✓'; /* You can also use a FontAwesome icon code here */
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #e0f2fe; /* Light blue background for the icon */
    color: #0284c7; /* Darker blue checkmark */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Special styling for the last item to remove the border */
.specs ul li:last-child, .features-list ul li:last-child {
    border-bottom: none;
}


/* ===== MOBILE MENU (FINAL CLEAN VERSION) ===== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    cursor: pointer;
    z-index: 1101;
}

.hamburger span {
    height: 3px;
    background: #1e293b;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        width: 280px;
        height: 150vh;
        background: white;
        flex-direction: column;
        padding: 50px 25px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        z-index: 1100;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #e2e8f0;
        font-size: 1.05rem;
    }

    /* Hamburger → X */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}


/* --- Dropdown Logic --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 3000;
    top: 100%;
    left: 0;
    padding: 10px 0;
    border: 1px solid #e2e8f0;
}

/* Show on Hover (Desktop) */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-content {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

.dropdown-content a {
    color: var(--text-main) !important;
    padding: 12px 20px !important;
    margin: 0 !important;
    display: block !important;
    font-size: 0.9rem !important;
    border-bottom: none !important;
}

.dropdown-content a:hover {
    background-color: #f8fafc;
    color: var(--primary) !important;
}

.drop-trigger i.fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: 0.3s;
}

/* --- Mobile Dropdown Fix --- */
@media (max-width: 991px) {
    .dropdown {
        width: 100%;
    }
    .dropdown-content {
        position: static;
        display: none; /* We toggle this with JS or keep it simple */
        box-shadow: none;
        background: transparent;
        padding-left: 20px;
        border: none;
    }
    /* Simple mobile fix: show sub-items when menu is open */
    .nav-links.active .dropdown-content {
        display: block;
    }
    .drop-trigger {
        font-weight: 700 !important;
        color: var(--primary) !important;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Optional: slight shadow on logo for better contrast on mobile */
@media (max-width: 768px) {
    .logo {
        font-size: 1.4rem;
        z-index: 1100;
    }
}


/* Currency selector in navigation */
.nav-currency-selector {
    margin: 2rem 0 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(107, 33, 168, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.currency-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

#currency-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    min-width: 140px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b21a8' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: all 0.2s;
}

#currency-select:hover,
#currency-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
    outline: none;
}

/* Desktop - show currency selector in nav (optional) */
@media (min-width: 769px) {
    .nav-currency-selector {
        margin: 0 0 0 2rem;
        border-top: none;
        padding: 0;
    }
    
    .nav-links {
        align-items: center;
    }
}

/* Mobile - make it look nice in slide menu */
@media (max-width: 768px) {
    .nav-currency-selector {
        margin: 2.5rem 0 1.5rem;
        padding: 1.2rem 0;
        border-top: 1px solid rgba(107, 33, 168, 0.15);
        border-bottom: 1px solid rgba(107, 33, 168, 0.15);
    }
    
    #currency-select {
        flex: 1;
        max-width: 180px;
    }
}


/* Logo image styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;                /* Adjust this height to fit your design nicely */
    width: auto;                 /* Keeps aspect ratio */
    max-height: 60px;            /* Prevent it from getting too big on large screens */
    object-fit: contain;         /* Ensures logo isn't distorted */
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);      /* Subtle hover effect */
}

/* Make sure it looks good on mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 42px;            /* Slightly smaller on mobile */
        max-height: 50px;
    }
    
    .logo {
        z-index: 1100;           /* Stays above overlay menu */
    }
}


/* --- Professional Footer Styles --- */
.main-footer {
    background: #0f172a; /* Dark Navy from your config */
    color: #cbd5e1;
    padding: 80px 0 0 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons,
    .payment-methods {
        justify-content: center;
    }
}


.footer-logo {
    height: 45px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes logo white for dark bg */
}

.footer-column h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

/* Social & Payments */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    color: #94a3b8;
    margin-top: 15px;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: #020617;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons, .payment-methods {
        justify-content: center;
    }
}

/* ================= ADVANCED FEATURES ================= */
.advanced-features {
    background: #f8fafc;
    padding: 80px 0;
}

.features-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-col ul {
    list-style: none;
    padding: 0;
}

.feature-col ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.feature-col ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
}


/* ================= SECURITY & TRUST SECTIONS ================= */
.security-section {
    background: #ffffff;
    padding: 80px 0;
}

.security-card, .trust-card {
    background: #fdfaff; /* Light purple tint */
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s ease;
    border: 1px solid #f3e8ff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(107, 33, 168, 0.1);
    background: #ffffff;
    border-color: var(--primary);
}

.security-card i, .trust-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.security-card h5, .trust-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.security-card p, .trust-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* ================= TRUST BADGES (DARK THEME) ================= */
.trust-badges-lg {
    background: #0f172a; /* Dark Navy Background */
    color: white;
    padding: 80px 0;
}

.trust-badges-lg .trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges-lg .trust-card i {
    color: #a855f7; /* Lighter Purple for visibility */
}

.trust-badges-lg .trust-card h4 {
    color: #ffffff;
}

.trust-badges-lg .trust-card p {
    color: #94a3b8;
}

/* Responsive Layout: Desktop 2 Columns */
@media (min-width: 768px) {
    /* Bootstrap col-md-6 will handle the 2-column layout automatically */
}

@media (max-width: 991px) {
    .feature-col {
        border-bottom: 1px solid #f1f5f9;
        padding: 20px 0;
    }
    .feature-col:last-child {
        border-bottom: none;
    }
}


/* --- Global Fix for Horizontal Scroll --- */
html, body {
    overflow-x: hidden; /* Prevents horizontal scrolling */
    width: 100%;
    position: relative;
}

/* --- Mobile Menu Fix --- */
/* --- 1. Essential Global Fix --- */
html, body {
    overflow-x: hidden; /* Prevents horizontal scrolling */
    width: 100%;
    position: relative;
}

/* --- 2. Corrected Mobile Menu --- */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0; /* Base position is 0 */
        transform: translateX(100%); /* Move it completely off-screen */
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 80px 30px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother slide */
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 2500;
        visibility: hidden; /* Fully hidden until active */
    }

    .nav-links.active {
        transform: translateX(0); /* Slide in */
        visibility: visible;
    }
}

/* --- Features Grid Fix --- */


/* Mobile: 1 column | Desktop: 2 columns */
@media (min-width: 768px) {
    .feature-col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .feature-col {
        flex: 0 0 100%;
        max-width: 100%;
        border-bottom: 1px solid #eee;
        padding: 20px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr !important;
        padding: 10px;
    }
}

/* --- Security Card Fix --- */
.security-card {
    height: 100%;
    margin-bottom: 20px;
}

/* Specific styling for VPS page restrictions */
.disabled-vps-plan {
    opacity: 0.75;
}

.disabled-vps-plan .main-price, 
.disabled-vps-plan .billing-info, 
.disabled-vps-plan .btn-signup {
    display: none !important;
}

.disabled-vps-plan .specs {
    filter: blur(0.5px);
    pointer-events: none;
}