/* Modern Design Foundation for XR Softwares */
:root {
    --primary: #e40000;
    --primary-hover: #b30000;
    --secondary: #0F172A;
    --accent: #10B981;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --light: #F8FAFC;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --bg-white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --dark-text: #0F172A;
    --light-muted: rgba(255, 255, 255, 0.7);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --bg-light: #F8FAFC;
    --primary-soft: rgba(228, 0, 0, 0.08);
    --success-soft: rgba(16, 185, 129, 0.08);
    --warning-soft: rgba(245, 158, 11, 0.08);
    --danger-soft: rgba(239, 68, 68, 0.08);
    --info-soft: rgba(14, 165, 233, 0.08);
    --secondary-soft: rgba(15, 23, 42, 0.08);
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--secondary);
}

/* Glassmorphism Header */
.top-nav {
    background: var(--secondary);
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.top-nav a:hover {
    color: var(--primary);
}

.top-nav-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    margin-left: 8px;
    transition: all 0.3s ease;
}

.top-nav-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.modern-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    min-height: 80vh;
    overflow: hidden;
}

.hero-section h1, .hero-section h2, .hero-section h3, .hero-section .lead {
    color: white !important;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-gradient-text {
    background: linear-gradient(135deg, var(--primary), #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern Cards */
.modern-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 255, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Custom Buttons */
.btn-primary-modern {
    background: var(--primary);
    color: white;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 14px 0 rgba(228, 0, 0, 0.3);
}

.btn-primary-modern:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 0, 0, 0.23);
    color: white;
}

.btn-outline-modern {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 0, 0, 0.2);
}

/* Animations */
[data-aos] {
    transition-duration: 800ms !important;
}

/* Typography Enhancements */
.font-outfit { font-family: 'Sora', sans-serif; }
.font-inter { font-family: 'Plus Jakarta Sans', sans-serif; }
.tracking-tight { letter-spacing: -0.025em; }
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-primary-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #ff4d4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.border-left-primary {
    border-left: 4px solid var(--primary);
}
.bg-soft-info { background-color: var(--info-soft) !important; }
.bg-soft-secondary { background-color: var(--secondary-soft) !important; }
.text-light-muted { color: var(--light-muted) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-dark .text-muted, .cta-banner .text-muted, .hero-section .text-muted { color: var(--light-muted) !important; }
.text-primary { color: #e40000 !important; }
.display-4 {
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Feature Grid */
.feature-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.feature-icon-lg {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Benefit Section */
.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

/* CTA Sections */
.cta-banner {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner, .bg-dark, [class*="bg-primary"], .hero-section {
    color: white !important;
}

.cta-banner h1, .cta-banner h2, .cta-banner h3, .cta-banner h4, .cta-banner h5, .cta-banner h6,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.hero-section h1, .hero-section h2, .hero-section h3, .hero-section h4, .hero-section h5, .hero-section h6 {
    color: white !important;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--blue-100) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

/* Footer Links */
.footer-links a {
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.footer-links a:hover {
    color: var(--primary) !important;
    padding-left: 5px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .modern-header .navbar-brand span {
        font-size: 1.25rem;
    }
}

/* Infinite Logo Slider */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-ticker {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 3rem;
    padding: 2rem 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-ticker-track {
    display: flex;
    flex-shrink: 0;
    gap: 3rem;
    min-width: 100%;
    animation: marquee 40s linear infinite;
}

.logo-ticker-item {
    flex-shrink: 0;
    height: 60px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.logo-ticker-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.logo-ticker-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-ticker-track {
        animation-duration: 20s;
        gap: 2rem;
    }
    .logo-ticker-item {
        height: 40px;
    }
}

/* Page Header Premium Styles */
.page-header-premium {
    position: relative;
    padding: 140px 0 100px;
    background-color: #0F172A;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(228, 0, 0, 0.15) 0%, transparent 40%),
                linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95));
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "•";
    color: rgba(255, 255, 255, 0.3);
    padding: 0 12px;
}

.header-badge {
    transform: rotate(3deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-left: 5px solid var(--primary) !important;
}

.header-badge:hover {
    transform: rotate(0deg) scale(1.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Mobile Alignment Polish */
@media (max-width: 768px) {
    .page-header-premium {
        padding: 100px 0 60px;
        text-align: center;
    }
    .breadcrumb {
        justify-content: center;
    }
    .page-header-premium .display-3 {
        font-size: 2.25rem;
    }
    .header-badge {
        transform: none;
        margin-top: 30px;
    }
}

/* Animations */
@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-animation {
    animation: float-y 4s ease-in-out infinite;
}

/* Google Review Carousel */
.reviews-ticker {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 30px;
    padding: 20px 0;
}

.reviews-ticker-inner {
    display: flex;
    flex-shrink: 0;
    gap: 30px;
    animation: marquee-reviews 40s linear infinite;
    padding-left: 30px;
}

@keyframes marquee-reviews {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.review-card {
    background: white;
    min-width: 350px;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(228, 0, 0, 0.1);
}

.review-stars {
    color: #FBBF24;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.google-verified {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: #10B981;
    font-weight: 700;
}

.google-icon {
    width: 16px;
    margin-right: 5px;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.glass-header {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
/* Premium SEO Content Components */
.glass-list-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(228, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.glass-list-item:hover {
    background: white;
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.metric-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.metric-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.gradient-text-lg {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.check-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.check-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 6px 16px;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.comparison-table-wrapper {
    background: white;
    border-radius: 24px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-lg);
}

.comparison-table thead th {
    background: var(--bg-light);
    border-top: none;
    padding: 20px;
}

.comparison-table td {
    padding: 15px 20px;
    vertical-align: middle;
}
