/* ===== LAP PAGE STYLES ===== */

/* Variables */
:root {
  --primary-dark: #0d214f;
  --primary-blue: #0067da;
  --light-blue: #29b9ed;
  --text-dark: #0f172a;
  --text-gray: #475569;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.lap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.lap-hero {
  position: relative;
  background: var(--gradient-primary);
  padding: 80px 0 70px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.lap-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/lap/LAP .png') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.shape-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: floatShape 20s infinite ease-in-out;
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 5%;
  animation-delay: 5s;
}

.circle-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 30%;
  animation-delay: 10s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.lap-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.lap-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  animation: fadeUp 1s ease-out;
  /* max-width, width, margin handled by .container */
  padding: 0;
  position: relative;
  z-index: 2;
}

.lap-hero-left {
  max-width: 600px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lap-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lap-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 25px;
}

.lap-hero-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 40px;
}

.lap-hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.lap-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.lap-btn-primary {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.lap-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.lap-btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.lap-btn-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.lap-hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}

.lap-stat-item h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.lap-stat-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ===== LAP HERO RIGHT - 3 STAT BOXES ===== */
.lap-hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.lap-stat-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
  min-width: 150px;
  transition: all 0.3s ease;
}

.lap-stat-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.lap-stat-box h3 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.lap-stat-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
}

.animate-fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== HERO RIGHT - STAT BOXES (2x1 GRID) ===== */
.sbl-hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.sbl-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

}

.sbl-stats-single {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.sbl-stat-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.sbl-stat-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sbl-stat-box h3 {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sbl-stat-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.lap-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 33, 79, 0.4);
  /* Use a dark tint instead of an image */
  z-index: 1;
}

.lap-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.lap-bg-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.lap-bg-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.lap-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lap-hero-left h1 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.lap-hero-left p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.8;
}

.lap-cta-btn {
  display: inline-block;
  background: #fff;
  color: #0d214f;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.lap-cta-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ===== SECTION HEADER ===== */
.lap-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.lap-tag {
  display: inline-block;
  background: linear-gradient(135deg, #29b9ed, #2563eb);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.lap-section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 15px;
}

.lap-section-header p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===== BENEFITS SECTION ===== */
.lap-benefits {
  padding: 80px 0;
  background: var(--bg-light);
}

.lap-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.lap-benefit-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.lap-benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.lap-benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.lap-benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}

.lap-benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

.lap-benefit-card:nth-child(5) {
  animation-delay: 0.5s;
}

.lap-benefit-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lap-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.lap-benefit-card:hover::before {
  transform: scaleX(1);
}

.lap-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.15);
  border-color: var(--primary-blue);
}

.lap-benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--white);
  transition: all 0.3s ease;
}

.lap-benefit-card:hover .lap-benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.lap-benefit-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 15px;
}

.lap-benefit-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===== ELIGIBILITY SECTION ===== */
.lap-eligibility {
  padding: 80px 0;
  background: var(--white);
}

.lap-eligibility-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lap-eligibility-content .lap-tag {
  margin-bottom: 15px;
}

.lap-eligibility-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.lap-eligibility-content>p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.lap-eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lap-eligibility-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.lap-eligibility-item:hover {
  background: var(--white);
  box-shadow: 0 8px 25px rgba(0, 103, 218, 0.1);
  transform: translateX(5px);
}

.lap-check-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 18px;
}

.lap-eligibility-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.lap-eligibility-text p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.lap-eligibility-image {
  position: relative;
}

.lap-eligibility-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(13, 33, 79, 0.15);
}

.lap-floating-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.lap-badge-content span {
  display: block;
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 5px;
}

.lap-badge-content h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
}

/* ===== DOCUMENTS SECTION ===== */
.lap-documents {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
}

.lap-documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.lap-document-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-blue);
}

.lap-document-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.12);
}

.lap-doc-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 103, 218, 0.08);
}

.lap-doc-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 20px;
}

.lap-document-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.lap-document-card ul {
  list-style: none;
  padding: 0;
}

.lap-document-card ul li {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.lap-document-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.lap-document-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}

/* ===== PROCESS SECTION ===== */
.lap-process {
  padding: 80px 0;
  background: var(--white);
}

.lap-process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.lap-process-step {
  position: relative;
  text-align: center;
}

.lap-step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: 900;
  color: rgba(0, 103, 218, 0.05);
  z-index: 0;
}

.lap-step-content {
  position: relative;
  z-index: 1;
}

.lap-step-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.lap-process-step:hover .lap-step-icon {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1) rotate(360deg);
}

.lap-step-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.lap-step-content p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.lap-faq {
  padding: 80px 0;
  background: var(--bg-light);
}

.lap-faq-wrapper {
  max-width: 900px;
  margin: 50px auto 0;
}

.lap-faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.lap-faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(0, 103, 218, 0.1);
}

.lap-faq-question {
  width: 100%;
  padding: 25px 30px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-family: 'Poppins', Arial, sans-serif;
}

.lap-faq-question:hover {
  color: var(--primary-blue);
}

.lap-faq-question i {
  font-size: 20px;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.lap-faq-item.active .lap-faq-question i {
  transform: rotate(180deg);
}

.lap-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.lap-faq-answer p {
  padding: 0 30px 25px;
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}

/* ===== CTA SECTION ===== */
.lap-cta {
  padding: 80px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.lap-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><circle cx="600" cy="100" r="300" fill="rgba(255,255,255,0.05)"/><circle cx="700" cy="400" r="200" fill="rgba(255,255,255,0.03)"/></svg>') no-repeat center;
  background-size: cover;
}

.lap-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.lap-cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.lap-cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.lap-btn-white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.lap-btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .lap-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lap-hero-content h1 {
    font-size: 42px;
  }

  .lap-hero-content p {
    font-size: 18px;
  }

  .lap-eligibility-wrapper {
    grid-template-columns: 1fr;
  }



  .lap-process-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lap-hero {
    padding: 100px 0 60px;
  }

  .lap-hero-content h1 {
    font-size: 32px;
  }

  .lap-hero-content p {
    font-size: 16px;
  }

  .lap-hero-buttons {
    flex-direction: column;
  }

  .lap-btn {
    width: 100%;
    justify-content: center;
  }

  .lap-section-header h2 {
    font-size: 32px;
  }

  .lap-benefits-grid {
    grid-template-columns: 1fr;
  }

  .lap-documents-grid {
    grid-template-columns: 1fr;
  }

  .lap-cta-content h2 {
    font-size: 32px;
  }

  .lap-eligibility-content h2 {
    font-size: 32px;
  }
  
  
  .lap-eligibility-image img {
    height: 400px;
  }
  
  .lap-eligibility {
    padding: 40px 0;

  }
  
  .lap-eligibility-content {
    text-align: center;
  }
  
  .lap-cta {
    padding: 40px 0;
  }

  .lap-cta-content .lap-btn {
    width: auto;
  }
}