/* ================= Home Section Styles ================= */
#home {
  background: linear-gradient(135deg, rgba(248,249,250,1) 0%, rgba(224,242,254,0.5) 100%);
  padding-bottom: 80px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.badge {
  display: inline-block;
  background: rgba(0, 210, 211, 0.15);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 210, 211, 0.3);
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Glassmorphism Mockup */
.mock-image {
  width: 100%;
  max-width: 500px;
  height: 350px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.mock-nav {
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mock-body {
  padding: 20px;
  flex: 1;
}

.slider-body {
  padding: 0;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-track {
  display: flex;
  width: 300%;
  height: 100%;
  -webkit-animation: slideAnimation 12s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
  animation: slideAnimation 12s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide {
  width: 33.3333%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideAnimation {
  0%, 25% { transform: translateX(0); }
  33.33%, 58.33% { transform: translateX(-33.3333%); }
  66.66%, 91.66% { transform: translateX(-66.6666%); }
  100% { transform: translateX(0); }
}

/* ================= About Intro Section ================= */
.bg-light { background: var(--bg-light); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-title { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 800px; line-height: 1.8; }

/* ================= Key Features Grid ================= */
.key-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.k-feature-card { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9; display: flex; align-items: center; gap: 20px; transition: var(--transition); }
.k-feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon { font-size: 2rem; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(0, 0, 0, 0.05); }
.feature-icon.navy { color: var(--c-navy); background: rgba(9, 132, 227, 0.1); }
.feature-icon.teal { color: var(--c-teal); background: rgba(0, 206, 201, 0.1); }
.feature-icon.orange { color: var(--c-orange); background: rgba(225, 112, 85, 0.1); }
.feature-icon.purple { color: var(--c-purple); background: rgba(108, 92, 231, 0.1); }
.feature-icon.pink { color: var(--c-pink); background: rgba(253, 121, 168, 0.1); }
.feature-icon.green { color: var(--c-green); background: rgba(0, 184, 148, 0.1); }
.k-feature-card h4 { color: var(--primary-color); font-size: 1.1rem; flex: 1; }

/* ================= What You Get Section ================= */
.wyg-container { display: flex; align-items: center; gap: 50px; }
.wyg-content { flex: 1; }
.wyg-content h2 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 30px; }
.wyg-list { display: flex; flex-direction: column; gap: 20px; }
.wyg-list li { display: flex; align-items: center; gap: 15px; font-size: 1.2rem; font-weight: 600; color: var(--text-dark); background: var(--white); padding: 15px 20px; border-radius: 12px; box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9; }
.wyg-list li i { color: var(--c-green); font-size: 1.5rem; }
.wyg-image { flex: 1; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.wyg-image img { width: 100%; display: block; }

/* ================= Highlights Banner ================= */
.highlight-banner { background: var(--primary-color); padding: 60px 0; color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.stat-item { padding: 20px; }
.stat-icon-wrapper { font-size: 3rem; color: var(--secondary-color); margin-bottom: 20px; }
.stat-item h3 { font-size: 1.3rem; font-weight: 600; }

/* ================= Why Choose Us ================= */
.why-choose-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; margin-top: 40px; }
.wcu-card { background: var(--white); padding: 30px 20px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9; transition: var(--transition); }
.wcu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--secondary-color); }
.wcu-card i { font-size: 2.5rem; color: var(--c-orange); margin-bottom: 20px; }
.wcu-card h5 { font-size: 1.2rem; color: var(--primary-color); margin-bottom: 10px; }
.wcu-card p { color: var(--text-light); font-size: 0.95rem; }

/* ================= Call to Action ================= */
.cta-section { background: linear-gradient(135deg, rgba(0, 210, 211, 0.1) 0%, rgba(9, 132, 227, 0.1) 100%); padding: 80px 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.cta-container { text-align: center; max-width: 700px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 24px; box-shadow: var(--shadow-lg); }
.cta-container h2 { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 20px; }
.cta-container p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 30px; line-height: 1.6; }
.cta-btn { font-size: 1.2rem; padding: 16px 40px; }

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .wyg-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .wyg-content h2 { font-size: 2rem; }
  .cta-container { padding: 40px 20px; }
}
