/* JobEase Landing Page - Exact Figma Match */

:root {
  --primary-blue: #1e3a5f;
  --light-blue: #37A3FF;
  --primary-orange: #E3781B;
  --dark-text: #1e3a5f;
  --gray-text: #64748b;
  --white: #ffffff;
  --black: #000000;
  --section-padding-y: 2.5rem;
  --section-padding-x: 1.25rem;
  --section-gap: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

.page-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
}

/* ==================== NAVBAR ==================== */
.navbar {
  padding: 16px 20px;
  background: linear-gradient(135deg, #CEE5FF 0%, #CEE5FF 100%);
}

.navbar-brand {
  display: block;
}

.navbar-brand img {
  height: 30px;
  width: auto;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  background: linear-gradient(135deg, #CEE5FF 0%, #CEE5FF 30%, #CEE5FF 70%, #CEE5FF 100%);
  padding: 1.5rem var(--section-padding-x) 2.5rem;
  position: relative;
}

.hero-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}

.hero-title .blue {
  color: var(--black);
  display: block;
  font-size: 36px;
}

.hero-title .light-blue {
  color: var(--light-blue);
  font-size: 36px;
}

.hero-subtitle {
  color: var(--black);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 400;
}

/* Hero Illustration Wrapper - Contains banner and cards */
.hero-illustration-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 2rem;
  padding: 0 0.5rem;
  overflow: hidden;
}

.hero-banner-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.hero-banner {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

/* Feature Cards - Positioned relative to banner */
.feature-card {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 8px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

/* Card Positions - Fixed relative to banner on all devices */
.feature-card.card-1 {
  top: 60%;
  left: -5%;
  transform: translateY(-50%);
}

.feature-card.card-2 {
  top: 70%;
  right: -8%;
  transform: translateY(-50%);
}

.feature-card.card-3 {
  bottom: 0%;
  left: -8%;
  max-width: 180px;
}

.feature-card.card-4 {
  bottom: 3%;
  right: -5%;
  max-width: 140px;
}

.feature-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.feature-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.feature-icon.blue {
  background: #dbeafe;
  color: var(--primary-blue);
}

.feature-icon.orange {
  background: #fef3c7;
  color: var(--primary-orange);
}

.feature-content h6 {
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--dark-text);
  line-height: 1.3;
}

.feature-content p {
  font-size: 8px;
  color: var(--gray-text);
  margin: 0;
  line-height: 1.3;
}

/* CTA Button - Small, Centered */
.cta-wrapper {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.btn-cta {
  background: var(--primary-orange);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 120, 27, 0.35);
}

.btn-cta:focus {
  outline: 2px solid var(--light-blue);
  outline-offset: 2px;
}

.btn-cta i {
  font-size: 12px;
}

.cta-note {
  font-size: 13px;
  color: var(--black);
  margin-top: 12px;
  text-align: center;
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
  padding: var(--section-padding-y) var(--section-padding-x) 0;
  background: var(--white);
  position: relative;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 16px;
  line-height: 1.35;
  position: relative;
  display: inline-block;
  width: 100%;
}

.problem-section .section-title {
  text-align: center;
  font-size: 24px;
  position: relative;
  color: var(--black);
  padding-bottom: 25px;
}

.problem-section .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  width: min(300px, 80%);
  height: 20px;
  background-image: url(../images/home/Vector.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.problem-section .section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.problem-list {
  list-style: none;
  padding: 0 0 0 1rem;
  margin-bottom: 1.5rem;
  margin-left: 0;
  max-width: 100%;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0px;
  font-size: 14px;
  color: var(--black);
}

.problem-list li i {
  color: var(--dark-text);
  font-size: 14px;
  font-weight: 600;
}

.problem-image {
  border-radius: 12px;
  overflow: hidden;
}

.problem-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================== RESULTS SECTION ==================== */
.results-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--white);
  position: relative;
}

.results-section .section-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 30px;
  color: var(--black);
  padding-bottom: 20px;
}

.results-section .section-title::after {
  content: "";
  position: absolute;
  left: 37%;
  bottom: 0;
  transform: translateX(-50%);
  width: 175px;
  height: 15px;
  background-image: url("../images/home/vector-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  bottom: 15px;
}

.result-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.result-card {
  flex: 1 1 140px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0.75rem 1rem;
  border: none;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.result-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 32px;
  color: var(--primary-blue);
}

.result-icon.icon-1 {
  background-color: #FFDED4;
  padding: 10px;
}

.result-icon.icon-2 {
  background-color: #FFEED4;
  padding: 10px;
}

.result-icon.icon-3 {
  background-color: #D4F0FF;
  padding: 10px;
}

.result-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.result-card h6 {
  font-size: 10px;
  font-weight: 700;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* ==================== LOGO SECTION ==================== */
.logo-section {
  justify-items: center;
  padding: var(--section-padding-y) var(--section-padding-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.logo-section img {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.floating-icons-container {
  position: relative;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-logo {
  text-align: center;
  z-index: 10;
  position: relative;
}

.center-logo img {
  height: 26px;
  width: auto;
}

.floating-icon {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: floatIcon 3.5s ease-in-out infinite;
}

.floating-icon.blue {
  background: #dbeafe;
  color: #1e40af;
}

.floating-icon.orange {
  background: #fef3c7;
  color: #d97706;
}

.floating-icon.green {
  background: #d1fae5;
  color: #059669;
}

.floating-icon.purple {
  background: #ede9fe;
  color: #7c3aed;
}

.floating-icon.pink {
  background: #fce7f3;
  color: #db2777;
}

.floating-icon.cyan {
  background: #cffafe;
  color: #0891b2;
}

.floating-icon.icon-1 {
  top: 8%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon.icon-2 {
  top: 5%;
  right: 12%;
  animation-delay: 0.6s;
}

.floating-icon.icon-3 {
  top: 42%;
  left: 5%;
  animation-delay: 1.2s;
}

.floating-icon.icon-4 {
  top: 42%;
  right: 5%;
  animation-delay: 1.8s;
}

.floating-icon.icon-5 {
  bottom: 15%;
  left: 12%;
  animation-delay: 2.4s;
}

.floating-icon.icon-6 {
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: linear-gradient(135deg, #CEE5FF 0%, #CEE5FF 30%, #CEE5FF 70%, #CEE5FF 100%);
}

.how-title-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.how-section .section-title {
  text-align: center;
  margin-bottom: 0;
  font-size: 36px;
  position: relative;
  z-index: 2;
  color: var(--black);
  padding-bottom: 25px;
}

.how-section .section-title::after {
  content: "";
  position: absolute;
  left: 62%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 300px;
  height: 20px;
  background-image: url(../images/home/vector-2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}


.how-vector {
  position: absolute;
  width: 200px;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  z-index: 1;
  opacity: 0.8;
}

.how-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.how-card {
  text-align: center;
  flex: 1 1 160px;
  min-width: 0;
}

.how-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.how-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.how-card h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.4;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  padding: var(--section-padding-y) var(--section-padding-x);
}

.faq-section .section-title {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.faq-section .section-title::after {
  content: "";
  position: absolute;
  left: 63%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 275px;
  height: 20px;
  background-image: url(../images/home/Vector.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 13px;
  color: var(--black);
  line-height: 1.6;
  font-weight: 400;
}

.faq-item .q {
  font-weight: 700;
  color: var(--black);
}

.faq-item .a {
  font-weight: 700;
  color: var(--black);
}

/* ==================== RESPONSIVE ==================== */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 374px) {
  :root {
    --section-padding-x: 1rem;
    --section-padding-y: 1.75rem;
  }

  .hero-title .blue,
  .hero-title .light-blue {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-banner {
    max-width: 200px;
  }

  .feature-card.card-1 { left: -2%; }
  .feature-card.card-2 { right: -2%; }
  .feature-card.card-3 { left: -2%; max-width: 120px; }
  .feature-card.card-4 { right: -2%; max-width: 100px; }

  .feature-card {
    padding: 4px 6px;
  }

  .feature-content h6 {
    font-size: 8px;
  }

  .feature-content p {
    font-size: 6px;
  }

  .feature-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    font-size: 10px;
  }

  .feature-icon img {
    width: 12px;
    height: 12px;
  }

  .problem-section .section-title,
  .results-section .section-title,
  .how-section .section-title,
  .faq-section .section-title {
    font-size: 1.125rem;
  }

  .problem-list {
    padding-left: 0.5rem;
  }

  .result-cards {
    gap: 0.75rem;
  }

  .result-card {
    flex: 1 1 100%;
    padding: 1rem 0.75rem;
  }

  .result-card h6 {
    font-size: 9px;
  }

  .how-cards {
    gap: 1rem;
  }

  .how-card {
    flex: 1 1 100%;
  }

  .how-icon {
    width: 45px;
    height: 45px;
  }

  .how-card h6 {
    font-size: 12px;
  }
}

/* Small Devices (landscape phones, 375px - 575px) */
@media (min-width: 375px) and (max-width: 575px) {
  :root {
    --section-padding-x: 1.125rem;
    --section-padding-y: 2rem;
  }

  .hero-title .blue,
  .hero-title .light-blue {
    font-size: 26px;
  }
  .hero-subtitle {
    font-size: 15px;
  }

  .feature-card.card-1 { left: -3%; }
  .feature-card.card-2 { right: -4%; }
  .feature-card.card-3 { left: -5%; max-width: 140px; }
  .feature-card.card-4 { right: -3%; max-width: 120px; }

  .problem-section .section-title {
    font-size: 1.25rem;
  }
  .problem-section .section-title::after {
    left: 75%;
    width: 200px;
  }
  .results-section .section-title {
    font-size: 1.25rem;
  }
  .results-section .section-title::after {
    max-width: 160px;
    bottom: 8px;
    left: 30%;
  }
  .result-card {
    flex: 1 1 calc(50% - 0.5rem);
  }
  .how-section .section-title::after {
    left: 70%;
    max-width: 190px;
  }
  .how-section .section-title {
    font-size: 1.25rem;
  }
  .how-card {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

/* Medium Devices (tablets, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .page-wrapper {
    max-width: 576px;
    margin: 0 auto;
  }

  .hero-title .blue,
  .hero-title .light-blue {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-banner {
    max-width: 320px;
  }

  .feature-card {
    padding: 8px 10px;
  }

  .feature-content h6 {
    font-size: 10px;
  }

  .feature-content p {
    font-size: 8px;
  }

  .problem-section .section-title,
  .results-section .section-title {
    font-size: 28px;
  }

  .how-section .section-title,
  .faq-section .section-title {
    font-size: 32px;
  }

  .result-card {
    padding: 24px 16px 20px;
  }

  .result-card h6 {
    font-size: 11px;
  }

  .how-icon {
    width: 65px;
    height: 65px;
  }

  .how-card h6 {
    font-size: 16px;
  }
}

/* Large Devices (desktops, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .page-wrapper {
    max-width: 720px;
    margin: 0 auto;
  }

  .navbar {
    padding: 20px 30px;
  }

  .hero-section {
    padding: 0 30px 50px;
  }

  .hero-title .blue,
  .hero-title .light-blue {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-banner {
    max-width: 380px;
  }

  .feature-card {
    padding: 10px 12px;
  }

  .feature-content h6 {
    font-size: 11px;
  }

  .feature-content p {
    font-size: 9px;
  }

  .problem-section,
  .results-section {
    padding: 50px 30px;
  }

  .problem-section .section-title,
  .results-section .section-title {
    font-size: 32px;
  }

  .problem-list {
    padding-left: 1.5rem;
  }

  .problem-list li {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .result-cards {
    gap: 20px;
  }

  .result-card {
    padding: 28px 20px 24px;
    border-radius: 20px;
  }

  .result-icon {
    width: 40px;
    height: 40px;
  }

  .result-card h6 {
    font-size: 12px;
  }

  .logo-section {
    padding: 60px 30px;
  }

  .logo-section img {
    width: 40%;
  }

  .how-section {
    padding: 50px 30px;
  }

  .how-section .section-title,
  .faq-section .section-title {
    font-size: 38px;
  }

  .how-cards {
    gap: 20px;
  }

  .how-icon {
    width: 70px;
    height: 70px;
  }

  .how-icon img {
    width: 35px;
    height: 35px;
  }

  .how-card h6 {
    font-size: 18px;
  }

  .faq-section {
    padding: 50px 30px;
  }

  .faq-item p {
    font-size: 15px;
  }
}

/* Extra Large Devices (large desktops, 992px and up) */
@media (min-width: 992px) {
  .page-wrapper {
    max-width: 960px;
    margin: 0 auto;
  }

  .navbar {
    padding: 24px 40px;
  }

  .navbar-brand img {
    height: 40px;
  }

  .hero-section {
    padding: 0 40px 60px;
  }

  .hero-title .blue,
  .hero-title .light-blue {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-banner {
    max-width: 450px;
  }

  .feature-card {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .feature-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .feature-content h6 {
    font-size: 13px;
  }

  .feature-content p {
    font-size: 11px;
  }

  .btn-cta {
    padding: 18px 30px;
    font-size: 15px;
  }

  .cta-note {
    font-size: 15px;
  }

  .problem-section,
  .results-section {
    padding: 60px 40px;
  }

  .problem-section .section-title,
  .results-section .section-title {
    font-size: 36px;
  }

  .problem-list {
    padding-left: 2rem;
  }

  .problem-list li {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .result-cards {
    gap: 24px;
  }

  .result-card {
    padding: 32px 24px 28px;
    border-radius: 24px;
  }

  .result-icon {
    width: 50px;
    height: 50px;
    padding: 14px;
  }

  .result-icon img {
    width: 26px;
    height: 26px;
  }

  .result-card h6 {
    font-size: 13px;
  }

  .logo-section {
    padding: 70px 40px;
  }

  .logo-section img {
    width: 35%;
  }

  .how-section {
    padding: 60px 40px;
  }

  .how-section .section-title,
  .faq-section .section-title {
    font-size: 42px;
  }

  .how-cards {
    gap: 30px;
  }

  .how-icon {
    width: 80px;
    height: 80px;
  }

  .how-icon img {
    width: 40px;
    height: 40px;
  }

  .how-card h6 {
    font-size: 20px;
  }

  .faq-section {
    padding: 60px 40px;
  }

  .faq-item p {
    font-size: 16px;
  }
}

/* Extra Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .page-wrapper {
    max-width: 1140px;
  }

  .hero-title .blue,
  .hero-title .light-blue {
    font-size: 64px;
  }

  .hero-banner {
    max-width: 500px;
  }

  .feature-card {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .feature-content h6 {
    font-size: 13px;
  }

  .feature-content p {
    font-size: 10px;
  }
}

.testimonial-image {
  height: 55px;
  width: auto;
}

.testimonial-text {
  font-size: 1rem;
  color: #000;
}

/* Landing testimonial section - consistent spacing and responsive */
.landing-testimonial-section.bg-white.testimonial {
  padding-top: var(--section-padding-y) !important;
  padding-bottom: var(--section-padding-y) !important;
  margin-top: 0;
}

.landing-testimonials .testimonial-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.landing-testimonials .testimonial-image {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .testimonial-image {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
  }

  .landing-testimonials .testimonial-text {
    font-size: 0.875rem;
  }

  .bg-white.testimonial .container {
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
  }

  .bg-white.testimonial h2 {
    font-size: 1.25rem;
  }

  .bg-white.testimonial small {
    font-size: 0.75rem;
  }
}
