/* Cobra Development - Clean WOW Landing Page Styles */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cobra-orange: #FF6B35;
  --cobra-orange-dark: #E55A2B;
  --cobra-orange-light: #FF8A5B;
  --dark-bg: #0A0A0A;
  --dark-secondary: #1A1A1A;
  --dark-tertiary: #2A2A2A;
  --text-light: #FFFFFF;
  --text-gray: #B0B0B0;
  --accent-green: #4ECDC4;
  --accent-purple: #8B5CF6;
  --accent-blue: #3B82F6;
  --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FF8A5B 50%, #FFB366 100%);
  --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #2A2A2A 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--cobra-orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
}

.custom-cursor::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--cobra-orange);
  border-radius: 50%;
  opacity: 0.3;
  animation: cursorPulse 2s infinite;
}

@keyframes cursorPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.5); opacity: 0.1; }
}

/* Clean Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  z-index: -2;
}

.animated-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  animation: subtleFloat 20s ease-in-out infinite;
}

@keyframes subtleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Particle System */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--cobra-orange);
  border-radius: 50%;
  animation: particleFloat 15s linear infinite;
  opacity: 0.4;
}

.particle:nth-child(odd) {
  background: var(--accent-green);
  animation-duration: 20s;
}

.particle:nth-child(3n) {
  background: var(--accent-purple);
  animation-duration: 25s;
}

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

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--cobra-orange);
  animation: logoSpin 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6));
}

@keyframes logoSpin {
  0%, 100% { 
    transform: rotate(0deg) scale(1);
    border-color: var(--cobra-orange);
  }
  50% { 
    transform: rotate(180deg) scale(1.1);
    border-color: var(--cobra-orange-light);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  transform: translateY(-100%);
  animation: slideDown 1s ease-out 2s forwards;
  height: 80px;
}

@keyframes slideDown {
  to { transform: translateY(0); }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--cobra-orange);
  transform: scale(1.05);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cobra-orange);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5));
}

.logo:hover img {
  transform: rotate(360deg) scale(1.1);
  border-color: var(--cobra-orange-light);
  filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.8));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  white-space: nowrap;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-orange);
  border-radius: 25px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: -1;
}

.nav-links a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-links a:hover {
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 2rem;
  padding-top: 120px;
  overflow: hidden;
}

/* Global padding for all content to avoid navbar overlap */
body {
  padding-top: 80px;
}

/* Client area specific padding */
.client-container {
  padding-top: 2rem;
}

.hero-content {
  max-width: 1000px;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--text-light);
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: titleSlideIn 1s ease-out 2.5s forwards;
}

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

.hero .subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--cobra-orange);
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 3s both;
}

.hero .description {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 3.5s both;
}

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

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 3.8s both;
}

.hero-stats .stat {
  text-align: center;
  padding: 1rem;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 120px;
}

.hero-stats .stat:hover {
  transform: translateY(-5px);
  border-color: var(--cobra-orange);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.hero-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cobra-orange);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 4s both;
}

.btn {
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn::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.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-orange);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.6);
}

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

.btn-secondary:hover {
  background: var(--cobra-orange);
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

/* Floating Logo Elements */
.floating-logo {
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0.1;
  animation: floatLogo 15s ease-in-out infinite;
  z-index: -1;
  border-radius: 50%;
  object-fit: cover;
  filter: blur(2px);
}

.floating-logo:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-logo:nth-child(2) {
  top: 50%;
  right: 5%;
  animation-delay: 5s;
}

.floating-logo:nth-child(3) {
  bottom: 10%;
  left: 15%;
  animation-delay: 10s;
}

@keyframes floatLogo {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.1;
  }
  25% { 
    transform: translateY(-30px) rotate(90deg) scale(1.1);
    opacity: 0.15;
  }
  50% { 
    transform: translateY(-60px) rotate(180deg) scale(1.2);
    opacity: 0.2;
  }
  75% { 
    transform: translateY(-30px) rotate(270deg) scale(1.1);
    opacity: 0.15;
  }
}

/* Main Content Grid */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 1s ease-out 5s both;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--cobra-orange);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

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

/* Advanced Services Section */
.services {
  margin-bottom: 6rem;
}

/* Services Cool */
.services-cool {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--cobra-orange);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover .card-glow {
  opacity: 1;
}

.service-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  color: white;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 20px 45px rgba(255, 107, 53, 0.6);
}

.service-card h3 {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card p {
  position: relative;
  z-index: 2;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.service-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.service-tags span {
  background: rgba(255, 107, 53, 0.2);
  color: var(--cobra-orange);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-tags span {
  background: rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

/* Services Grid (fallback) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Service Cards */
.service-card {
  background: rgba(26, 26, 26, 0.8);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-orange);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--cobra-orange);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

/* Service Icons */
.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Service Features */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.feature-tag {
  background: rgba(255, 107, 53, 0.1);
  color: var(--cobra-orange);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--cobra-orange);
  transform: scale(1.05);
}

/* Service Buttons */
.service-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--gradient-orange);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.service-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
  color: white;
}

/* Enhanced Service Items */
.service-item {
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  background: rgba(255, 107, 53, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-item::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: var(--cobra-orange);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -2;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-item:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--cobra-orange);
  box-shadow: 
    0 15px 30px rgba(255, 107, 53, 0.15),
    0 0 15px rgba(255, 107, 53, 0.05);
}

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

.service-item:hover::after {
  opacity: 0.3;
}

.service-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--cobra-orange);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.service-item h3::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--cobra-orange);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover h3::before {
  opacity: 1;
}

.service-item:hover h3 {
  color: var(--cobra-orange-light);
  transform: translateX(10px);
}

.service-item p {
  color: var(--text-gray);
  line-height: 1.6;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.service-item:hover p {
  color: var(--text-light);
  transform: translateX(5px);
}

/* About Section */
.about {
  margin-bottom: 6rem;
}

/* About Cool */
.about-cool {
  margin-bottom: 4rem;
}

.about-main {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-orange);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.about-badge i {
  font-size: 1rem;
}

.about-main h3 {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-main p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--cobra-orange);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  background: var(--gradient-orange);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
}

.feature-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.feature-content h4 {
  color: var(--text-light);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Advanced Features Section */
.advanced-features {
  margin-bottom: 6rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(26, 26, 26, 0.8);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-orange);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--cobra-orange);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.feature-list li i {
  color: var(--cobra-orange);
  font-size: 0.8rem;
}

/* About Content */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

/* About Text Items */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.about-item:hover::before {
  opacity: 0.05;
}

.about-item:hover {
  transform: translateY(-5px);
  border-color: var(--cobra-orange);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

/* About Icons */
.about-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.about-item:hover .about-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
}

/* About Info */
.about-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--cobra-orange);
  font-weight: 600;
}

.about-info p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.about-item:hover .about-info p {
  color: var(--text-light);
}

/* About Stats */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

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

.stat-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--cobra-orange);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cobra-orange);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-item:hover .stat-label {
  color: var(--text-light);
}

/* About CTA */
.about-cta {
  text-align: center;
  padding: 3rem;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-orange);
  opacity: 0.05;
  z-index: -1;
}

.about-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--cobra-orange);
  font-weight: 700;
}

.about-cta p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Compact Contact Section */
.contact {
  background: rgba(26, 26, 26, 0.6);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  margin-top: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.contact:hover::before {
  opacity: 0.05;
}

.contact:hover {
  transform: translateY(-5px);
  border-color: var(--cobra-orange);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--cobra-orange);
  font-weight: 700;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-item:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
  border-color: var(--cobra-orange);
}

.contact-item strong {
  color: var(--cobra-orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.contact-item span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-item a {
  color: var(--cobra-orange);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.contact-item a:hover {
  color: var(--cobra-orange-light);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 107, 53, 0.3);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
}

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

.footer p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.3);
  font-weight: 600;
}

.social-links a:hover {
  background: var(--cobra-orange);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero {
    padding: 0 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .main-content {
    padding: 2rem 1rem;
  }
  
  .services, .about, .contact {
    padding: 2rem;
  }
  
  .floating-logo {
    display: none;
  }
  
  .custom-cursor {
    display: none;
  }
  
  body {
    cursor: auto;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  /* Services Grid Responsive */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  /* About Content Responsive */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .about-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .about-icon {
    margin: 0 auto;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .hero-stats .stat {
    min-width: 100px;
    padding: 0.8rem;
  }
  
  .hero-stats .stat-number {
    font-size: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .services-cool {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .about-main h3 {
    font-size: 2rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .services, .about, .contact {
    padding: 1.5rem;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
  }
  
  .service-item {
    padding: 1.5rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--cobra-orange);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cobra-orange-dark);
}