/**
 * Fivender - AI-Powered FiveM Anti-Cheat
 * Main Stylesheet
 */

/* Base Styles and Reset */
:root {
    /* Primary Colors */
    --primary: #9c27b0;
    --primary-dark: #7b1fa2;
    --primary-light: #ba68c8;
    
    /* Secondary Colors */
    --secondary: #673ab7;
    --secondary-dark: #512da8;
    --secondary-light: #9575cd;
    
    /* Background Colors */
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --bg-dark-alt: #181818;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #757575;
    
    /* Accent Colors */
    --accent: #00e676;
    --accent-alt: #ff4081;
    --warning: #ffc107;
    --error: #f44336;
    
    /* Other */
    --border-radius: 8px;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

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

button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

ul, ol {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.text-left {
    text-align: left;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0.7);
    transform-origin: left;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--secondary-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.6);
    color: white;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    animation: pulse 1.5s infinite alternate;
}

.glow-logo {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-shadow: 
        0 0 5px rgba(156, 39, 176, 0.4),
        0 0 10px rgba(156, 39, 176, 0.4),
        0 0 15px rgba(156, 39, 176, 0.4),
        0 0 20px rgba(156, 39, 176, 0.6),
        0 0 30px rgba(156, 39, 176, 0.6),
        0 0 40px rgba(156, 39, 176, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
    /* Ensure consistency across all domain variants */
    -webkit-animation: glow 2s ease-in-out infinite alternate;
    -moz-animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 5px rgba(156, 39, 176, 0.4),
            0 0 10px rgba(156, 39, 176, 0.4),
            0 0 15px rgba(156, 39, 176, 0.4),
            0 0 20px rgba(156, 39, 176, 0.6),
            0 0 30px rgba(156, 39, 176, 0.6),
            0 0 40px rgba(156, 39, 176, 0.6);
    }
    to {
        text-shadow: 
            0 0 10px rgba(156, 39, 176, 0.7),
            0 0 20px rgba(156, 39, 176, 0.7),
            0 0 30px rgba(156, 39, 176, 0.7),
            0 0 40px rgba(156, 39, 176, 0.9),
            0 0 50px rgba(156, 39, 176, 0.9),
            0 0 60px rgba(156, 39, 176, 0.9);
    }
}

/* Add WebKit and Mozilla versions for better cross-browser compatibility */
@-webkit-keyframes glow {
    from {
        text-shadow: 
            0 0 5px rgba(156, 39, 176, 0.4),
            0 0 10px rgba(156, 39, 176, 0.4),
            0 0 15px rgba(156, 39, 176, 0.4),
            0 0 20px rgba(156, 39, 176, 0.6),
            0 0 30px rgba(156, 39, 176, 0.6),
            0 0 40px rgba(156, 39, 176, 0.6);
    }
    to {
        text-shadow: 
            0 0 10px rgba(156, 39, 176, 0.7),
            0 0 20px rgba(156, 39, 176, 0.7),
            0 0 30px rgba(156, 39, 176, 0.7),
            0 0 40px rgba(156, 39, 176, 0.9),
            0 0 50px rgba(156, 39, 176, 0.9),
            0 0 60px rgba(156, 39, 176, 0.9);
    }
}

@-moz-keyframes glow {
    from {
        text-shadow: 
            0 0 5px rgba(156, 39, 176, 0.4),
            0 0 10px rgba(156, 39, 176, 0.4),
            0 0 15px rgba(156, 39, 176, 0.4),
            0 0 20px rgba(156, 39, 176, 0.6),
            0 0 30px rgba(156, 39, 176, 0.6),
            0 0 40px rgba(156, 39, 176, 0.6);
    }
    to {
        text-shadow: 
            0 0 10px rgba(156, 39, 176, 0.7),
            0 0 20px rgba(156, 39, 176, 0.7),
            0 0 30px rgba(156, 39, 176, 0.7),
            0 0 40px rgba(156, 39, 176, 0.9),
            0 0 50px rgba(156, 39, 176, 0.9),
            0 0 60px rgba(156, 39, 176, 0.9);
    }
}

.loader-bar {
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    animation: loading 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loading {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.2rem 0;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo a span {
    margin-left: 0.5rem;
}

.logo svg {
    transition: var(--transition);
}

.logo:hover svg {
    transform: rotate(15deg);
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin: 0 1rem;
}

.main-nav a {
    font-weight: 500;
    position: relative;
    padding: 0.3rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    margin-left: 1.5rem;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    left: 0;
    transition: var(--transition);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-card);
    z-index: 1001;
    padding: 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-nav-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    line-height: 1;
}

.mobile-nav ul {
    flex: 1;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-footer {
    margin-top: 2rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(156, 39, 176, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

.stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.hex-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.hex-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hex {
    position: absolute;
    width: 100px;
    height: 115px;
    background-color: rgba(156, 39, 176, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transform-origin: center;
    transition: var(--transition);
    animation: hexPulse 3s infinite alternate;
}

.hex.large {
    width: 150px;
    height: 173px;
}

.hex:nth-child(1) {
    transform: translate(-80px, -140px) rotate(30deg);
    animation-delay: 0.2s;
}

.hex:nth-child(2) {
    transform: translate(80px, -140px) rotate(-30deg);
    animation-delay: 0.4s;
}

.hex:nth-child(3) {
    transform: translate(160px, 0) rotate(30deg);
    animation-delay: 0.6s;
}

.hex:nth-child(4) {
    transform: translate(80px, 140px) rotate(-30deg);
    animation-delay: 0.8s;
}

.hex:nth-child(5) {
    transform: translate(-80px, 140px) rotate(30deg);
    animation-delay: 1s;
}

.hex:nth-child(6) {
    transform: translate(-160px, 0) rotate(-30deg);
    animation-delay: 1.2s;
}

.hex:nth-child(7) {
    transform: translate(0, 0) scale(1.2);
    background-color: rgba(156, 39, 176, 0.15);
    animation-delay: 0s;
}

@keyframes hexPulse {
    0% {
        opacity: 0.5;
        transform: translate(var(--x), var(--y)) rotate(var(--r)) scale(1);
    }
    100% {
        opacity: 0.8;
        transform: translate(var(--x), var(--y)) rotate(var(--r)) scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scanning-lines line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% {
        stroke-dashoffset: 300;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -300;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    opacity: 0.3;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-duration: 25s;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 30%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 40%;
    animation-duration: 22s;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-duration: 19s;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 60%;
    animation-duration: 24s;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    top: 50%;
    left: 70%;
    animation-duration: 21s;
    animation-delay: 6s;
}

.particle:nth-child(8) {
    top: 90%;
    left: 80%;
    animation-duration: 23s;
    animation-delay: 7s;
}

.particle:nth-child(9) {
    top: 10%;
    left: 90%;
    animation-duration: 26s;
    animation-delay: 8s;
}

.particle:nth-child(10) {
    top: 45%;
    left: 95%;
    animation-duration: 17s;
    animation-delay: 9s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-50px) translateX(50px);
    }
    50% {
        transform: translateY(50px) translateX(100px);
    }
    75% {
        transform: translateY(-100px) translateX(50px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--bg-dark-alt);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.features-cta {
    margin-top: 3rem;
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.process-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.process-icon::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    z-index: -1;
}

.process-icon i {
    position: relative;
    z-index: 2;
}

.process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.process-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: var(--bg-dark-alt);
    position: relative;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    transition: var(--transition);
    position: relative;
    width: 300px;
    box-shadow: var(--card-shadow);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 1px solid var(--primary);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 1.5rem;
    right: -0.5rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.popular-tag::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    right: 0;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary-dark);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-family: 'Rajdhani', sans-serif;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 0.3rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.pricing-features ul li i {
    margin-right: 0.8rem;
    font-size: 1rem;
}

.pricing-features ul li i.fa-check {
    color: var(--accent);
}

.pricing-features ul li i.fa-times {
    color: var(--text-muted);
}

.pricing-footer {
    text-align: center;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.about-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 1;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.about-stats .stat-item {
    flex: 1;
    min-width: 120px;
    padding-right: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--bg-dark-alt);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 2rem;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin: 1rem;
    position: relative;
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-family: 'Georgia', serif;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: -1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: var(--secondary);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin: 0 1rem;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    background-color: var(--text-muted);
    border-radius: 50%;
    margin: 0 0.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots span.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-dark-alt);
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-secondary);
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--bg-dark-alt);
    border: 1px solid var(--text-muted);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.2);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-dark);
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    background-color: var(--bg-dark);
    position: relative;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo svg {
    margin-bottom: 1.5rem;
}

.footer-logo p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-card);
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

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

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

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .process-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .about-grid {
        flex-direction: column;
    }

    .about-content {
        order: 2;
    }

    .about-image {
        order: 1;
        height: 300px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .pricing-price .amount {
        font-size: 3rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-card);
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

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

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.close-modal {
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--error);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.success-message {
    background-color: rgba(0, 230, 118, 0.1);
    color: var(--accent);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.success-message i {
    margin-right: 0.5rem;
}

/* Enhanced Terms Page Styles */
.terms-section {
    padding: 8rem 0 5rem;
    background-color: var(--bg-dark);
    min-height: 80vh;
}

.terms-content {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(156, 39, 176, 0.1);
}

.terms-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5rem;
}

.tab-button {
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 0.5px;
}

.tab-button:hover {
    opacity: 0.9;
    color: var(--primary-light);
}

.tab-button.active {
    opacity: 1;
    color: var(--primary);
}

.tab-button.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.tab-pane h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(156, 39, 176, 0.2);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.tab-pane h3 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-light);
}

.tab-pane p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-style: italic;
}

