/* Enhanced CSS with advanced 3D effects and animations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #000;
    --secondary-bg: #111;
    --accent-bg: #1a1a1a;
    --text-primary: #fff;
    --text-secondary: #888;
    --text-muted: #666;
    --gradient-primary: linear-gradient(135deg, #fff, #888);
    --gradient-accent: linear-gradient(135deg, #333, #111);
    --border-color: rgba(255, 255, 255, 0.1);
    --glow-color: rgba(255, 255, 255, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-light: 0 4px 20px rgba(255, 255, 255, 0.1);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Advanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Particle System */
.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, #111 0%, #000 70%);
    overflow: hidden;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    z-index: 1;
    transform: translateZ(-50px);
    animation: heroDepth 15s ease-in-out infinite;
}

@keyframes heroDepth {

    0%,
    100% {
        transform: translateZ(-50px) scale(1);
    }

    33% {
        transform: translateZ(-30px) scale(1.01);
    }

    66% {
        transform: translateZ(-40px) scale(1.005);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 10;
    position: relative;
    transform: translateZ(50px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.typing-text {
    display: inline-block;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, #888, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

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

.btn-secondary:hover {
    background: var(--secondary-bg);
    border-color: var(--glow-color);
    transform: translateY(-2px);
}

.trust-indicator {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* 3D Workflow Network Background */
.workflow-background {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* Central AI Processor */
.ai-processor {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%) translateZ(0px);
    transform-style: preserve-3d;
    animation: processorRotate 6s ease-in-out infinite;
}

.processor-core {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transform: translateZ(10px);
}

.processor-core::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 15px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.2));
    z-index: -1;
    animation: coreGlow 3s ease-in-out infinite;
}

/* Service Nodes */
.service-node {
    position: absolute;
    width: 110px;
    height: 110px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    transform-style: preserve-3d;
    animation: nodeFloat 6s ease-in-out infinite;
}

.service-node::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(5px);
    animation: nodePulse 2s ease-in-out infinite;
}

/* Connection Lines */
.connection-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform-origin: left;
    animation: dataFlow 4s ease-in-out infinite;
    border-radius: 2px;
}

/* Node Positioning - Full Width Distribution */
.node-1 {
    top: 15%;
    left: 15%;
    transform: translateZ(20px);
    animation-delay: 0s;
}

.node-2 {
    top: 10%;
    right: 10%;
    transform: translateZ(15px);
    animation-delay: -1s;
}

.node-3 {
    top: 45%;
    right: 5%;
    transform: translateZ(25px);
    animation-delay: -2s;
}

.node-4 {
    bottom: 15%;
    right: 15%;
    transform: translateZ(10px);
    animation-delay: -3s;
}

.node-5 {
    bottom: 10%;
    left: 10%;
    transform: translateZ(30px);
    animation-delay: -4s;
}

.node-6 {
    top: 45%;
    left: 5%;
    transform: translateZ(5px);
    animation-delay: -5s;
}

/* Connection Positioning - Fixed for Right Side Layout */
.line-1 {
    top: 20%;
    right: 15%;
    width: 180px;
    transform: rotate(-20deg) translateZ(8px);
}

.line-2 {
    top: 45%;
    right: 8%;
    width: 200px;
    transform: rotate(40deg) translateZ(12px);
}

.line-3 {
    bottom: 25%;
    right: 20%;
    width: 160px;
    transform: rotate(10deg) translateZ(15px);
}

.line-4 {
    bottom: 20%;
    right: 45%;
    width: 190px;
    transform: rotate(-35deg) translateZ(6px);
}

.line-5 {
    top: 35%;
    right: 30%;
    width: 170px;
    transform: rotate(25deg) translateZ(18px);
}

.line-6 {
    top: 15%;
    right: 35%;
    width: 140px;
    transform: rotate(-50deg) translateZ(22px);
}

/* Animations */
@keyframes processorRotate {

    0%,
    100% {
        transform: translate(-50%, -50%) rotateY(-15deg) translateZ(0px);
    }

    50% {
        transform: translate(-50%, -50%) rotateY(15deg) translateZ(0px);
    }
}

@keyframes coreGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes nodeFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes nodePulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) translateZ(5px) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) translateZ(5px) scale(1.3);
    }
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: translateX(-20px) scaleX(0.5);
    }

    50% {
        opacity: 1;
        transform: translateX(0px) scaleX(1);
    }

    100% {
        opacity: 0;
        transform: translateX(20px) scaleX(0.5);
    }
}

/* Removed separate overlay elements - now integrated into background */

.workflow-diagram {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    pointer-events: none;
    z-index: 3;
    transform: translateZ(5px);
}

.workflow-1 {
    z-index: 4;
    transform: translateZ(8px);
}

.workflow-2 {
    z-index: 5;
    opacity: 0.25;
    transform: translateZ(12px);
}

.workflow-3 {
    z-index: 6;
    opacity: 0.30;
    transform: translateZ(15px);
}

/* Process Flow Styles */
.workflow-step {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pulse 4s ease-in-out infinite;
}

.step-circle {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 8px;
}

.step-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.workflow-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: flow 6s ease-in-out infinite;
}

.line-1 {
    top: 30%;
    left: 20%;
    width: 150px;
    transform: rotate(15deg);
}

.line-2 {
    top: 50%;
    left: 50%;
    width: 120px;
    transform: rotate(15deg);
}

.line-3 {
    top: 70%;
    left: 75%;
    width: 100px;
    transform: rotate(15deg);
}

/* Data Flow Styles */
.data-node {
    position: absolute;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    animation: glow 5s ease-in-out infinite;
}

.data-flow {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: dataFlow 8s ease-in-out infinite;
}

.flow-1 {
    top: 40%;
    left: 35%;
    width: 100px;
    transform: rotate(10deg);
}

.flow-2 {
    top: 60%;
    left: 65%;
    width: 80px;
    transform: rotate(10deg);
}

/* Network Node Styles */
.network-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: networkPulse 3s ease-in-out infinite;
}

.network-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: networkFlow 7s ease-in-out infinite;
}

.con-1 {
    top: 35%;
    left: 25%;
    width: 200px;
    transform: rotate(-45deg);
}

.con-2 {
    top: 55%;
    left: 25%;
    width: 150px;
    transform: rotate(25deg);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes flow {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100px);
        opacity: 0;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(50px);
    }
}

@keyframes networkPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

@keyframes networkFlow {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Enhanced Services Section */
.services {
    padding: 150px 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 50%, var(--primary-bg) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.service-card-3d {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 40px;
    transition: var(--transition);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.service-card-3d.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card-3d:hover::before {
    opacity: 1;
}

.service-card-3d:hover {
    border-color: var(--glow-color);
    box-shadow: var(--shadow-light);
}

.service-inner {
    position: relative;
    z-index: 2;
}

.service-icon-3d {
    margin-bottom: 30px;
    perspective: 1000px;
}

.icon-cube {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: iconRotate 10s infinite linear;
    margin: 0 auto;
}

.icon-cube .face {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 15px;
    color: var(--primary-bg);
}

.icon-cube .face:nth-child(1) {
    transform: rotateY(0deg) translateZ(40px);
}

.icon-cube .face:nth-child(2) {
    transform: rotateY(120deg) translateZ(40px);
}

.icon-cube .face:nth-child(3) {
    transform: rotateY(240deg) translateZ(40px);
}

@keyframes iconRotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.service-card-3d h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.service-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-details {
    list-style: none;
    margin-bottom: 25px;
}

.service-details li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-outcome {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-outcome strong {
    color: var(--text-primary);
}

/* Process Section */
.process-section {
    margin-top: 100px;
    text-align: center;
}

.process-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--glow-color);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 150px 0;
    background: var(--secondary-bg);
}

.country-flag {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
}

.testimonial-type {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
    color: var(--text-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--glow-color);
    transform: translateY(-5px);
}

.quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
}

.quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--text-muted);
    position: absolute;
    top: 20px;
    left: 30px;
    opacity: 0.3;
}

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

.author-info .name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

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

.rating {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 150px 0;
    background: var(--primary-bg);
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--glow-color);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
}

/* Enhanced Contact Section */
.contact {
    padding: 150px 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-content>p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.contact-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-secondary);
}

.benefit-icon {
    font-size: 1.3rem;
}

.contact-form form {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    margin-bottom: 60px;
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
textarea {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
textarea:focus {
    outline: none;
    border-color: var(--glow-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 25px;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(5px);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 20px;
}

.contact-alternative {
    text-align: center;
}

.contact-alternative p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-method:hover {
    border-color: var(--glow-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.method-icon {
    font-size: 1.2rem;
}

/* Form Success Message */
.form-success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    padding: 30px;
    border-radius: 15px;
    margin-top: 25px;
    text-align: center;
}

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.form-success p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Stats Section (existing) */
.stats {
    padding: 100px 0;
    background: var(--accent-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

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

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-content p {
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .bar {
        width: 25px;
        height: 3px;
        background: var(--text-primary);
        margin: 3px 0;
        transition: 0.3s;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

    .section-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-group {
        flex-direction: column;
    }

    .contact-benefits {
        flex-direction: column;
        gap: 20px;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content h2 {
        font-size: 2.2rem;
    }

    .contact-form form {
        padding: 30px 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Utility Classes */
.animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}