/* Red Team Theme Variables */
:root {
    /* Core Colors */
    --rt-primary: #ff0000;
    --rt-primary-dark: #cc0000;
    --rt-primary-light: #ff3333;
    --rt-accent: #2b2d42;
    --rt-accent-dark: #0096c7;
    --rt-accent-light: #48cae4;
    
    /* Background Colors */
    --rt-bg-dark: #0a0c10;
    --rt-bg-darker: #070809;
    --rt-bg-light: #1a1f2e;
    
    /* Text Colors */
    --rt-text: #ffffff;
    --rt-text-muted: #adb5bd;
    --rt-text-dark: #212529;
    
    /* Gradients */
    --rt-gradient-primary: linear-gradient(135deg, var(--rt-primary), var(--rt-primary-dark));
    --rt-gradient-accent: linear-gradient(135deg, var(--rt-accent), var(--rt-accent-dark));
    --rt-gradient-dark: linear-gradient(135deg, var(--rt-bg-dark), var(--rt-bg-darker));
    
    /* Shadows */
    --rt-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --rt-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --rt-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --rt-shadow-hover: 0 15px 30px rgba(239, 35, 60, 0.15);
    
    /* Transitions */
    --rt-transition-fast: 0.3s ease;
    --rt-transition-medium: 0.5s ease;
    --rt-transition-slow: 0.8s ease;
    
    /* Border Radius */
    --rt-radius-sm: 4px;
    --rt-radius-md: 8px;
    --rt-radius-lg: 16px;
    --rt-radius-xl: 24px;

    --rt-secondary: #d90429;
    --rt-bg: #0a0c10;
    --rt-card-bg: rgba(15, 15, 15, 0.95);
    --rt-gradient: linear-gradient(135deg, var(--rt-primary), var(--rt-primary-dark));
    --rt-overlay: rgba(10, 12, 16, 0.85);
    --rt-dark-bg: #0d1117;
    --rt-border: rgba(255, 0, 0, 0.2);
    --rt-hover: rgba(239, 35, 60, 0.1);
    --rt-dark: #0a0a0a;
    --rt-darker: #000000;
    --rt-light: #ffffff;
    --rt-gray: #8b949e;
}

/* Base Styles */
body {
    background: var(--rt-bg-darker);
    color: var(--rt-text);
}

/* Header Theme Animation */
@keyframes headerThemeTransition {
    from {
        background: rgba(15, 15, 15, 0.95);
        border-color: rgba(255, 255, 255, 0.1);
    }
    to {
        background: rgba(30, 0, 0, 0.95);
        border-color: var(--rt-border);
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rt-border);
    animation: headerThemeTransition 0.8s ease-out;
}

.navbar {
    padding: 1rem 0;
}

/* Logo Styles - Enhanced with Animated Gradient */
.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(
        300deg,
        var(--rt-primary-light) 0%,
        var(--rt-primary) 25%,
        var(--rt-primary-dark) 50%,
        var(--rt-primary) 75%,
        var(--rt-primary-light) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    animation: gradientFlow 3s ease infinite;
}

.logo-text span {
    background: linear-gradient(
        300deg,
        var(--rt-primary) 0%,
        var(--rt-primary-dark) 25%,
        var(--rt-primary) 50%,
        var(--rt-primary-light) 75%,
        var(--rt-primary) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 2px;
    animation: gradientFlow 3s ease infinite reverse;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 0, 0, 0.2) 50%,
        transparent 100%
    );
    animation: scanningEffect 2s linear infinite;
    pointer-events: none;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--rt-primary) 20%,
        var(--rt-primary-light) 50%,
        var(--rt-primary) 80%,
        transparent
    );
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    opacity: 0.8;
}

.logo-text:hover {
    animation: gradientFlow 1.5s ease infinite;
}

.logo-text:hover span {
    animation: gradientFlow 1.5s ease infinite reverse;
}

.logo-text:hover::after {
    background: linear-gradient(
        90deg,
        transparent,
        var(--rt-primary-light) 20%,
        var(--rt-primary) 50%,
        var(--rt-primary-light) 80%,
        transparent
    );
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
    opacity: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--rt-text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

/* Navigation Menu - Updated Scanning Line */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rt-primary);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
    background: linear-gradient(90deg, 
        var(--rt-primary) 0%,
        var(--rt-primary-light) 50%,
        var(--rt-primary) 100%
    );
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.nav-menu a.active::after {
    width: 100%;
    background: linear-gradient(90deg, 
        var(--rt-primary-light) 0%,
        var(--rt-primary) 50%,
        var(--rt-primary-light) 100%
    );
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
}

/* Footer Theme Animation */
@keyframes footerThemeTransition {
    from {
        background: var(--rt-bg-darker);
    }
    to {
        background: rgba(20, 0, 0, 0.98);
    }
}

.footer {
    background: rgba(20, 0, 0, 0.98);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    animation: footerThemeTransition 0.8s ease-out;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--rt-primary) 20%,
        var(--rt-primary-light) 50%,
        var(--rt-primary) 80%,
        transparent
    );
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer .logo-text {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--rt-light) 0%, var(--rt-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer .logo-text span {
    background: linear-gradient(135deg, var(--rt-primary) 0%, var(--rt-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer Menu Icons */
.footer-contact p i {
    color: var(--rt-primary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-contact p:hover i {
    color: var(--rt-primary-light);
    transform: scale(1.1);
}

.footer-links a {
    color: var(--rt-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rt-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.footer-links a:hover {
    color: var(--rt-primary-light);
    padding-left: 20px;
}

.footer-links a:hover::after {
        width: 100%;
    background: linear-gradient(90deg,
        var(--rt-primary) 0%,
        var(--rt-primary-light) 50%,
        var(--rt-primary) 100%
    );
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--rt-border);
    border-radius: 50%;
    display: flex;
        align-items: center;
        justify-content: center;
    color: var(--rt-primary);
        transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--rt-gradient-primary);
    color: var(--rt-light);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    text-align: center;
}

/* Header Scroll Effect */
.header.scrolled {
    background: rgba(20, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.1);
}

/* Section Fade In Animation */
@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.section-visible {
    animation: sectionFadeIn 1s ease forwards;
}

/* Hero Section */
.rt-hero {
    position: relative;
    min-height: 100vh;
    background: var(--rt-bg-darker);
    overflow: hidden;
    padding: 80px 0;
    display: flex;
    align-items: center;
    margin: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, 
        rgba(255, 0, 0, 0.05) 0%,
        rgba(13, 17, 23, 0.95) 50%
    );
    z-index: 2;
}

.rt-hero .container {
    position: relative;
    z-index: 3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 50px;
    color: var(--rt-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInDown 0.6s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--rt-light);
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease-out;
}

.text-gradient {
    background: linear-gradient(135deg, var(--rt-primary) 0%, #ff4d4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--rt-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-out;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--rt-primary);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff0000 0%, #ff4d4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    position: relative;
}

.stat-label {
    color: var(--rt-gray);
    font-size: 0.9rem;
    position: relative;
}

.hero-visual {
    position: relative;
    animation: fadeIn 1.6s ease-out;
}

.security-dashboard {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.security-dashboard:hover {
    transform: perspective(1000px) rotateY(0deg);
    border-color: var(--rt-primary);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.dash-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--rt-light);
    font-weight: 600;
}

.dash-title i {
    color: var(--rt-primary);
}

.dash-status {
    font-size: 0.9rem;
    color: #4caf50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dash-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.dash-card:hover {
    transform: translateY(-5px);
    border-color: var(--rt-primary);
    background: rgba(255, 0, 0, 0.05);
}

.dash-icon {
    color: var(--rt-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.dash-info {
    display: flex;
    flex-direction: column;
}

.dash-label {
    color: var(--rt-gray);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.dash-value {
    color: var(--rt-light);
    font-size: 1.8rem;
    font-weight: 700;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design for Hero */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .security-dashboard {
        transform: none;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        max-width: 600px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .rt-hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Security Dashboard */
.security-dashboard {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(239, 35, 60, 0.2);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(239, 35, 60, 0.2);
}

.dashboard-header h3 {
    color: var(--rt-light);
    font-size: 1.4rem;
    font-weight: 600;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4caf50;
    font-size: 0.9rem;
    background: rgba(76, 175, 80, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
}

.status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.metric-card {
    background: rgba(13, 17, 23, 0.5);
    border: 1px solid rgba(239, 35, 60, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--rt-primary);
    background: rgba(13, 17, 23, 0.8);
}

.metric-icon {
    color: var(--rt-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.metric-info h4 {
    color: #a0a8b8;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.metric-value {
    color: var(--rt-light);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

/* Services Section */
.rt-services {
    background: var(--rt-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.rt-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(239, 35, 60, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(239, 35, 60, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.rt-services .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rt-section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.rt-section-header h2 {
    color: var(--rt-light);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, var(--rt-light) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rt-section-header p {
    color: var(--rt-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.rt-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
    margin-top: 40px;
}

.rt-service-card {
    background: var(--rt-card-bg);
    border: 1px solid var(--rt-border);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.rt-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--rt-primary);
    box-shadow: 0 15px 30px rgba(239, 35, 60, 0.1);
}

.rt-service-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(239, 35, 60, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.rt-service-icon i {
    font-size: 24px;
    color: var(--rt-primary);
    transition: all 0.3s ease;
}

.rt-service-card:hover .rt-service-icon {
    background: var(--rt-primary);
    transform: rotateY(360deg);
}

.rt-service-card:hover .rt-service-icon i {
    color: var(--rt-light);
}

.rt-service-card h3 {
    color: var(--rt-light);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.rt-service-card p {
    color: var(--rt-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.rt-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rt-service-features li {
    color: var(--rt-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rt-service-features li i {
    color: var(--rt-primary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .membership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .membership-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-card.featured {
        grid-column: span 1;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
}

/* Methodology Section */
.rt-methodology {
    background: var(--rt-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.rt-methodology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(239, 35, 60, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(239, 35, 60, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.rt-methodology .container {
    position: relative;
    z-index: 2;
}

.rt-timeline {
    position: relative;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.rt-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, 
        transparent,
        var(--rt-primary) 10%,
        var(--rt-primary) 90%,
        transparent
    );
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Fade In Animation for Timeline Items */
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.rt-timeline-item {
    position: relative;
    width: calc(50% - 50px);
    margin-left: auto;
    background: rgba(13, 17, 23, 0.95);
    border: 1px solid var(--rt-border);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: visible;
    
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(30px);
}

.rt-timeline-item.fade-in {
    animation: fadeInSlide 0.8s ease forwards;
}

/* Add different delays for each item */
.rt-timeline-item:nth-child(1).fade-in {
    animation-delay: 0.1s;
}

.rt-timeline-item:nth-child(2).fade-in {
    animation-delay: 0.3s;
}

.rt-timeline-item:nth-child(3).fade-in {
    animation-delay: 0.5s;
}

.rt-timeline-item:nth-child(4).fade-in {
    animation-delay: 0.7s;
}

.rt-timeline-item:nth-child(5).fade-in {
    animation-delay: 0.9s;
}

.rt-timeline-item:nth-child(even) {
    margin-left: 0;
    margin-right: auto;
}

/* Center dot */
.rt-timeline-item::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--rt-primary), var(--rt-primary-dark));
    border: 4px solid var(--rt-dark);
    border-radius: 50%;
    top: 30px;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--rt-light);
    font-size: 16px;
}

/* Add specific icons for each step */
.rt-timeline-item:nth-child(1)::before {
    content: '\f002'; /* Search icon */
}

.rt-timeline-item:nth-child(2)::before {
    content: '\f52f'; /* Door open icon */
}

.rt-timeline-item:nth-child(3)::before {
    content: '\f6ff'; /* Network icon */
}

.rt-timeline-item:nth-child(4)::before {
    content: '\f3c1'; /* Flag checkered icon */
}

.rt-timeline-item:nth-child(5)::before {
    content: '\f15c'; /* File contract icon */
}

/* Connecting line */
.rt-timeline-item::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--rt-primary), var(--rt-primary-light));
    top: 48px;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.rt-timeline-item:nth-child(odd)::before {
    left: -70px;
}

.rt-timeline-item:nth-child(even)::before {
    right: -70px;
}

.rt-timeline-item:nth-child(odd)::after {
    left: -40px;
}

.rt-timeline-item:nth-child(even)::after {
    right: -40px;
}

.rt-timeline-item:hover::before {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 
        0 0 30px rgba(239, 35, 60, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--rt-primary-light), var(--rt-primary));
}

.rt-timeline-item:hover::after {
    background: linear-gradient(90deg, var(--rt-primary-light), var(--rt-primary));
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    height: 4px;
}

.rt-timeline-number {
    position: absolute;
    top: -20px;
    background: var(--rt-gradient-primary);
    color: var(--rt-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(239, 35, 60, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    z-index: 5;
}

.rt-timeline-item:hover .rt-timeline-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(239, 35, 60, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.rt-timeline-item:nth-child(odd) .rt-timeline-number {
    right: -20px;
}

.rt-timeline-item:nth-child(even) .rt-timeline-number {
    left: -20px;
}

.rt-timeline-content {
    position: relative;
    z-index: 2;
}

.rt-timeline-content h3 {
    color: var(--rt-light);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rt-timeline-content h3 i {
    color: var(--rt-primary);
    font-size: 24px;
    transition: all 0.4s ease;
}

.rt-timeline-item:hover h3 i {
    transform: rotateY(360deg);
    color: var(--rt-primary-light);
}

.rt-timeline-content p {
    color: var(--rt-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.rt-timeline-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.rt-timeline-feature {
    background: rgba(239, 35, 60, 0.08);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(239, 35, 60, 0.1);
}

.rt-timeline-feature:hover {
    background: rgba(239, 35, 60, 0.12);
    transform: translateX(8px);
    border-color: rgba(239, 35, 60, 0.3);
    box-shadow: 0 5px 15px rgba(239, 35, 60, 0.1);
}

.rt-timeline-feature i {
    color: var(--rt-primary);
    font-size: 16px;
    transition: all 0.4s ease;
}

.rt-timeline-feature:hover i {
    transform: scale(1.2) rotate(360deg);
    color: var(--rt-primary-light);
}

.rt-timeline-feature span {
    color: var(--rt-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Packages Section */
.rt-packages {
    background: var(--rt-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.rt-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(239, 35, 60, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(239, 35, 60, 0.08) 0%, transparent 40%);
    z-index: 1;
}

.rt-packages .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.rt-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 20px;
    perspective: 1000px;
}

.rt-package-card {
    background: rgba(13, 17, 23, 0.95);
    border: 1px solid var(--rt-border);
    border-radius: 20px;
    padding: 50px 40px;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.rt-package-card:hover {
    border-color: var(--rt-primary);
    box-shadow: 0 0 30px rgba(239, 35, 60, 0.15);
}

.rt-package-popular {
    border: 2px solid var(--rt-primary);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(239, 35, 60, 0.2);
}

.rt-popular-tag {
    position: absolute;
    top: 30px;
    right: -40px;
    background: var(--rt-gradient-primary);
    color: var(--rt-light);
    padding: 10px 50px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(239, 35, 60, 0.3);
}

/* Package Button Styles */
.rt-package-cta {
    text-align: center;
    margin-top: 40px;
}

.rt-package-card .rt-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.rt-package-card .rt-btn-primary {
    background: var(--rt-gradient-primary);
    color: var(--rt-light);
    border: none;
}

.rt-package-card .rt-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 35, 60, 0.2);
}

.rt-package-card .rt-btn-outline {
    background: transparent;
    border: 2px solid var(--rt-primary);
    color: var(--rt-primary);
}

.rt-package-card .rt-btn-outline:hover {
    background: var(--rt-primary);
    color: var(--rt-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 35, 60, 0.2);
}

/* Enterprise Custom Section */
.rt-enterprise-section {
    margin-top: 40px;
    padding: 0 20px;
    position: relative;
}

.rt-enterprise-card {
    background: linear-gradient(145deg, rgba(13, 17, 23, 0.98), rgba(13, 17, 23, 0.95));
    border: 2px solid var(--rt-primary);
    border-radius: 20px;
    padding: 60px 40px 40px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(239, 35, 60, 0.15);
    overflow: visible;
}

.rt-enterprise-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rt-gradient-primary);
    color: var(--rt-light);
    padding: 10px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(239, 35, 60, 0.4);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    white-space: nowrap;
    text-transform: uppercase;
}

.rt-enterprise-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 2s infinite;
    border-radius: 30px;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.rt-enterprise-header {
    text-align: center;
    margin: 25px 0 30px;
    position: relative;
}

.rt-enterprise-header h3 {
    font-size: 2.5rem;
    color: var(--rt-light);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rt-enterprise-header p {
    color: var(--rt-gray);
    font-size: 1.1rem;
}

.rt-enterprise-price {
    text-align: center;
    margin: 30px auto;
    padding: 25px;
    background: rgba(239, 35, 60, 0.1);
    border-radius: 15px;
    max-width: 400px;
}

.rt-enterprise-price span {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--rt-primary) 0%, var(--rt-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 8px;
}

.rt-enterprise-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.feature-column {
    background: rgba(13, 17, 23, 0.5);
    border: 1px solid rgba(239, 35, 60, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.feature-column h4 {
    color: var(--rt-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(239, 35, 60, 0.2);
}

.feature-column li {
    color: var(--rt-light);
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
}

.rt-enterprise-cta {
    text-align: center;
    margin-top: 30px;
}

.rt-enterprise-cta .rt-btn {
    font-size: 1.1rem;
    padding: 15px 35px;
    margin-bottom: 15px;
    border-radius: 30px;
}

.enterprise-contact {
    color: var(--rt-gray);
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 992px) {
    .rt-enterprise-card {
        padding: 30px 25px;
    }
    
    .rt-enterprise-header h3 {
        font-size: 2rem;
    }
    
    .rt-enterprise-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .rt-enterprise-card {
        padding: 25px 20px;
    }
    
    .rt-enterprise-badge {
        font-size: 0.8rem;
        padding: 6px 20px;
    }
    
    .rt-enterprise-header h3 {
        font-size: 1.8rem;
    }
    
    .rt-enterprise-price span {
        font-size: 2rem;
    }
}

/* Contact Section */
.rt-contact {
    background: var(--rt-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.rt-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(239, 35, 60, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(239, 35, 60, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.rt-contact .container {
    position: relative;
    z-index: 2;
}

.rt-contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.rt-contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rt-contact-item {
    background: var(--rt-card-bg);
    border: 1px solid var(--rt-border);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.rt-contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--rt-primary);
    box-shadow: 0 15px 30px rgba(239, 35, 60, 0.1);
}

.rt-contact-item i {
    font-size: 24px;
    color: var(--rt-primary);
}

.rt-contact-details h3 {
    color: var(--rt-light);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rt-contact-details p {
    color: var(--rt-gray);
    font-size: 1rem;
    margin: 0;
}

.rt-contact-form {
    background: var(--rt-card-bg);
    border: 1px solid var(--rt-border);
    border-radius: 12px;
    padding: 40px;
}

.rt-form-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.rt-form-field {
    margin-bottom: 20px;
}

.rt-form-field label {
    display: block;
    color: var(--rt-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.rt-form-field input,
.rt-form-field select,
.rt-form-field textarea {
    width: 100%;
    padding: 12px;
    background: rgba(13, 17, 23, 0.5);
    border: 1px solid var(--rt-border);
    border-radius: 8px;
    color: var(--rt-light);
    transition: all 0.3s ease;
}

.rt-form-field input:focus,
.rt-form-field select:focus,
.rt-form-field textarea:focus {
    border-color: var(--rt-primary);
    box-shadow: 0 0 0 3px rgba(239, 35, 60, 0.1);
    outline: none;
}

.rt-form-field textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
.rt-footer {
    background: var(--rt-bg-darker);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.rt-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--rt-primary) 20%,
        var(--rt-primary) 80%,
        transparent
    );
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-info {
    max-width: 400px;
}

.footer-info p {
    color: var(--rt-gray);
    margin-top: 20px;
    line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--rt-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--rt-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--rt-primary);
}

.footer-contact p {
    color: var(--rt-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(239, 35, 60, 0.1);
    border: 1px solid var(--rt-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rt-primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--rt-primary);
    color: var(--rt-light);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--rt-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--rt-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .rt-timeline::before {
        left: 30px;
    }
    
    .rt-timeline-item {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .rt-timeline-item::before {
        left: -52px !important;
        right: auto !important;
    }
    
    .rt-timeline-item::after {
        left: -30px !important;
        right: auto !important;
        width: 30px;
    }
    
    .rt-timeline-number {
        left: -65px !important;
        right: auto !important;
    }
    
    .rt-packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .rt-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-info {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .rt-timeline-features {
        grid-template-columns: 1fr;
    }

    .rt-form-group {
        grid-template-columns: 1fr;
    }

    .rt-contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* Buttons */
.rt-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
        text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rt-btn-primary {
    background: var(--rt-gradient-primary);
    color: var(--rt-light);
    border: none;
}

.rt-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 35, 60, 0.2);
}

.rt-btn-outline {
    background: transparent;
    border: 2px solid var(--rt-primary);
    color: var(--rt-primary);
}

.rt-btn-outline:hover {
    background: var(--rt-primary);
    color: var(--rt-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 35, 60, 0.2);
}

.rt-package-header {
        text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(239, 35, 60, 0.2);
    position: relative;
}

.rt-package-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 60px;
    height: 2px;
    background: var(--rt-gradient-primary);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(239, 35, 60, 0.5);
}

.rt-package-header h3 {
    color: var(--rt-light);
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rt-package-price {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.rt-currency {
    color: var(--rt-primary);
    font-size: 2rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 5px;
}

.rt-amount {
    color: var(--rt-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}

.rt-period {
    color: var(--rt-gray);
    font-size: 1rem;
    margin-left: 5px;
}

.rt-package-features {
    margin-bottom: 40px;
}

.rt-package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rt-package-features li {
    color: var(--rt-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.rt-package-features li i {
    color: var(--rt-primary);
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.rt-package-features li:hover {
    transform: translateX(5px);
    color: var(--rt-primary-light);
}

/* Update active menu item color */
.nav-menu a.active {
    color: var(--rt-primary);
    font-weight: 600;
}

.nav-menu a:hover {
    color: var(--rt-primary-light);
}

/* Packages Comparison Section */
.rt-packages-comparison {
    padding: 80px 0;
    background: linear-gradient(
        to bottom,
        var(--rt-dark) 0%,
        rgba(13, 17, 23, 0.98) 100%
    );
    position: relative;
    overflow-x: auto;
}

.rt-comparison-table {
    margin: 40px auto;
    padding: 40px;
    background: rgba(13, 17, 23, 0.98);
    border: 1px solid rgba(239, 35, 60, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(239, 35, 60, 0.1);
    border-radius: 20px;
    max-width: 1400px;
    overflow-x: auto;
}

.rt-comparison-table table {
    border-spacing: 0 10px;
    width: 100%;
    min-width: 1000px;
    margin: 0 auto;
    border-collapse: separate;
}

.rt-comparison-table th,
.rt-comparison-table td {
    text-align: center;
    padding: 25px 30px;
    font-size: 1.05rem;
    color: var(--rt-light);
}

.rt-comparison-table th {
    background: rgba(239, 35, 60, 0.15);
    padding: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.rt-comparison-table th:first-child,
.rt-comparison-table td:first-child {
    text-align: left;
    position: sticky;
    left: 0;
    background: rgba(13, 17, 23, 0.98);
    z-index: 20;
    min-width: 250px;
}

.rt-comparison-table td {
    background: rgba(13, 17, 23, 0.5);
    transition: all 0.3s ease;
    word-break: break-word;
    white-space: normal;
    vertical-align: middle;
}

.rt-comparison-table .category-header td {
    background: rgba(239, 35, 60, 0.2);
    padding: 20px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rt-primary-light);
    text-align: left;
}

.rt-comparison-table .price-row td {
    background: rgba(239, 35, 60, 0.08);
    font-size: 2rem;
    font-weight: 800;
    padding: 30px 20px;
    color: var(--rt-primary);
    word-break: break-word;
    white-space: normal;
    line-height: 1.2;
    vertical-align: middle;
    min-height: 100px;
    display: table-cell;
}

.rt-comparison-table tr:hover td {
    background: rgba(239, 35, 60, 0.1);
    transform: scale(1.01);
}

.rt-comparison-table tr:hover td:first-child {
    background: rgba(13, 17, 23, 0.98);
    transform: none;
}

.rt-comparison-table i.fa-check {
    color: var(--rt-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.rt-comparison-table i.fa-times {
    color: var(--rt-gray);
    font-size: 1.2rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.rt-comparison-table tr:hover i.fa-check {
    transform: scale(1.2);
    color: var(--rt-primary-light);
}

.rt-comparison-table .cta-row td {
    padding: 35px 30px;
    background: transparent;
}

.rt-comparison-table .cta-row .rt-btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
}

/* Scroll indicator */
.rt-comparison-table::after {
    content: '\f07e';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(239, 35, 60, 0.15);
    color: var(--rt-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollIndicator 2s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes scrollIndicator {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@media (max-width: 1200px) {
    .rt-comparison-table::after {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .rt-comparison-table {
        margin: 40px -20px;
        padding: 20px;
        border-radius: 0;
    }
    
    .rt-comparison-table th,
    .rt-comparison-table td {
        padding: 20px 15px;
        font-size: 1rem;
    }
    
    .rt-comparison-table .price-row td {
        font-size: 1.6rem;
        padding: 25px 15px;
    }
    
    .rt-comparison-table td:first-child {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .rt-comparison-table {
        padding: 15px;
    }
    
    .rt-comparison-table th,
    .rt-comparison-table td {
        padding: 15px 10px;
        font-size: 0.95rem;
    }
    
    .rt-comparison-table .price-row td {
        font-size: 1.4rem;
        padding: 20px 10px;
    }
    
    .rt-comparison-table .cta-row .rt-btn {
        min-width: 150px;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* FAQ Section */
.rt-faq {
    background: var(--rt-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.rt-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(239, 35, 60, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(239, 35, 60, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.rt-faq .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.rt-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.rt-faq-item {
    background: rgba(13, 17, 23, 0.98);
    border: 1px solid var(--rt-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.rt-faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--rt-primary);
    box-shadow: 0 15px 30px rgba(239, 35, 60, 0.15);
}

.rt-faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.rt-faq-question h3 {
    color: var(--rt-light);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    transition: all 0.3s ease;
}

.rt-faq-question i {
    color: var(--rt-primary);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.rt-faq-item.active .rt-faq-question {
    background: rgba(239, 35, 60, 0.1);
}

.rt-faq-item.active .rt-faq-question h3 {
    color: var(--rt-primary);
}

.rt-faq-item.active .rt-faq-question i {
    transform: rotate(45deg);
    opacity: 1;
}

.rt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(13, 17, 23, 0.5);
    border-top: 1px solid transparent;
}

.rt-faq-item.active .rt-faq-answer {
    border-top-color: var(--rt-border);
}

.rt-faq-answer p {
    color: var(--rt-gray);
    line-height: 1.8;
    margin: 0;
    padding: 25px 30px;
    font-size: 1.05rem;
}

/* Enterprise Column Styles */
.rt-comparison-table th:last-child,
.rt-comparison-table td:last-child {
    background: rgba(239, 35, 60, 0.05);
    border-left: 2px solid rgba(239, 35, 60, 0.3);
    position: relative;
}

.rt-comparison-table th:last-child {
    background: rgba(239, 35, 60, 0.2);
}

.rt-comparison-table td:last-child {
    font-weight: 500;
}

.rt-comparison-table .price-row td:last-child {
    background: rgba(239, 35, 60, 0.15);
    font-size: 1.8rem;
    color: var(--rt-primary-light);
    text-shadow: 0 0 10px rgba(239, 35, 60, 0.3);
}

.rt-comparison-table tr:hover td:last-child {
    background: rgba(239, 35, 60, 0.1);
    transform: none;
}

/* Enterprise Badge */
.rt-comparison-table th:last-child::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rt-gradient-primary);
    color: var(--rt-light);
    padding: 4px 12px;
    font-size: 0.7rem;
    border-radius: 12px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(239, 35, 60, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .rt-comparison-table th:last-child::after {
        font-size: 0.6rem;
        padding: 3px 8px;
        top: -10px;
    }
    
    .rt-comparison-table .price-row td:last-child {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .rt-comparison-table .price-row td:last-child {
        font-size: 1.4rem;
    }
} 