/* =========================================
   HOMEPAGE (LANDING PAGE) STYLES
   Premium, Modern, Glassmorphism
   ========================================= */

/* Base & Typography */
.landing-body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f8fafc;
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
.home-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 10px 0;
}
.home-navbar .nav-link {
  transition: color 0.3s ease;
}
.home-navbar .nav-link:hover {
  color: #f59e0b !important;
}

/* Hero Section */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 15s infinite ease-in-out;
  pointer-events: none;
}
.hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
}
.hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -150px;
  animation-delay: -5s;
}

/* Glass Panels */
.glass-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  cursor: pointer;
}
.glass-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Category Cards */
.home-cat-card {
  text-align: center;
  padding: 30px 20px;
}
.cat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px auto;
  transition: transform 0.3s ease;
}
.home-cat-card:hover .cat-icon {
  transform: scale(1.1);
}

/* Colors */
.bg-blue-light { background: #eff6ff; }
.bg-orange-light { background: #fff7ed; }
.bg-green-light { background: #f0fdf4; }
.bg-purple-light { background: #faf5ff; }
.bg-red-light { background: #fef2f2; }
.bg-teal-light { background: #f0fdfa; }

.text-purple { color: #8b5cf6; }
.text-teal { color: #14b8a6; }

/* Titles */
.tracking-wider { letter-spacing: 0.1em; }
.title-underline {
  width: 60px;
  height: 4px;
  background: #3b82f6;
  border-radius: 2px;
}

/* Featured Service Card */
.feat-service-card {
  position: relative;
  overflow: hidden;
  border: none;
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.feat-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.feat-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.feat-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  padding: 5px 10px;
  background: #fef3c7;
  color: #d97706;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Stats */
.stat-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin: 0 auto 20px auto;
  background: #eff6ff;
  color: #3b82f6;
}

/* Buttons */
.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
.home-btn-primary {
  background-color: #f59e0b;
  border-color: #f59e0b;
}
.home-btn-primary:hover {
  background-color: #d97706;
  border-color: #d97706;
}
.home-btn-secondary {
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(5px);
}
.home-btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Features List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feature-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #334155;
}

/* Step Card */
.step-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  position: relative;
  height: 100%;
}
.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3b82f6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px auto;
  box-shadow: 0 5px 15px rgba(59,130,246,0.3);
}

/* FAQ */
.accordion-button:not(.collapsed) {
  background-color: #eff6ff;
  color: #1e3a8a;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,.125);
}

/* Footer Links */
.footer-link:hover {
  color: #fff !important;
  transform: translateX(5px);
}
.footer-link {
  transition: all 0.3s ease;
  display: inline-block;
}
.hover-white:hover {
  color: white !important;
}
.social-icon {
  transition: background 0.3s ease, transform 0.3s ease;
}
.social-icon:hover {
  background: #3b82f6 !important;
  transform: translateY(-3px);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .home-hero {
    min-height: 600px;
    text-align: center;
  }
  .home-hero .row {
    justify-content: center;
  }
  .home-hero .pe-lg-5 {
    padding-right: 0 !important;
  }
  .home-hero .d-flex {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .home-hero h1 {
    font-size: 2.5rem;
  }
  .home-hero p {
    font-size: 1.1rem;
  }
  .hero-shape {
    display: none;
  }
}
