@charset "utf-8";
/* CSS Document - Cinematic Dark Theme */

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

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: #000;
    color: #d4d4d4;
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced background colors - Cinematic Dark palette */
.neural-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 15% 85%, rgba(120, 0, 0, 0.15) 0%, transparent 50%), 
        radial-gradient(circle at 85% 15%, rgba(80, 0, 0, 0.12) 0%, transparent 50%), 
        radial-gradient(circle at 45% 60%, rgba(60, 0, 0, 0.1) 0%, transparent 50%), 
        radial-gradient(circle at 70% 40%, rgba(40, 0, 0, 0.08) 0%, transparent 50%), 
        linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #000000 100%);
    animation: backgroundPulse 14s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        filter: brightness(0.9) saturate(1.2) hue-rotate(0deg);
    }
    33% {
        filter: brightness(1.1) saturate(1.4) hue-rotate(5deg);
    }
    66% {
        filter: brightness(1.0) saturate(1.3) hue-rotate(-5deg);
    }
}

/* Floating geometric shapes */
.geometric-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(120, 0, 0, 0.3);
    animation: floatShape 20s linear infinite;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    left: 10%;
    animation-delay: 0s;
    border-color: rgba(120, 0, 0, 0.4);
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 70%;
    animation-delay: -5s;
    border-radius: 50%;
    border-color: rgba(100, 0, 0, 0.4);
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 30%;
    animation-delay: -10s;
    transform: rotate(45deg);
    border-color: rgba(80, 0, 0, 0.4);
}

.shape:nth-child(4) {
    width: 120px;
    height: 120px;
    left: 50%;
    animation-delay: -15s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(45deg, rgba(120, 0, 0, 0.1), transparent);
}

@keyframes floatShape {
    from {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    to {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Neural network lines */
.neural-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.neural-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(120, 0, 0, 0.5), transparent);
    height: 1px;
    animation: neuralPulse 3s ease-in-out infinite;
}

.neural-line:nth-child(1) {
    top: 20%;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 0, 0, 0.5), transparent);
    animation-delay: 0s;
}

.neural-line:nth-child(2) {
    top: 60%;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(80, 0, 0, 0.5), transparent);
    animation-delay: -1s;
}

.neural-line:nth-child(3) {
    top: 40%;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 0, 0, 0.5), transparent);
    animation-delay: -2s;
}

@keyframes neuralPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Glassmorphism styles */
.glass {
    background: rgba(20, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(80, 0, 0, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.glass-strong {
    background: rgba(30, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(100, 0, 0, 0.3);
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

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

/* Enhanced Header */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 96%;
    max-width: 1200px;
    padding: 18px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(40, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(80, 0, 0, 0.3);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

header.scrolled {
    background: rgba(50, 0, 0, 0.4);
    backdrop-filter: blur(30px);
    border-color: rgba(100, 0, 0, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(80, 0, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #850000, #ff0000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    animation: logoGlow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px #850000);
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px #ff5050);
    }
    50% {
        filter: drop-shadow(0 0 20px #ff0000);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 12px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: #ff7c7c;
    background: rgba(80, 0, 0, 0.2);
}

.nav-links a.active {
    color: #ff7c7c;
    background: linear-gradient(135deg, rgba(120, 0, 0, 0.3), rgba(80, 0, 0, 0.2));
    box-shadow: 0 0 20px rgba(120, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 15px rgba(120, 0, 0, 0.3);
    border: 1px solid rgba(120, 0, 0, 0.4);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    transform: translateY(-1px);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #850000, #ff0000, #a00000, #ff5050);
    background-size: 400% 400%;
    border-radius: 17px;
    z-index: -2;
    animation: borderGlow 3s ease infinite;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: rgba(40, 0, 0, 0.3);
    border: 1px solid rgba(80, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(80, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(120, 0, 0, 0.3);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #a24747, #ff6969);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(10, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(80, 0, 0, 0.4);
    border-radius: 20px;
    padding: 30px;
    display: none;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.mobile-nav.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
}

.mobile-nav a.active {
    background: linear-gradient(135deg, rgba(120, 0, 0, 0.3), rgba(80, 0, 0, 0.2));
    color: #ff7c7c;
    border: 1px solid rgba(120, 0, 0, 0.4);
    box-shadow: 0 0 25px rgba(120, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mobile-nav a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(40, 0, 0, 0.3);
    border: 1px solid rgba(80, 0, 0, 0.3);
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(80, 0, 0, 0.3);
    color: #ff7c7c;
    box-shadow: 0 0 20px rgba(120, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Section 1: Modern Redesigned Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(120, 0, 0, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: heroGlow 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
        opacity: 1;
    }
}

.hero-content {
    max-width: 1000px;
    padding: 80px 40px;
    margin-top: 120px;
    animation: heroAppear 2.5s ease-out;
    position: relative;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

@keyframes heroAppear {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    font-size: 0.9rem;
    color: #ff7c7c;
    margin-bottom: 25px;
    opacity: 0;
    animation: slideInFromLeft 1.2s ease 0.3s forwards;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    position: relative;
    display: inline-block;
    font-weight: 300;
}

.hero-subtitle::before, .hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff7c7c, transparent);
    animation: linePulse 3s ease infinite;
}

.hero-subtitle::before {
    left: -60px;
}

.hero-subtitle::after {
    right: -60px;
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff2424 0%, #ff0000 30%, #ff6161 60%, #ff2424 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: modernGradient 8s ease infinite;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    text-shadow: none;
    opacity: 0;
    animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;
}

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

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    max-width: 700px;
    margin: 40px auto 50px;
    opacity: 0;
    animation: fadeInScale 1.2s ease 0.9s forwards;
    text-align: center;
}

.hero-description p {
    font-size: 1.2rem;
    color: #d1d1d1;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 300;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    margin: 60px auto 50px;
    max-width: 640px;
    opacity: 0;
    animation: slideUpStagger 1.2s ease 1.2s forwards;
}

.hero-stat {
    text-align: center;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(120, 0, 0, 0.15), rgba(80, 0, 0, 0.1));
    border: 1px solid rgba(120, 0, 0, 0.2);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.hero-stat:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 105, 180, 0.3);
    box-shadow: 0 20px 40px rgba(120, 0, 0, 0.2);
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff8888;
    display: block;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: buttonSlideUp 1.2s ease 1.5s forwards;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #a20210, #ff0000);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 15px rgba(120, 0, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ad2222;
    color: #ffa3a3;
    box-shadow: 0 4px 15px rgba(120, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(120, 0, 0, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(120, 0, 0, 0.2);
    box-shadow: 0 12px 30px rgba(120, 0, 0, 0.3);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 80px;
    color: #ffd4d4;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #b50303, #ff0000);
    border-radius: 2px;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    position: relative;
}

.clients-title {
    text-align: center;
    color: #ff7c7c;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 50px;
    font-weight: 400;
}

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

.client-logo {
    text-align: center;
    padding: 30px 20px;
    color: #cccccc;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 15px;
    background: rgba(40, 0, 0, 0.2);
    border: 1px solid rgba(80, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    background: rgba(60, 0, 0, 0.3);
    border-color: rgba(120, 0, 0, 0.3);
    box-shadow: 0 10px 25px rgba(120, 0, 0, 0.2);
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(120, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #ff7c7c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #ff0000;
    transform: translateX(5px);
}

/* Case Studies */
.case-studies {
    padding: 100px 0;
    position: relative;
}

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

.case-study {
    overflow: hidden;
    transition: all 0.4s ease;
}

.case-study:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(120, 0, 0, 0.3);
}

.case-image {
    height: 200px;
    background: linear-gradient(135deg, #1a0a0a, #330a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.case-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-results {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.result {
    text-align: center;
}

.result-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8888;
    display: block;
}

.result-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-link {
    color: #ff7c7c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.case-link:hover {
    color: #ff0000;
    transform: translateX(5px);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    position: relative;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 300px; /* Ensure space for content */
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
    width: 100%;
}

.testimonial-slide.active {
    display: block;
}

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

.testimonial-content {
    padding: 50px;
    text-align: center;
    width: 100%;
}

.testimonial-quote {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: -30px;
    top: -20px;
    font-size: 4rem;
    color: #ff7c7c;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #820606, #ff0000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.author-info h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 5px;
    text-align: left;
}

.author-info p {
    font-size: 0.9rem;
    color: #999;
    text-align: left;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-prev, .testimonial-next {
    background: rgba(40, 0, 0, 0.3);
    border: 1px solid rgba(80, 0, 0, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: rgba(80, 0, 0, 0.4);
    border-color: rgba(120, 0, 0, 0.4);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff7c7c;
    transform: scale(1.2);
}

/* Differentiator Section */
.differentiator {
    padding: 100px 0;
    position: relative;
}

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

.differentiator-text h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
}

.differentiator-text p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.differentiator-text ul {
    color: #cccccc;
    margin: 25px 0;
    padding-left: 20px;
}

.differentiator-text ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
}

.differentiator-text ul li::before {
    content: '▸';
    color: #ff7c7c;
    position: absolute;
    left: -20px;
}

.differentiator-visual {
    padding: 40px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-animation {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(40, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulseStep 2s ease-in-out infinite;
}

.process-step:nth-child(1) { animation-delay: 0s; }
.process-step:nth-child(2) { animation-delay: 0.5s; }
.process-step:nth-child(3) { animation-delay: 1s; }
.process-step:nth-child(4) { animation-delay: 1.5s; }

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

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #820606, #ff0000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-text {
    color: #ffffff;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 50px 40px;
}

.contact-info h3 {
    font-size: 2.2rem;
    color: #ff7d7d;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-info p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cccccc;
}

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

.contact-form {
    padding: 50px 40px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(40, 0, 0, 0.3);
    border: 1px solid rgba(80, 0, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ff7c7c;
    box-shadow: 0 0 20px rgba(255, 124, 124, 0.3);
    background: rgba(60, 0, 0, 0.4);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #888;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ff7c7c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #820606, #ff0000);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 124, 124, 0.4);
}

/* Form Messages */
#form-messages {
    margin-bottom: 20px;
}

.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(50, 205, 50, 0.2);
    border: 1px solid rgba(50, 205, 50, 0.3);
    color: #32cd32;
}

.form-message.error {
    background: rgba(255, 68, 68, 0.2);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

.field-error {
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(80, 0, 0, 0.3);
    background: rgba(10, 0, 0, 0.7);
    backdrop-filter: blur(20px);
}

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

.footer-logo .logo {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #ff7c7c;
    transform: translateX(5px);
}

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

.footer-bottom p {
    color: #888;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #ff7c7c;
}

/* Coming Soon Page */
.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.coming-soon-content {
    max-width: 800px;
    padding: 80px 40px;
    animation: heroAppear 2.5s ease-out;
    position: relative;
}

.coming-soon h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff2424 0%, #ff0000 30%, #ff6161 60%, #ff2424 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: modernGradient 8s ease infinite;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.coming-soon p {
    font-size: 1.3rem;
    color: #d1d1d1;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.countdown-item {
    padding: 20px;
    min-width: 100px;
    background: linear-gradient(135deg, rgba(120, 0, 0, 0.15), rgba(80, 0, 0, 0.1));
    border: 1px solid rgba(120, 0, 0, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff8888;
    display: block;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.countdown-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.notify-form {
    max-width: 500px;
    margin: 40px auto 0;
}

.notify-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.notify-input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(40, 0, 0, 0.3);
    border: 1px solid rgba(80, 0, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.notify-input:focus {
    outline: none;
    border-color: #ff7c7c;
    box-shadow: 0 0 20px rgba(255, 124, 124, 0.3);
    background: rgba(60, 0, 0, 0.4);
}

.notify-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #820606, #ff0000);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.notify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 124, 124, 0.4);
}

.notify-message {
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.notify-message.success {
    background: rgba(50, 205, 50, 0.2);
    border: 1px solid rgba(50, 205, 50, 0.3);
    color: #32cd32;
}

.notify-message.error {
    background: rgba(255, 68, 68, 0.2);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .differentiator-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        padding: 40px 20px;
        margin-top: 100px;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
    
    .hero-description p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 40px auto 35px;
    }
    
    .hero-stat {
        padding: 15px;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-subtitle::before, .hero-subtitle::after {
        width: 25px;
    }
    
    .hero-subtitle::before {
        left: -35px;
    }
    
    .hero-subtitle::after {
        right: -35px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .services-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .notify-input-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info h4,
    .author-info p {
        text-align: center;
    }
    
    .coming-soon-content {
        padding: 40px 20px;
    }
    
    .coming-soon p {
        font-size: 1.1rem;
    }
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff4e4e, #ff0000);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff0000, #800000);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

/* Enhanced form styles for floating labels */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(40, 0, 0, 0.3);
    border: 1px solid rgba(80, 0, 0, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ff7c7c;
    box-shadow: 0 0 20px rgba(255, 124, 124, 0.3);
    background: rgba(60, 0, 0, 0.4);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: transparent;
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #888;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: #ff7c7c;
    background: rgba(0, 0, 0, 0.8);
    padding: 0 8px;
}

/* Auth Pages */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-form {
    width: 100%;
    max-width: 450px;
    padding: 50px 40px;
    text-align: center;
}

.auth-header {
    margin-bottom: 40px;
}

.auth-header h2 {
    font-size: 2.2rem;
    color: #ff7c7c;
    margin-bottom: 10px;
    font-weight: 600;
}

.auth-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

.auth-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer a {
    color: #ff7c7c;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.alert.success {
    background: #32cd3233;
    border: 1px solid rgba(50, 205, 50, 0.3);
    color: #32cd32;
}

.alert.error {
    background: rgba(255, 68, 68, 0.2);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}
/* CSS Document - Cinematic Dark Theme with Glowy Contact Form */

/* ... (Keep all the previous CSS styles above the contact section unchanged) ... */

/* Contact Section - Glowy Redesign */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 50px 40px;
}

.contact-info h3 {
    font-size: 2.2rem;
    color: #ff7d7d;
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255, 125, 125, 0.5);
}

.contact-info p {
    color: #ffd4d4;
    line-height: 1.7;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 212, 212, 0.3);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffd4d4;
    text-shadow: 0 0 10px rgba(255, 212, 212, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #ff7c7c;
    text-shadow: 0 0 15px rgba(255, 124, 124, 0.6);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 124, 124, 0.5));
}

.contact-form {
    padding: 50px 40px;
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0000, #ff5050, #ff0000, #ff5050);
    background-size: 400% 400%;
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
    opacity: 0.7;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 124, 124, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    resize: vertical;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    box-shadow: 
        inset 0 0 20px rgba(255, 124, 124, 0.1),
        0 0 20px rgba(255, 124, 124, 0.1);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ff7c7c;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        inset 0 0 30px rgba(255, 124, 124, 0.2),
        0 0 30px rgba(255, 124, 124, 0.3),
        0 0 40px rgba(255, 124, 124, 0.2);
    transform: translateY(-2px);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ff7c7c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
}

/* Floating Labels with Glow */
.form-group {
    position: relative;
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.4s ease;
    background: transparent;
    padding: 0 5px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: #ff7c7c;
    background: rgba(0, 0, 0, 0.9);
    padding: 0 8px;
    text-shadow: 0 0 15px rgba(255, 124, 124, 0.8);
    font-weight: 600;
}

/* Submit Button with Enhanced Glow */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #ff0000, #ff5050);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.3),
        0 0 40px rgba(255, 0, 0, 0.2);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0000, #ff5050, #ff0000, #ff5050);
    background-size: 400% 400%;
    border-radius: 14px;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
    opacity: 0.8;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.5),
        0 0 60px rgba(255, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.4);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Form Messages with Glow */
#form-messages {
    margin-bottom: 20px;
}

.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.form-message.success {
    background: rgba(50, 205, 50, 0.2);
    border: 1px solid rgba(50, 205, 50, 0.4);
    color: #90ff90;
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.3);
    text-shadow: 0 0 15px rgba(144, 255, 144, 0.6);
}

.form-message.error {
    background: rgba(255, 68, 68, 0.2);
    border: 1px solid rgba(255, 68, 68, 0.4);
    color: #ff9090;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
    text-shadow: 0 0 15px rgba(255, 144, 144, 0.6);
}

.field-error {
    color: #ff9090;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
    text-shadow: 0 0 10px rgba(255, 144, 144, 0.6);
}

/* Enhanced Border Glow Animation */
@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.7;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info,
    .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group input, 
    .form-group select, 
    .form-group textarea {
        padding: 15px 18px;
    }
}

@media (max-width: 480px) {
    .contact-info h3 {
        font-size: 1.6rem;
    }
    
    .contact-details {
        gap: 15px;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
}

/* Enhanced focus states for accessibility */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(255, 124, 124, 0.5);
    outline-offset: 2px;
}

/* Custom scrollbar for textarea */
.form-group textarea::-webkit-scrollbar {
    width: 8px;
}

.form-group textarea::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.form-group textarea::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff0000, #ff5050);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.form-group textarea::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff5050, #ff0000);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}
/* ===== FUTURISTIC ENHANCEMENTS ===== */

/* Cyber Grid Background */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(120, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Holographic Effect */
.holographic {
    position: relative;
    overflow: hidden;
}

.holographic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: hologram 3s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes hologram {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Enhanced Hero Section with Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff5050;
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Data Stream Effect */
.data-stream {
    position: fixed;
    top: 0;
    right: 10%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #ff0000, transparent);
    z-index: -2;
    animation: dataFlow 4s linear infinite;
}

.data-stream::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, #ff0000, transparent);
    animation: dataPulse 2s ease-in-out infinite;
}

@keyframes dataFlow {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes dataPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===== NEW SECTIONS ===== */

/* Founder Section */
.founder-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(120, 0, 0, 0.4);
}

.founder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(120, 0, 0, 0.2), transparent);
    z-index: 1;
}

.founder-info {
    padding: 40px;
}

.founder-name {
    font-size: 2.5rem;
    color: #ff7c7c;
    margin-bottom: 15px;
    font-weight: 700;
}

.founder-title {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.founder-bio {
    color: #d1d1d1;
    line-height: 1.8;
    margin-bottom: 30px;
}

.founder-quote {
    font-style: italic;
    color: #ff7c7c;
    border-left: 3px solid #ff7c7c;
    padding-left: 20px;
    margin: 30px 0;
    font-size: 1.2rem;
}

/* Technology Stack Section */
.tech-stack {
    padding: 100px 0;
    background: rgba(10, 0, 0, 0.5);
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(40, 0, 0, 0.3);
    border: 1px solid rgba(80, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 124, 124, 0.2), transparent);
    transition: left 0.5s ease;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 124, 124, 0.5);
    box-shadow: 0 15px 30px rgba(120, 0, 0, 0.3);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.tech-name {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Process Timeline */
.process-timeline {
    padding: 100px 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #ff0000, transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    padding: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff0000;
    box-shadow: 0 0 0 5px rgba(255, 0, 0, 0.3);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-content {
    background: rgba(40, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(80, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(120, 0, 0, 0.2);
}

.timeline-step {
    font-size: 0.9rem;
    color: #ff7c7c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Results Showcase */
.results-showcase {
    padding: 100px 0;
    background: rgba(15, 0, 0, 0.6);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.result-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: rgba(40, 0, 0, 0.3);
    border: 1px solid rgba(80, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 0, 0, 0.1), transparent);
    z-index: -1;
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 124, 124, 0.5);
    box-shadow: 0 15px 30px rgba(120, 0, 0, 0.3);
}

.result-value {
    font-size: 3rem;
    font-weight: 800;
    color: #ff8888;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 136, 136, 0.5);
}

.result-label {
    font-size: 1rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Enhanced CTA Section */
.enhanced-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 800;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-buttons-enhanced {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    padding: 18px 45px;
    background: linear-gradient(135deg, #ff0000, #a20210);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(120, 0, 0, 0.4);
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button-primary:hover::before {
    left: 100%;
}

.cta-button-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(120, 0, 0, 0.6);
}

.cta-button-secondary {
    padding: 18px 45px;
    background: transparent;
    border: 2px solid #ff7c7c;
    color: #ff7c7c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 124, 124, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.cta-button-secondary:hover::before {
    width: 100%;
}

.cta-button-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(120, 0, 0, 0.3);
}

/* ===== ENHANCED EXISTING ELEMENTS ===== */

/* Enhanced Header with Glow */
header.enhanced {
    background: rgba(30, 0, 0, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(120, 0, 0, 0.4);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(80, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Enhanced Hero */
.hero.enhanced {
    min-height: 110vh;
    display: flex;
    align-items: center;
}

.hero-content.enhanced {
    margin-top: 0;
}

/* Enhanced Service Cards */
.service-card.enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 0, 0, 0.1), transparent);
    z-index: -1;
}

.service-card.enhanced:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(120, 0, 0, 0.4),
        0 0 0 1px rgba(255, 124, 124, 0.3);
}

/* Enhanced Testimonials */
.testimonials-carousel.enhanced {
    position: relative;
    overflow: visible;
}

.testimonial-slide.enhanced {
    padding: 20px;
}

.testimonial-content.enhanced {
    position: relative;
    padding: 50px;
    border-radius: 20px;
    background: rgba(40, 0, 0, 0.4);
    border: 1px solid rgba(80, 0, 0, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.testimonial-content.enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(120, 0, 0, 0.3);
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */

@media (max-width: 1024px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 80px !important;
        padding-right: 20px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 20px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons-enhanced {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tech-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
}