/* ===================================
   RASMY HR Tech - Component Styles
   =================================== */

/* ===================================
   AI Hiring Banner
   =================================== */
.ai-hiring-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeInBanner 0.8s ease-out;
}

.ai-hiring-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.banner-headline {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.highlight-blink {
  background: linear-gradient(90deg, #fbbf24, #fcd34d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: subtleBlink 3s ease-in-out infinite;
  font-weight: 900;
}

@keyframes subtleBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

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

.banner-subheading {
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
  font-weight: 500;
}

.btn-cta {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1e3a8a;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.6);
  transform: translateY(-2px);
}

.btn-cta:active {
  transform: translateY(0);
}

/* Dark Mode - Banner */
.dark .ai-hiring-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #4338ca 100%);
}

/* Responsive Banner */
@media (max-width: 768px) {
  .ai-hiring-banner {
    padding: 40px 20px;
  }

  .btn-cta {
    padding: 14px 32px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
  }
}

/* ===================================
   Solutions Section
   =================================== */
.solutions-section {
  background: linear-gradient(180deg, transparent 0%, rgba(107, 70, 255, 0.02) 100%);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.solution-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(16, 24, 40, 0.04);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.12);
}

.solution-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.solution-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.solution-tagline {
  font-weight: 600;
  color: #6b46ff;
  margin-bottom: 12px;
  font-size: 15px;
}

.solution-card > p {
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.7;
}

.solution-card ul {
  list-style: none;
  padding: 0;
}

.solution-card ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  color: #374151;
  line-height: 1.6;
}

.solution-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3ddc97;
  font-weight: 700;
}

/* ===================================
   Feature Highlight Section
   =================================== */
.feature-highlight {
  background: linear-gradient(135deg, rgba(107, 70, 255, 0.05), rgba(239, 71, 111, 0.05));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.benefit-card {
  background: white;
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(16, 24, 40, 0.06);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: #6b46ff;
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(107, 70, 255, 0.12);
}

.benefit-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* ===================================
   LMS Section
   =================================== */
.lms-section {
  background: white;
}

.lms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.lms-card {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.lms-card:hover {
  background: white;
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.08);
  border-color: rgba(107, 70, 255, 0.2);
}

.lms-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.lms-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.lms-card p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}

.lms-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.feature-tag {
  background: rgba(107, 70, 255, 0.1);
  color: #6b46ff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ===================================
   Industries Section
   =================================== */
.industries-section {
  background: linear-gradient(180deg, rgba(239, 71, 111, 0.03) 0%, transparent 100%);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.industry-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.05);
  border: 1px solid rgba(16, 24, 40, 0.06);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.1);
  border-color: rgba(107, 70, 255, 0.3);
}

.industry-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.industry-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 60px 24px 24px;
  margin-top: 80px;
}

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

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .logo {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.footer-brand .brand-name {
  font-size: 18px;
  color: white;
}

.footer-desc {
  color: #9ca3af;
  line-height: 1.7;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #6b46ff;
}

.footer-col p {
  color: #d1d5db;
  margin-bottom: 6px;
  font-size: 14px;
}

.footer-col p strong {
  color: white;
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 14px;
}

/* ===================================
   Dark Mode - Components
   =================================== */
.dark .solution-card,
.dark .benefit-card,
.dark .industry-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark .solution-card:hover,
.dark .benefit-card:hover,
.dark .industry-card:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.dark .solution-card h3,
.dark .benefit-card h3,
.dark .industry-card h3,
.dark .lms-card h3 {
  color: #e6eef8;
}

.dark .solution-card p,
.dark .solution-card ul li,
.dark .benefit-card p,
.dark .lms-card p {
  color: #9fb0c9;
}

.dark .lms-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

.dark .lms-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(107, 70, 255, 0.3);
}

.dark .solutions-section,
.dark .feature-highlight,
.dark .lms-section,
.dark .industries-section {
  background: transparent;
}

/* ===================================
   Responsive - Components
   =================================== */
@media (max-width: 768px) {
  .solutions-grid,
  .benefits-grid,
  .lms-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .benefit-card,
  .lms-card {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title {
    margin-bottom: 8px;
  }

  .section-subtitle {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .solution-icon,
  .benefit-icon {
    font-size: 40px;
  }

  .industry-icon {
    font-size: 36px;
  }

  .lms-icon {
    font-size: 32px;
  }
}
