/* Auto Jobs Apply Page Styles */

:root {
  --primary-gradient: linear-gradient(135deg, #8585ff, #66ccff);
  --dark-bg: #121212;
  --card-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --info-color: #2196f3;
}

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

body {
  background: var(--dark-bg);
  color: var(--text-primary);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #121212 0%, #1a1a1a 40%, #2a2a4a 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(133, 133, 255, 0.1),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(102, 204, 255, 0.1),
      transparent 50%
    );
  pointer-events: none;
}

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

.badge-wrapper {
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(133, 133, 255, 0.2);
  border: 1px solid rgba(133, 133, 255, 0.4);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #8585ff;
  font-weight: 600;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

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

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

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

.stat-item h3 {
  font-size: 2.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-bottom: 5px;
}

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

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(133, 133, 255, 0.4);
  color: white;
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid #8585ff;
  color: #8585ff;
}

.btn-outline-primary:hover {
  background: rgba(133, 133, 255, 0.1);
  transform: translateY(-3px);
  color: #8585ff;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  color: white;
}

/* Floating Cards Animation */
.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid rgba(133, 133, 255, 0.3);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.floating-card .platform-icon {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.floating-card p {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.status-badge {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.status-badge.success {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.status-badge.processing {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
}

.status-badge.pending {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
}

.card-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.card-2 {
  top: 15%;
  right: 5%;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 30%;
  left: 15%;
  animation-delay: 3s;
}

.card-4 {
  bottom: 10%;
  right: 15%;
  animation-delay: 4.5s;
}

.card-1 .platform-icon {
  color: #0077b5;
}

.card-2 .platform-icon {
  color: #ff6b35;
}

.card-3 .platform-icon {
  color: #2196f3;
}

.card-4 .platform-icon {
  color: #66ccff;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(2deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
  75% {
    transform: translateY(-15px) rotate(1deg);
  }
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 280px;
  background: var(--card-bg);
  border: 1px solid rgba(133, 133, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

.step-card:nth-child(1) {
  transition-delay: 0.1s;
}

.step-card:nth-child(3) {
  transition-delay: 0.2s;
}

.step-card:nth-child(5) {
  transition-delay: 0.3s;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(133, 133, 255, 0.5);
  box-shadow: 0 20px 50px rgba(133, 133, 255, 0.2);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: white;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-visual {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.visual-box {
  flex: 1;
  min-width: 100px;
  background: rgba(133, 133, 255, 0.1);
  border: 1px solid rgba(133, 133, 255, 0.3);
  border-radius: 10px;
  padding: 15px 10px;
  text-align: center;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.visual-box.success {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.3);
}

.visual-box i {
  font-size: 1.5rem;
  color: #8585ff;
}

.visual-box.success i {
  color: #4caf50;
}

.step-arrow {
  font-size: 2rem;
  color: rgba(133, 133, 255, 0.5);
}

/* Platforms Section */
.platforms-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
}

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

.platform-card {
  background: var(--card-bg);
  border: 1px solid rgba(133, 133, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
}

.platform-card.animate-in {
  opacity: 1;
  transform: scale(1);
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.platform-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(133, 133, 255, 0.5);
  box-shadow: 0 20px 50px rgba(133, 133, 255, 0.2);
}

.platform-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.platform-icon-wrapper.linkedin {
  background: rgba(0, 119, 181, 0.2);
  color: #0077b5;
}

.platform-icon-wrapper.dice {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
}

.platform-icon-wrapper.indeed {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
}

.platform-icon-wrapper.company {
  background: rgba(102, 204, 255, 0.2);
  color: #66ccff;
}

.platform-icon-wrapper.glassdoor {
  background: rgba(13, 161, 58, 0.2);
  color: #0da13a;
}

.platform-icon-wrapper.ziprecruiter {
  background: rgba(157, 108, 235, 0.2);
  color: #9d6ceb;
}

.platform-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.platform-card p {
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.platform-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(133, 133, 255, 0.2);
  color: #8585ff;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(133, 133, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(133, 133, 255, 0.5);
  box-shadow: 0 20px 50px rgba(133, 133, 255, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

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

/* Demo Section */
.demo-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
}

.demo-container {
  max-width: 900px;
  margin: 0 auto;
}

.demo-screen {
  background: var(--card-bg);
  border: 1px solid rgba(133, 133, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.demo-header {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(133, 133, 255, 0.2);
}

.demo-dots {
  display: flex;
  gap: 8px;
}

.demo-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}

.demo-dots span:nth-child(2) {
  background: #ffbd2e;
}

.demo-dots span:nth-child(3) {
  background: #28ca42;
}

.demo-title {
  font-weight: 600;
  color: var(--text-secondary);
}

.demo-content {
  padding: 30px;
}

.demo-log {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  max-height: 300px;
  overflow-y: auto;
}

.log-entry {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  margin-bottom: 10px;
  background: rgba(133, 133, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.log-entry:last-child {
  margin-bottom: 0;
}

.log-entry.active {
  background: rgba(255, 152, 0, 0.1);
  border-left: 3px solid #ff9800;
}

.timestamp {
  font-family: "Courier New", monospace;
  color: var(--text-secondary);
  font-size: 0.85rem;
  min-width: 70px;
}

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

.log-icon.success {
  color: #4caf50;
}

.log-icon.processing {
  color: #ff9800;
  animation: pulse 1.5s ease-in-out infinite;
}

.log-icon.pending {
  color: #2196f3;
}

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

.log-text {
  flex: 1;
  color: var(--text-primary);
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.demo-stats .stat {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(133, 133, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(133, 133, 255, 0.2);
}

.demo-stats .stat i {
  font-size: 2rem;
  color: #8585ff;
}

.demo-stats .stat strong {
  display: block;
  font-size: 1.8rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-stats .stat span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.cta-card {
  background: var(--primary-gradient);
  border-radius: 30px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1),
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

.cta-card h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.cta-card p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
}

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

.faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(133, 133, 255, 0.2);
  border-radius: 16px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(133, 133, 255, 0.4);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

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

.faq-question h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-question i {
  font-size: 1.2rem;
  color: #8585ff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-visual {
    height: 400px;
    margin-top: 50px;
  }

  .process-steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }

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

  .cta-card {
    padding: 60px 30px;
  }

  .cta-card h2 {
    font-size: 2.2rem;
  }
}

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

  .hero-stats {
    gap: 20px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
  }

  .floating-card {
    min-width: 120px;
    padding: 15px;
  }

  .floating-card .platform-icon {
    font-size: 2rem;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }
}
