/* ===== INDEX PAGE STYLES ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
}

.section-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #4caf50;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #eee;
  line-height: 0;
}

.hero-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  position: relative;
  min-width: 100%;
  line-height: 0;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}

.slide-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 38%;
  line-height: 1.4;
  z-index: 10;
  padding: 0 12px;
}

.slide-content--right {
  right: 3%;
  text-align: left;
}

.slide-content--left {
  left: 3%;
  text-align: left;
}

.slide-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8bc34a;
  margin-bottom: 10px;
  line-height: 1;
}

.slide-heading {
  font-size: clamp(20px, 2.8vw, 42px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 14px;
  line-height: 1.2;
}

.slide-desc {
  font-size: clamp(12px, 1.3vw, 16px);
  color: #444;
  margin: 0 0 22px;
  line-height: 1.65;
}

.slide-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #8bc34a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}

.slide-btn:hover {
  background: #7cb342;
  transform: translateY(-2px);
}

.slide-btn--blue {
  background: #1a3670;
}

.slide-btn--blue:hover {
  background: #142d5c;
  transform: translateY(-2px);
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.7);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  line-height: 1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: #002878;
  border-color: #002878;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 40, 120, 0.45);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 24px; }

@media (max-width: 640px) {
  .hero-arrow { width: 42px; height: 42px; font-size: 14px; }
  .hero-arrow--prev { left: 10px; }
  .hero-arrow--next { right: 10px; }
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
  line-height: 1;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.hero-dot.active {
  background: #8bc34a;
  border-color: #8bc34a;
}

/* ===== BOOKING STEPS ===== */
.booking-steps {
  background: #fff;
  padding: 72px 24px;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-header {
  text-align: center;
  margin-bottom: 52px;
}

.steps-header h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  color: #1a1a2e;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.25;
}

.steps-header p {
  color: #666;
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: #f8fdf4;
  border-radius: 14px;
  padding: 40px 28px 32px;
  text-align: center;
  position: relative;
  border: 1px solid #e4f0d8;
  transition: box-shadow 0.25s, transform 0.25s;
}

.step-card:hover {
  box-shadow: 0 10px 36px rgba(139, 195, 74, 0.18);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  background: #8bc34a;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(139, 195, 74, 0.4);
}

.step-icon {
  width: 66px;
  height: 66px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #4caf50;
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
  line-height: 1.3;
}

.step-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, #6aab2e 0%, #8bc34a 60%, #9ccc65 100%);
  padding: 26px 24px;
}

.promo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.promo-text {
  font-size: clamp(15px, 1.8vw, 20px);
  color: #fff;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.promo-btn {
  display: inline-block;
  padding: 13px 32px;
  background: #fff;
  color: #4caf50;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.promo-btn:hover {
  background: #1a1a2e;
  color: #fff;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 84px 24px;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.13);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 18px;
  line-height: 1.25;
}

.about-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.82;
  margin: 0 0 16px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #333;
  font-weight: 500;
}

.about-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: #8bc34a;
}

.about-btn {
  display: inline-block;
  padding: 13px 32px;
  background: #8bc34a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.2s;
}

.about-btn:hover {
  background: #7cb342;
}

/* ===== CONSULTANT SECTION ===== */
.consultant-section {
  background: #f4faf0;
  padding: 84px 24px;
}

.consultant-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.consultant-msg {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.consultant-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.11);
}

.consultant-img img {
  width: 100%;
  height: auto;
  display: block;
}

.consultant-text h2 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 18px;
  line-height: 1.3;
}

.consultant-text blockquote {
  border-left: 4px solid #8bc34a;
  margin: 0 0 14px;
  padding: 16px 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.82;
  font-style: italic;
  background: #fff;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.consultant-name {
  font-size: 14px;
  color: #8bc34a;
  font-weight: 700;
  margin: 0 0 22px;
}

.consultant-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #8bc34a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.2s;
}

.consultant-btn:hover {
  background: #7cb342;
}

/* Why Choose Us */
.why-choose {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.why-text h2 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 22px;
  line-height: 1.3;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-icon {
  width: 46px;
  height: 46px;
  background: #e8f5e9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4caf50;
}

.why-icon svg {
  width: 20px;
  height: 20px;
}

.why-list li strong {
  display: block;
  font-size: 15px;
  color: #1a1a2e;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-list li p {
  font-size: 13.5px;
  color: #666;
  margin: 0;
  line-height: 1.65;
}

.why-image {
  text-align: center;
  margin-top: 8px;
}

.why-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: #fff;
  padding: 84px 24px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 52px;
}

.services-header h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  color: #1a1a2e;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.25;
}

.services-header p {
  color: #666;
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s, transform 0.25s;
  background: #fff;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.service-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.07);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.32));
}

.service-body {
  padding: 24px 24px 26px;
}

.service-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
  line-height: 1.3;
}

.service-body p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.75;
  margin: 0 0 16px;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: #4caf50;
  text-decoration: none;
  transition: color 0.2s;
}

.service-link:hover {
  color: #7cb342;
}

.services-cta {
  text-align: center;
  margin-top: 46px;
}

.services-all-btn {
  display: inline-block;
  padding: 14px 44px;
  background: #8bc34a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.2s, transform 0.2s;
}

.services-all-btn:hover {
  background: #7cb342;
  transform: translateY(-2px);
}

/* ===== CONTACT CARDS ===== */
.contact-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.contact-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #eef7e6;
  color: #8bc34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-bottom: 0;
}
.contact-card-body {
  display: flex;
  flex-direction: column;
}
.contact-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #003366;
  margin: 0 0 2px;
  line-height: 1.2;
}
.contact-card-value {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  text-decoration: none;
  display: block;
}
.contact-card a.contact-card-value:hover {
  color: #8bc34a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .consultant-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .slide-content {
    max-width: 46%;
  }

  .promo-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-arrow {
    display: none;
  }
}

@media (max-width: 580px) {
  .steps-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .slide-content {
    max-width: 54%;
    padding: 0 6px;
  }

  .slide-heading {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .slide-desc {
    display: none;
  }

  .slide-btn {
    padding: 9px 18px;
    font-size: 12px;
  }

  .booking-steps,
  .about-section,
  .consultant-section,
  .services-section {
    padding: 52px 16px;
  }
}
