/* =====================================================
   CYBER SERVER SEA - NEXT GEN PREMIUM CLOUD THEME
   Colors: #7C3AED (Electric Violet) | #06B6D4 (Cyan) | #020617 (Void)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Brand Colors */
    --primary: #7C3AED;
    /* Electric Violet */
    --primary-light: #A78BFA;
    --primary-dark: #5B21B6;

    --secondary: #06B6D4;
    /* Cyan */
    --secondary-light: #67E8F9;
    --secondary-dark: #0891B2;

    --accent: #F43F5E;
    /* Rose (for notifications/badges) */

    /* Backgrounds */
    --bg-main: #020617;
    /* Deepest Slate */
    --bg-surface: #0F172A;
    /* Slate 900 */
    --bg-surface-light: #1E293B;
    /* Slate 800 */

    /* Text */
    --text-main: #F8FAFC;
    /* Slate 50 */
    --text-body: #94A3B8;
    /* Slate 400 */
    --text-muted: #64748B;
    /* Slate 500 */

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    --grad-secondary: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
    --grad-glow: linear-gradient(180deg, rgba(124, 58, 237, 0.15) 0%, transparent 100%);
    --grad-surface: linear-gradient(145deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.6) 100%);

    /* UI Elements */
    --border-color: rgba(148, 163, 184, 0.1);
    --border-hover: rgba(124, 58, 237, 0.5);
    --glass: rgba(15, 23, 42, 0.7);
    --glass-blur: blur(12px);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-neon: 0 0 20px rgba(124, 58, 237, 0.3);

    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis,
html.lenis body {
    height: auto;
}

html {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: var(--grad-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(124, 58, 237, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.23);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-desc {
    color: var(--text-body);
    font-size: 1.125rem;
}

/* ==================== HEADER & NAV ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    height: 45px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: none;
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
        gap: 2.5rem;
    }
}

.nav-link {
    color: var(--text-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.nav-cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-btn {
    position: relative;
    padding: 0.5rem;
    color: var(--text-main);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

/* Phone nav styles omitted for brevity, utilizing simple show/hide js */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-main);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    font-size: 1.25rem;
    font-weight: 600;
}

/* ==================== MEGA DROPDOWN ==================== */
.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown>.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-item.has-dropdown>.nav-link svg {
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover>.nav-link svg {
    transform: rotate(180deg);
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 600px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(10, 15, 30, 0.98));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 24px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow:
        0 25px 60px -12px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(124, 58, 237, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid rgba(124, 58, 237, 0.3);
}

.nav-item.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.mega-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.mega-item:hover {
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

.mega-item:hover::before {
    opacity: 1;
}

.mega-item:nth-child(5) {
    grid-column: 1 / -1;
    justify-content: center;
    max-width: 50%;
    margin: 0 auto;
}

.mega-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.mega-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-item:hover .mega-icon::after {
    opacity: 1;
}

.mega-icon.wordpress {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(139, 92, 246, 0.1));
    color: #A78BFA;
}

.mega-icon.shared {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
    color: #34D399;
}

.mega-icon.reseller {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
    color: #FBBF24;
}

.mega-icon.dedicated {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(248, 113, 113, 0.1));
    color: #F87171;
}

.mega-icon.vps {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(244, 114, 182, 0.1));
    color: #F472B6;
}

.mega-item:hover .mega-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 25px -5px currentColor;
}

.mega-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
    z-index: 1;
}

.mega-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.mega-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: space-between;
}

.mobile-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-toggle svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none !important;
    padding-left: 1rem;
    padding-top: 1rem;
    flex-direction: column;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.open .mobile-submenu {
    display: flex !important;
    max-height: 500px;
}

.mobile-submenu a {
    font-size: 1rem !important;
    color: var(--text-body);
}

.mobile-submenu a:hover {
    color: var(--secondary);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.15), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1), transparent 40%);
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-item h4,
.hero-stat-value {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-stack {
    position: relative;
    width: 280px;
    height: 360px;
    transform: perspective(1000px) rotateY(-15deg);
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.layer {
    position: absolute;
    width: 100%;
    height: 60px;
    background: var(--bg-surface-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-neon);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    justify-content: space-between;
}

.layer:nth-child(1) {
    top: 0;
    z-index: 3;
}

.layer:nth-child(2) {
    top: 80px;
    z-index: 2;
    opacity: 0.9;
}

.layer:nth-child(3) {
    top: 160px;
    z-index: 1;
    opacity: 0.8;
}

.status-light {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary);
    animation: pulse 2s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-15deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-15deg) translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ==================== SERVICES GRID ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--grad-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-neon);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-body);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.service-link {
    color: var(--secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ==================== WORDPRESS SECTION ==================== */
.wp-section {
    background: linear-gradient(to bottom, var(--bg-main), var(--bg-surface));
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.wp-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.wp-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.wp-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--secondary);
    border-radius: 50%;
    color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ==================== WHY CHOOSE US ==================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: transparent;
}

.feature-box .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--bg-surface-light), var(--bg-main));
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    background: url('../images/map-grid.png') no-repeat center center;
    background-size: contain;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-surface-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    border-left: 4px solid var(--primary);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
}

/* ==================== CTA SECTION ==================== */
.cta-box {
    background: var(--grad-primary);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,...');
    /* Add a pattern here later if needed */
    opacity: 0.1;
}

.cta-box h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
}

.cta-btn {
    background: white;
    color: var(--primary);
}

.cta-btn:hover {
    background: var(--bg-surface);
    color: white;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* Footer Contact Section */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.footer-contact span {
    color: var(--text-muted);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==================== ANIMATION UTILITIES ==================== */
.service-card,
.feature-box,
.testimonial-card,
.cta-box {
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Selection color */
::selection {
    background: var(--primary);
    color: white;
}

/* Glow effects for interactive elements */
.btn-primary:hover,
.cta-btn:hover {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5), 0 0 60px rgba(124, 58, 237, 0.3);
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.25);
}

/* Status light pulse animation */
.status-light {
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--secondary);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 20px var(--secondary);
    }
}

/* Layer float animation */
.layer {
    animation: layerFloat 3s ease-in-out infinite;
}

.layer:nth-child(2) {
    animation-delay: 0.5s;
}

.layer:nth-child(3) {
    animation-delay: 1s;
}

@keyframes layerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Text gradient shimmer */
.text-gradient {
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Card glow on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

/* ==================== MODERN FOOTER ==================== */
.footer-modern {
    position: relative;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface) 100%);
    padding: 5rem 0 2rem;
    overflow: hidden;
}

/* Footer Glow Orbs */
.footer-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.footer-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(124, 58, 237, 0.15);
    top: -100px;
    left: -100px;
}

.footer-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.1);
    bottom: -50px;
    right: -50px;
}

.footer-main,
.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {

    .footer-main,
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.footer-brand-col {
    max-width: 350px;
    opacity: 1;
    visibility: visible;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.social-icon:hover {
    background: var(--grad-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col {
    display: block;
    opacity: 1;
    visibility: visible;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-heading svg {
    color: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 3rem 0 2rem;
}

/* Footer Bottom */
.footer-bottom-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal-links a {
    color: var(--text-muted);
}

.footer-legal-links a:hover {
    color: var(--secondary);
}

.divider-dot {
    color: var(--border-color);
}

@media (max-width: 768px) {
    .footer-bottom-modern {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== PARALLAX SCROLL EFFECTS ==================== */
.section {
    position: relative;
    overflow: hidden;
}

/* Section Background Accent for Scroll Effect */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* Scroll Reveal Classes (used by GSAP) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

/* Sticky Section Title Effect */
.sticky-section-title {
    position: sticky;
    top: 100px;
    z-index: 10;
}

/* Scale on Scroll Effect */
.scale-on-scroll {
    transition: transform 0.5s ease;
}

/* Parallax Background */
.parallax-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* ==================== ILLUSTRATIONS ==================== */
.hero-illustration {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.illustration-main,
.illustration-why {
    width: 100%;
    height: auto;
}

/* SVG Animations */
.server-light {
    animation: serverPulse 2s ease-in-out infinite;
}

@keyframes serverPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.connection-line {
    animation: dashMove 2s linear infinite;
}

@keyframes dashMove {
    0% {
        stroke-dashoffset: 8;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.cloud-float {
    animation: cloudFloat 4s ease-in-out infinite;
}

@keyframes cloudFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-dot {
    animation: dotFloat 3s ease-in-out infinite;
}

@keyframes dotFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(5px, -8px);
    }
}

.floating-icon {
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.check-animate {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: checkDraw 1.5s ease forwards;
    animation-delay: 0.5s;
}

@keyframes checkDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.animate-float {
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ==================== FEATURES MARQUEE SECTION ==================== */
.features-marquee-section {
    padding: 2rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    opacity: 1 !important;
    visibility: visible !important;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-main), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-main), transparent);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee-scroll 30s linear infinite;
    opacity: 1 !important;
    visibility: visible !important;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.marquee-item:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(6, 182, 212, 0.2));
}

.marquee-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==================== SERVICE CARDS ENHANCED ==================== */
.service-card.featured {
    border: 2px solid var(--primary);
    position: relative;
    overflow: visible;
    margin-top: 1.5rem;
}

.featured-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: #FFFFFF;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 100;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.service-icon-shared {
    color: #10B981;
}

.service-icon-wp {
    color: #3B82F6;
}

.service-icon-cloud {
    color: #06B6D4;
}

.service-icon-reseller {
    color: #F59E0B;
}

.service-icon-vps {
    color: #7C3AED;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-features li svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* ==================== WHY SECTION ==================== */
.why-section {
    background: var(--grad-glow);
}

.why-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-content {
    flex: 1;
}

.why-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--grad-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.why-feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.why-feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== STAT ICONS ==================== */
.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

/* ==================== TESTIMONIALS ENHANCED ==================== */
.testimonial-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.25rem;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin: 0;
}

.testimonial-author p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ==================== 3D TESTIMONIAL SLIDER ==================== */
.testimonial-slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1200px;
    padding: 2rem 0;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    height: 380px;
    transform-style: preserve-3d;
    overflow: visible;
}

.testimonial-slide {
    position: absolute;
    width: 90%;
    max-width: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.7) rotateY(0deg);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    z-index: 0;
}

.testimonial-slide.active {
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
}

.testimonial-slide.prev {
    transform: translate(-160%, -50%) scale(0.75) rotateY(30deg);
    opacity: 0.4;
    z-index: 2;
}

.testimonial-slide.next {
    transform: translate(60%, -50%) scale(0.75) rotateY(-30deg);
    opacity: 0.4;
    z-index: 2;
}

.testimonial-slide.far-prev {
    transform: translate(-200%, -50%) scale(0.5) rotateY(50deg);
    opacity: 0;
    z-index: 1;
}

.testimonial-slide.far-next {
    transform: translate(100%, -50%) scale(0.5) rotateY(-50deg);
    opacity: 0;
    z-index: 1;
}

.testimonial-slide .testimonial-card {
    height: 100%;
    background: var(--grad-surface);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-slide.active .testimonial-card {
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.2);
}

/* Slider Controls - Modern Style */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.slider-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.slider-btn:hover::before {
    opacity: 1;
}

.slider-btn svg {
    position: relative;
    z-index: 1;
}

.slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.slider-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(124, 58, 237, 0.5);
}

.slider-dot.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
}

.slider-dot.active::before {
    border-color: rgba(124, 58, 237, 0.3);
}

@media (max-width: 768px) {
    .testimonial-slider {
        height: 420px;
    }

    .testimonial-slide {
        width: 95%;
    }

    .testimonial-slide.prev,
    .testimonial-slide.next {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.7);
    }

    .testimonial-slide.prev {
        transform: translate(-90%, -50%) scale(0.7);
    }

    .testimonial-slide.next {
        transform: translate(-10%, -50%) scale(0.7);
    }

    .testimonial-slide.far-prev,
    .testimonial-slide.far-next {
        opacity: 0;
    }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding-top: 0;
}

.cta-box {
    position: relative;
    background: var(--grad-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-body);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==================== NEWSLETTER ==================== */
.footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 3rem;
    flex-wrap: wrap;
}

.newsletter-content h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.newsletter-content h3 svg {
    color: var(--secondary);
}

.newsletter-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    background: var(--bg-surface-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1rem;
    min-width: 280px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

/* ==================== FOOTER ENHANCED ==================== */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    padding: 3rem 0;
}

@media (max-width: 992px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.footer-glow-3 {
    width: 250px;
    height: 250px;
    background: rgba(244, 63, 94, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-contact-info {
    margin: 1.5rem 0 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.contact-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary);
}

.footer-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-heading svg {
    color: var(--primary);
}

/* ==================== PAYMENT METHODS ==================== */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    flex-wrap: wrap;
    opacity: 1;
    visibility: visible;
}

.footer-payments span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    opacity: 1;
    visibility: visible;
}

.payment-icon {
    background: var(--bg-surface-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.payment-icon svg {
    display: block;
    opacity: 1;
}

.payment-icon:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-box h2 {
        font-size: 1.75rem;
    }

    .why-illustration {
        display: none;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== ABOUT PAGE STYLES ==================== */
.about-hero {
    min-height: 80vh;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1), transparent 40%);
    overflow: hidden;
}

.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-hero-desc {
    font-size: 1.2rem;
    color: var(--text-body);
    max-width: 550px;
    line-height: 1.7;
}

.about-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-illustration {
    max-width: 400px;
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .about-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-desc {
        margin: 0 auto;
    }

    .about-hero-visual {
        display: none;
    }
}

/* About Intro Section */
.about-intro-section {
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-intro-text p {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.8;
}

/* About Features Grid */
.features-section {
    background: linear-gradient(180deg, var(--bg-main), var(--bg-surface));
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-feature-card {
    background: var(--grad-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.25);
}

.about-feature-card:hover::before {
    opacity: 1;
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1);
}

.about-feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.about-feature-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

/* About Company Section */
.about-company-section {
    background: var(--grad-glow);
}

.about-company-content {
    max-width: 600px;
}

.about-company-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.company-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.company-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.highlight-icon {
    width: 36px;
    height: 36px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.highlight-icon svg {
    width: 18px;
    height: 18px;
}

.about-company-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-illustration {
    max-width: 400px;
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .about-company-visual {
        display: none;
    }

    .about-company-content {
        max-width: 100%;
        text-align: center;
    }

    .company-highlights {
        justify-content: center;
    }
}

/* Services Split Section */
.services-split-section {
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-main));
}

.services-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: stretch;
}

.service-split-card {
    background: var(--grad-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-split-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
}

.service-split-card.featured {
    border: 2px solid var(--primary);
    position: relative;
    overflow: visible;
}

.service-split-card .featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.service-split-icon {
    width: 80px;
    height: 80px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-split-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-split-card>p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hosting-types-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hosting-types-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hosting-types-list li svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.hosting-types-list li strong {
    color: var(--text-main);
}

.service-split-card .service-link {
    margin-top: auto;
}

.service-split-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 992px) {
    .services-split-grid {
        grid-template-columns: 1fr;
    }

    .service-split-card.featured {
        margin-top: 1.5rem;
    }
}

/* CTA Icon */
.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

/* ==================== MODERN SERVICES BENTO GRID ==================== */
.services-modern-section {
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.08), transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.06), transparent 40%),
        linear-gradient(180deg, var(--bg-surface), var(--bg-main));
    padding: 6rem 0;
}

.services-bento-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: stretch;
}

/* Bento Card Base */
.bento-card {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(124, 58, 237, 0.15);
}

/* Bento Glow Effect */
.bento-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    pointer-events: none;
    filter: blur(40px);
    transition: all 0.5s ease;
}

.bento-card:hover .bento-glow {
    transform: scale(1.5);
    opacity: 0.8;
}

.hosting-glow {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 70%);
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    left: auto;
}

/* Shine Effect */
.bento-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.bento-card:hover .bento-shine {
    left: 100%;
}

/* Bento Content */
.bento-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Icon Wrapper */
.bento-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.bento-icon-wrapper.large {
    width: 90px;
    height: 90px;
}

.bento-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(124, 58, 237, 0.3)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.bento-icon-ring.animated {
    animation: ringRotate 8s linear infinite;
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bento-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.15));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.bento-card:hover .bento-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(6, 182, 212, 0.25));
    transform: scale(1.05);
}

/* Bento Text */
.bento-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.bento-text p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Mini Tags */
.bento-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mini-tag {
    padding: 0.35rem 0.85rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.mini-tag:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* Bento Link */
.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.bento-link svg {
    transition: transform 0.3s ease;
}

.bento-link:hover {
    color: var(--secondary-light);
}

.bento-link:hover svg {
    transform: translateX(5px);
}

/* Featured Card */
.bento-card.featured {
    border: 2px solid transparent;
    background:
        linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95)) padding-box,
        linear-gradient(135deg, #7C3AED, #06B6D4) border-box;
}

.featured-ribbon {
    position: absolute;
    top: 25px;
    right: -30px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.featured-ribbon span {
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-ribbon svg {
    color: white;
    flex-shrink: 0;
}

/* Hosting Types Grid */
.hosting-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.hosting-type-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hosting-type-item:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateX(5px);
}

.hosting-type-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hosting-type-icon.shared {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.hosting-type-icon.wordpress {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.hosting-type-icon.reseller {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
}

.hosting-type-icon.cloud {
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
}

.hosting-type-icon.dedicated {
    background: rgba(124, 58, 237, 0.15);
    color: #7C3AED;
}

.hosting-type-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hosting-type-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.hosting-type-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Glow Button */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #7C3AED, #06B6D4, #7C3AED);
    background-size: 200% 200%;
    border-radius: inherit;
    z-index: -1;
    animation: glowPulse 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
    opacity: 1;
}

@keyframes glowPulse {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .services-bento-grid {
        grid-template-columns: 1fr;
    }

    .hosting-types-grid {
        grid-template-columns: 1fr;
    }

    .featured-ribbon {
        top: 15px;
        right: -40px;
        padding: 0.4rem 2.5rem;
    }
}

@media (max-width: 640px) {
    .bento-content {
        padding: 1.5rem;
    }

    .bento-text h3 {
        font-size: 1.25rem;
    }

    .bento-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .bento-icon-wrapper.large {
        width: 70px;
        height: 70px;
    }
}

/* ==================== MODERN CTA SECTION ==================== */
.modern-cta-section {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 50% 100%, rgba(124, 58, 237, 0.1), transparent 50%),
        linear-gradient(180deg, var(--bg-main), var(--bg-surface));
}

.modern-cta-wrapper {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    border-radius: 32px;
    padding: 4rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Animated Border */
.cta-border-animation {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(90deg, #7C3AED, #06B6D4, #EC4899, #7C3AED);
    background-size: 300% 300%;
    animation: borderGradient 6s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes borderGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Background Gradient */
.cta-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.15), transparent 40%);
    pointer-events: none;
}

/* Floating Orbs */
.cta-floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: rgba(124, 58, 237, 0.3);
    top: -50px;
    left: -50px;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: rgba(6, 182, 212, 0.25);
    bottom: -30px;
    right: -30px;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: rgba(236, 72, 153, 0.2);
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -15px) scale(1.1);
    }

    50% {
        transform: translate(-10px, 20px) scale(0.9);
    }

    75% {
        transform: translate(15px, 10px) scale(1.05);
    }
}

/* CTA Content */
.modern-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Modern Icon */
.cta-icon-modern {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(6, 182, 212, 0.5)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ringRotate 10s linear infinite;
}

.cta-icon-modern svg {
    color: var(--secondary);
    z-index: 2;
}

.cta-icon-modern::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 50%;
}

/* CTA Typography */
.modern-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.modern-cta-content>p {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Stats Row */
.cta-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-stat-item:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

.cta-stat-item svg {
    color: var(--secondary);
}

.cta-stat-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.cta-stat-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Modern Buttons */
.cta-buttons-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #7C3AED, #8B5CF6);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-modern:hover .btn-shine {
    left: 100%;
}

.btn-outline-modern {
    background: transparent;
    color: var(--text-main);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-outline-modern:hover {
    border-color: var(--secondary);
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-3px);
}

.btn-outline-modern .btn-content svg {
    transition: transform 0.3s ease;
}

.btn-outline-modern:hover .btn-content svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .modern-cta-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .modern-cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-icon-modern {
        width: 80px;
        height: 80px;
    }

    .cta-icon-modern::before {
        width: 60px;
        height: 60px;
    }

    .cta-stats-row {
        gap: 0.75rem;
    }

    .cta-stat-divider {
        display: none;
    }

    .cta-stat-item {
        padding: 0.5rem 1rem;
    }
}

/* ==================== ENHANCED FEATURE CARDS ==================== */
.about-feature-card {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.8));
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.about-feature-card:hover::before {
    opacity: 1;
}

.about-feature-card:hover::after {
    left: 100%;
}

.about-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(124, 58, 237, 0.15);
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.about-feature-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-feature-card:hover .about-feature-icon::after {
    opacity: 1;
}

.about-feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.about-feature-card:hover h3 {
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-feature-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== ENHANCED COMPANY SECTION ==================== */
.about-company-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(180deg, var(--text-main) 0%, rgba(248, 250, 252, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.company-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, #7C3AED, #06B6D4) 1;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
}

/* ==================== MODERN SERVICES SECTION ==================== */
.modern-services-section {
    background:
        radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.1), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08), transparent 40%);
}

.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.modern-service-card {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.85));
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.modern-service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(124, 58, 237, 0.1);
}

.modern-service-card:hover::before {
    opacity: 1;
}

.modern-service-card:hover::after {
    left: 100%;
}

/* Featured Service Card */
.featured-service {
    grid-column: span 1;
    grid-row: span 1;
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.15), rgba(15, 23, 42, 0.9));
    border-color: rgba(124, 58, 237, 0.2);
}

.featured-service .service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 50%);
    pointer-events: none;
}

.featured-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #7C3AED, #8B5CF6);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    z-index: 10;
}

.featured-tag svg {
    flex-shrink: 0;
}

/* Service Icon Modern */
.service-icon-modern {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon-modern::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-service-card:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.modern-service-card:hover .service-icon-modern::after {
    opacity: 1;
}

/* Icon Color Variants */
.service-icon-modern.wordpress {
    background: rgba(124, 58, 237, 0.15);
    color: #8B5CF6;
}

.service-icon-modern.shared {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.service-icon-modern.reseller {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
}

.service-icon-modern.cloud {
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
}

.service-icon-modern.dedicated {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
}

.service-icon-modern.vps {
    background: rgba(236, 72, 153, 0.15);
    color: #EC4899;
}

/* Card Typography */
.modern-service-card h3 {
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.modern-service-card:hover h3 {
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-service-card>p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

/* Features Mini List */
.service-features-mini {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-features-mini li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-body);
}

.service-features-mini svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Service CTA */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-cta svg {
    transition: transform 0.3s ease;
}

.modern-service-card:hover .service-cta {
    color: #22D3EE;
}

.modern-service-card:hover .service-cta svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .modern-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-service {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .modern-services-grid {
        grid-template-columns: 1fr;
    }

    .featured-service {
        grid-column: span 1;
    }

    .modern-service-card {
        padding: 1.5rem;
    }
}

/* ==================== NAVBAR ALIGNMENT FIX ==================== */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.nav-menu {
    display: none;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* ==================== CROSS-BROWSER COMPATIBILITY ==================== */
/* Vendor Prefixes for widest browser support */
.text-gradient {
    background: var(--grad-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */
}

/* Backdrop filter for Safari */
.header,
.mega-dropdown {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* ==================== COMPREHENSIVE RESPONSIVE DESIGN ==================== */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    :root {
        --container-width: 1320px;
    }

    .hero-content h1 {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* Large Screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .mega-dropdown {
        width: 500px;
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .package-card {
        padding: 1.75rem;
    }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .services-grid,
    .modern-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Large Mobile (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .package-card {
        padding: 1.75rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .button-group {
        flex-direction: column;
        width: 100%;
    }

    .button-group .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
    :root {
        --header-height: 70px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Hide Get Started button on mobile */
    .nav-cta-btn,
    .nav-actions .btn-primary {
        display: none !important;
    }

    .hero {
        padding-top: calc(var(--header-height) + 1.5rem);
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-name {
        font-size: 1.1rem;
    }

    .package-price .amount {
        font-size: 2rem;
    }

    .package-features li {
        font-size: 0.85rem;
    }

    .package-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hero-stats .stat-item {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats .stat-item .stat-icon {
        margin: 0 auto 0.5rem;
    }

    .hero-stats .stat-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .stat-item h4,
    .hero-stat-value {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .button-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-logo img {
        height: 35px;
    }

    .hero-visual {
        height: 280px;
    }

    .server-stack {
        width: 200px;
        height: 260px;
        transform: perspective(1000px) rotateY(-10deg);
    }

    .layer {
        height: 50px;
        padding: 0 1rem;
    }

    .layer:nth-child(2) {
        top: 65px;
    }

    .layer:nth-child(3) {
        top: 130px;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    /* Services Grid Mobile */
    .services-grid,
    .modern-services-grid,
    .services-grid-full {
        grid-template-columns: 1fr !important;
    }

    .modern-service-card {
        padding: 1.25rem;
    }

    .service-card-full {
        padding: 1.5rem;
    }

    /* Why Choose Mobile */
    .split-layout {
        flex-direction: column;
    }

    .why-illustration {
        order: -1;
        max-width: 280px;
        margin: 0 auto;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials Mobile */
    .testimonials-grid-services {
        grid-template-columns: 1fr;
    }

    .testimonial-card-modern {
        padding: 1.25rem;
    }

    /* FAQ Mobile */
    .faq-modern-grid {
        grid-template-columns: 1fr !important;
    }

    /* CTA Mobile */
    .cta-buttons-modern {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
    }

    /* Features Grid Mobile */
    .wp-features-grid {
        grid-template-columns: 1fr !important;
    }

    .features-showcase {
        grid-template-columns: 1fr !important;
    }

    /* Form Elements Mobile */
    input,
    textarea,
    select {
        font-size: 16px;
        /* Prevents iOS zoom */
    }

    /* Hero stats mobile layout */
    .services-hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
        border-radius: 20px;
    }

    .stat-divider {
        display: none;
    }
}

/* Extra Small Devices (320px - 375px) */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .package-price .amount {
        font-size: 1.75rem;
    }

    .package-card {
        padding: 1.25rem;
    }

    .billing-toggle .toggle-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .billing-toggle .save-badge {
        font-size: 0.55rem;
        padding: 2px 4px;
    }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 1rem) 0 2rem;
    }

    .hero-visual {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .mega-dropdown {
        display: none !important;
    }

    .service-card:hover,
    .package-card:hover,
    .modern-service-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    /* Increase tap targets */
    .nav-link,
    .mobile-nav a {
        padding: 0.75rem 0;
    }

    .package-btn,
    .btn {
        min-height: 48px;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .nav-logo img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {

    .header,
    .mobile-nav,
    .mobile-toggle,
    .hero-visual,
    .floating-orbs,
    .cta-section {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        padding: 1rem 0;
    }

    .package-card {
        break-inside: avoid;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Dark Mode System Preference Support */
@media (prefers-color-scheme: dark) {

    /* Website is already dark themed, but this ensures consistency */
    :root {
        color-scheme: dark;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Fix for Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-surface);
}

/* Webkit Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--secondary-light));
}

/* ==================== SIDE CART DRAWER ==================== */
.side-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.side-cart {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-color);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.side-cart.open {
    transform: translateX(0);
}

.side-cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-surface-light);
}

.side-cart-header h3 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-count {
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    padding: 0.1rem 0.6rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.side-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Scrollbar for cart body */
.side-cart-body::-webkit-scrollbar {
    width: 6px;
}
.side-cart-body::-webkit-scrollbar-track {
    background: var(--bg-surface);
}
.side-cart-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}
.side-cart-body::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

.side-cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.side-cart-item:hover {
    border-color: var(--primary);
}

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon.wordpress { background: rgba(124, 58, 237, 0.15); color: #A78BFA; }
.item-icon.shared { background: rgba(6, 182, 212, 0.15); color: #22D3EE; }
.item-icon.reseller { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    color: var(--text-main);
}

.item-billing {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0 0 0.5rem 0;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.remove-item-link {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.side-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-muted);
    gap: 1rem;
}

.side-cart-empty svg {
    color: var(--border-color);
}

.side-cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-surface-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.total-amount {
    color: var(--primary);
    font-size: 1.25rem;
}

.side-cart-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}