/* =========================================
   EXTRACTED EV PAGE STYLES - PREMIUM
========================================= */

/* Hero Section */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  background-color: #fafbfc;
}

.ev-hero-section {
  position: relative;
  height: 55vh;
  min-height: 450px;
  background: url('../images/banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 4px solid #10b981;
}

.ev-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 8, 23, 0.9) 0%, rgba(5, 17, 36, 0.7) 100%);
  z-index: 1;
}

.ev-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
}

.ev-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease forwards;
}

.ev-hero-subtitle {
  font-size: 1.25rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.ev-hero-cta {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.ev-breadcrumb {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 8px 24px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ev-breadcrumb a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.ev-breadcrumb a:hover {
  color: #10b981;
}

.ev-breadcrumb .separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.4);
}

.ev-breadcrumb .current {
  color: #10b981;
  font-weight: 700;
}

/* Common Section Styles */


.ev-section-light {
  background: #f8fafc;
}

.ev-section-dark {
  background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
  color: #fff;
}

.ev-section-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.ev-section-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.ev-section-dark .ev-section-header h2 {
  color: #fff;
}

.ev-section-header p {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.7;
}

.ev-section-dark .ev-section-header p {
  color: #cbd5e1;
}

/* What is Extracted Section */
.ev-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ev-intro-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ev-intro-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 4px solid #10b981;
  border-radius: 20px;
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}

.ev-intro-img {
  width: 100%;
  height: auto;
  display: block;
}

.ev-intro-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
}

.ev-intro-text p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Materials We Recover */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.material-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.material-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 4px;
  background: #10b981;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.material-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.material-card:hover::after {
  transform: scaleX(1);
}

.material-icon {
  width: 70px;
  height: 70px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.material-card:hover .material-icon {
  transform: rotateY(180deg);
  background: #10b981;
  color: #fff;
}

.material-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.material-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Recovery Process Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: rgba(16, 185, 129, 0.3);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  width: 50%;
  padding-right: 50px;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
  padding-right: 0;
  padding-left: 50px;
}

.timeline-dot {
  position: absolute;
  top: 20px;
  right: -11px;
  width: 24px;
  height: 24px;
  background: #10b981;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -13px;
}

.timeline-content {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  border-color: #10b981;
}

.timeline-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.timeline-content p {
  color: #475569;
  line-height: 1.6;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: #10b981;
}

.benefit-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Industries We Serve */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.industry-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 20px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.industry-card:hover {
  background: #10b981;
  color: #fff;
  border-color: #10b981;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.industry-card svg {
  color: #10b981;
  transition: color 0.3s ease;
}

.industry-card:hover svg {
  color: #fff;
}

/* Statistics Section */
.stats-section {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 80px 0;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.stat-item p {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why Cloud9Trading */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
}

.why-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* CTA Section */
.ev-cta-section {
  background: #0f172a;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ev-cta-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ev-cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.ev-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.ev-cta-desc {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.ev-cta-btn {
  font-size: 1.1rem;
  padding: 16px 36px;
}

.ev-cta-btn-outline {
  font-size: 1.1rem;
  padding: 16px 36px;
  border-color: #10b981;
  color: #10b981;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Key Applications */
.app-section {
  padding: 80px 0;
  background: #fff;
}

.app-container {
  background: #0f172a;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  color: #fff;
  margin-top: 40px;
}

.app-left {
  flex: 0 0 35%;
}

.app-left-icon {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  margin-bottom: 24px;
}

.app-left h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.app-left p {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 1.05rem;
}

.app-right {
  flex: 1;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.app-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.app-item:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.app-item-check {
  color: #10b981;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-intro-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { left: 30px; }
  .timeline-item { width: 100%; padding-left: 80px; padding-right: 0; }
  .timeline-item:nth-child(even) { padding-left: 80px; }
  .timeline-dot { left: 18px !important; right: auto !important; }
  /* Key Applications */
  .app-container { flex-direction: column; padding: 30px; }
  .app-left { flex: auto; }
}

@media (max-width: 768px) {
  .materials-grid, .benefits-grid, .stats-grid { grid-template-columns: 1fr; }
  .ev-hero-title { font-size: 2rem; }
  .ev-section { padding: 60px 0; }
  .ev-cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  /* Hero */
  .ev-hero-section { min-height: 250px !important; height: auto !important; padding: 40px 0 !important; }
  .ev-hero-title { font-size: 1.6rem !important; margin-bottom: 8px !important; }
  .ev-hero-subtitle { font-size: 0.9rem !important; margin-bottom: 20px !important; }
  .ev-breadcrumb { padding: 6px 15px !important; font-size: 0.8rem !important; margin-bottom: 10px !important; }

  /* Sections & Headers */
  .ev-section { padding: 40px 0 !important; }
  .ev-section-header { margin-bottom: 30px !important; text-align: left !important; }
  .ev-section-header h2 { font-size: 1.5rem !important; margin-bottom: 10px !important; line-height: 1.2 !important; text-align: left !important; }
  .ev-section-header p { font-size: 0.9rem !important; text-align: justify !important; text-justify: inter-word !important; }

  /* Intro Section */
  .ev-intro-grid { gap: 20px !important; }
  .ev-intro-text { padding: 20px 5px !important; }
  .ev-intro-text h2 { font-size: 1.4rem !important; margin-bottom: 10px !important; text-align: left !important; }
  .ev-intro-text p { font-size: 0.95rem !important; margin-bottom: 15px !important; text-align: justify !important; text-justify: inter-word !important; }
  
  /* Materials Grid */
  .materials-grid { gap: 15px !important; }
  .material-card { padding: 20px 15px !important; }
  .material-icon { width: 45px !important; height: 45px !important; margin-bottom: 15px !important; }
  .material-icon svg { width: 22px !important; height: 22px !important; }
  .material-card h3 { font-size: 1.1rem !important; margin-bottom: 8px !important; }
  .material-card p { font-size: 0.88rem !important; }

  /* Timeline */
  .timeline::before { left: 15px !important; }
  .timeline-item { padding-left: 45px !important; margin-bottom: 30px !important; }
  .timeline-item:nth-child(even) { padding-left: 45px !important; }
  .timeline-dot { left: 4px !important; width: 20px !important; height: 20px !important; border-width: 3px !important; }
  .timeline-content { padding: 15px !important; }
  .timeline-content h3 { font-size: 1rem !important; margin-bottom: 5px !important; }
  .timeline-content p { font-size: 0.8rem !important; line-height: 1.5 !important; }

  /* Benefits Grid */
  .benefits-grid { gap: 15px !important; }
  .benefit-item { padding: 20px 15px !important; }
  .benefit-icon { width: 40px !important; height: 40px !important; margin-bottom: 10px !important; }
  .benefit-item h3 { font-size: 1.05rem !important; margin-bottom: 8px !important; }
  .benefit-item p { font-size: 0.88rem !important; }

  /* Industries We Serve */
  /* Industries We Serve */
  .industries-grid { gap: 10px !important; flex-direction: column !important; }
  .industry-card { font-size: 0.88rem !important; padding: 12px 20px !important; gap: 8px !important; max-width: 90% !important; }
  .industry-card:nth-child(odd) { align-self: flex-start !important; }
  .industry-card:nth-child(even) { align-self: flex-end !important; }
  .industry-card svg { width: 18px !important; height: 18px !important; }

  /* Why Choose */
  .why-table { margin-top: 10px !important; font-size: 0.85rem !important; }
  .why-table td { padding: 8px 5px !important; }
  .why-table td:nth-child(2) { padding-left: 10px !important; width: 30% !important; }
  .why-icon { width: 24px !important; height: 24px !important; }
  .why-icon svg { width: 14px !important; height: 14px !important; }
  .why-table strong { font-size: 0.9rem !important; }

  /* Stats Grid */
  .stats-section { padding: 40px 0 !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px 10px !important; }
  .stat-item h3 { font-size: 1.5rem !important; margin-bottom: 5px !important; }
  .stat-item p { font-size: 0.75rem !important; }

  /* CTA Section */
  .ev-cta-section { padding: 40px 15px !important; text-align: left !important; }
  .ev-cta-title { font-size: 1.35rem !important; margin-bottom: 10px !important; line-height: 1.3 !important; text-align: left !important; }
  .ev-cta-desc { font-size: 0.9rem !important; text-align: left !important; margin: 0 !important; line-height: 1.6 !important; }
  .ev-cta-buttons { gap: 10px !important; margin-top: 20px !important; justify-content: flex-start !important; flex-direction: column !important; }
  .ev-cta-btn, .ev-cta-btn-outline { padding: 12px 20px !important; font-size: 0.95rem !important; text-align: center !important; }

  /* Key Applications */
  .app-container { padding: 20px 12px !important; margin-top: 20px !important; gap: 15px !important; border-radius: 12px !important; }
  .app-left-icon { width: 40px !important; height: 40px !important; margin-bottom: 12px !important; }
  .app-left-icon svg { width: 18px !important; height: 18px !important; }
  .app-left h3 { font-size: 1.2rem !important; margin-bottom: 8px !important; line-height: 1.2 !important; }
  .app-left p { font-size: 0.85rem !important; margin-bottom: 15px !important; line-height: 1.5 !important; }
  .app-grid { grid-template-columns: 1fr !important; gap: 8px !important; }
  .app-item { padding: 10px 12px !important; font-size: 0.82rem !important; border-radius: 8px !important; gap: 8px !important; }
  .app-item svg { width: 14px !important; height: 14px !important; }
}

