/* ============================================
   FINO STAFFING LLC - Additional Page Styles
   ============================================ */

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: var(--section-padding);
  background: white;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-photo-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo-placeholder {
  font-size: 120px;
  opacity: 0.3;
}

.about-badge-float {
  position: absolute;
  background: white;
  border-radius: var(--border-radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-float.badge-1 {
  bottom: -20px;
  right: -20px;
}

.about-badge-float.badge-2 {
  top: 30px;
  left: -20px;
  animation: cardFloat1 5s ease-in-out infinite;
}

.about-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.about-badge-icon.teal { background: var(--teal-light); }
.about-badge-icon.gold { background: var(--gold-light); }

.about-badge-text {
  display: flex;
  flex-direction: column;
}

.about-badge-text strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.about-badge-text span {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 3px;
}

.about-text .section-label { justify-content: flex-start; }
.about-text .section-label::before { display: none; }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-quote {
  background: linear-gradient(135deg, var(--teal-light), rgba(16,185,129,0.08));
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.about-quote blockquote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 12px;
}

.about-quote cite {
  font-size: 13px;
  color: var(--teal-dark);
  font-weight: 600;
  font-style: normal;
}

/* Values Section */
.values {
  padding: var(--section-padding);
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.value-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Difference Section */
.difference {
  padding: var(--section-padding);
  background: white;
}

.difference-table {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  max-width: 900px;
  margin: 0 auto;
}

.diff-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--navy);
}

.diff-header-cell {
  padding: 20px 28px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-align: center;
}

.diff-header-cell.fino {
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: white;
}

.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition-fast);
}

.diff-row:hover { background: var(--off-white); }
.diff-row:last-child { border-bottom: none; }

.diff-cell {
  padding: 18px 28px;
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--gray-100);
}

.diff-cell:last-child { border-right: none; }

.diff-cell.topic {
  font-weight: 600;
  color: var(--navy);
  justify-content: flex-start;
  text-align: left;
}

.diff-cell.fino {
  color: var(--teal-dark);
  font-weight: 600;
  background: rgba(10,191,188,0.03);
}

.diff-check { color: var(--emerald); font-size: 16px; }
.diff-x { color: var(--coral); font-size: 16px; }

/* ============================================
   EMPLOYERS PAGE
   ============================================ */
.employer-process {
  padding: var(--section-padding);
  background: var(--off-white);
}

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

.process-timeline::before {
  content: '';
  position: absolute;
  left: 44px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--emerald) 40%, var(--coral) 70%, var(--gold) 100%);
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

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

.timeline-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  z-index: 1;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(1) .timeline-icon { border-color: var(--teal); background: var(--teal-light); }
.timeline-item:nth-child(2) .timeline-icon { border-color: var(--emerald); background: rgba(16,185,129,0.1); }
.timeline-item:nth-child(3) .timeline-icon { border-color: var(--coral); background: rgba(255,107,107,0.1); }
.timeline-item:nth-child(4) .timeline-icon { border-color: var(--gold); background: var(--gold-light); }
.timeline-item:nth-child(5) .timeline-icon { border-color: #8B5CF6; background: rgba(139,92,246,0.1); }

.timeline-item:hover .timeline-icon {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.timeline-content {
  flex: 1;
  padding-top: 16px;
  padding-bottom: 16px;
}

.timeline-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Roles Grid */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.role-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 28px;
  transition: all var(--transition-base);
  cursor: default;
}

.role-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
  transform: translateY(-4px);
}

.role-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.role-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.role-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

/* ============================================
   CANDIDATES PAGE
   ============================================ */
.candidate-journey {
  padding: var(--section-padding);
  background: var(--off-white);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.journey-step {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  position: relative;
}

.journey-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.journey-step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-teal);
}

.journey-step-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.journey-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.journey-step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Resume Form */
.resume-form-section {
  padding: var(--section-padding);
  background: white;
}

.resume-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.resume-form-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.resume-form-info p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.resume-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resume-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.resume-benefit-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.resume-benefit-text {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

.form-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ============================================
   INDUSTRIES PAGE
   ============================================ */
.industry-detail {
  padding: var(--section-padding);
  background: white;
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.industry-detail-card {
  border-radius: var(--border-radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.industry-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.industry-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.industry-detail-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.industry-detail-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.industry-detail-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.industry-detail-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.industry-roles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonial-featured {
  padding: var(--section-padding);
  background: var(--off-white);
}

.testimonial-featured-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-large {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  grid-column: span 2;
}

.testimonial-large:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.testimonial-large .testimonial-text {
  font-size: 20px;
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.contact-item-value a {
  color: var(--navy);
  transition: color var(--transition-fast);
}

.contact-item-value a:hover { color: var(--teal); }

.calendar-box {
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  border-radius: var(--border-radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.calendar-icon {
  font-size: 40px;
}

.calendar-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.calendar-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

/* ============================================
   MAP EMBED
   ============================================ */
.map-section {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a4a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
}

.map-pin {
  font-size: 64px;
  animation: floatUpDown 3s ease-in-out infinite;
}

.map-label {
  font-size: 20px;
  font-weight: 700;
}

.map-sublabel {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   SUCCESS / ERROR MESSAGES
   ============================================ */
.alert {
  padding: 16px 20px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: #065F46;
}

.alert-error {
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.3);
  color: #9B1C1C;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  padding: var(--section-padding);
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-photo {
  height: 240px;
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, white);
}

.team-body {
  padding: 24px 28px 32px;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-role {
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   PARTNERS / LOGOS
   ============================================ */
.partners {
  padding: 60px 0;
  background: white;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.partners-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 36px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-400);
  transition: color var(--transition-fast);
  opacity: 0.5;
}

.partner-logo:hover {
  color: var(--teal);
  opacity: 1;
}

.partner-logo-icon {
  font-size: 28px;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 1024px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .resume-form-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .industry-detail-grid { grid-template-columns: 1fr; }
  .testimonial-featured-inner { grid-template-columns: 1fr; }
  .testimonial-large { grid-column: span 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .diff-header { grid-template-columns: 1fr; }
  .diff-row { grid-template-columns: 1fr; }
  .diff-header-cell:not(:first-child) { display: none; }
  .diff-cell:not(:first-child):not(.fino) { display: none; }
  .diff-cell.topic { font-weight: 700; background: var(--off-white); }
  .roles-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .resume-form-inner { grid-template-columns: 1fr; }
  .timeline-item { flex-direction: column; }
  .process-timeline::before { display: none; }
}
