/* ============================================================
   sections.css — Page Section Styles
   ============================================================ */

/* ── HERO ── */
#hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,30,70,0.78) 0%, rgba(10,30,70,0.52) 55%, rgba(10,30,70,0.18) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 640px; animation: fadeUp 0.9s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); color: #fff;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 22px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; display: block; }
.hero-content h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); color: #fff; font-weight: 700; margin-bottom: 20px; line-height: 1.18; }
.hero-content p { color: rgba(255,255,255,0.88); font-size: 1.12rem; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero-cta .btn-outline:hover { background: rgba(255,255,255,0.15); }
.hero-stats { position: relative; z-index: 1; display: flex; gap: 48px; margin-top: 60px; flex-wrap: wrap; }
.stat { color: #fff; }
.stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 4px; font-weight: 500; }

/* ── SERVICES ── */
#services { padding: 96px 0; background: var(--bg-white); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.service-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img { height: 200px; overflow: hidden; position: relative; }
.service-img img { height: 100%; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-icon-badge { position: absolute; top: 14px; left: 14px; width: 40px; height: 40px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.service-icon-badge svg { width: 20px; height: 20px; fill: #fff; }
.service-body { padding: 24px; }
.service-body h3 { font-size: 1.18rem; margin-bottom: 10px; }
.service-body p { font-size: 0.93rem; color: var(--text-light); line-height: 1.65; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 0.88rem; margin-top: 16px; transition: gap var(--transition); }
.service-link:hover { gap: 10px; }

/* ── HOW IT WORKS ── */
#how-it-works { padding: 96px 0; background: var(--bg-soft); }
.hiw-header { text-align: center; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: calc(16.66% + 24px); right: calc(16.66% + 24px); height: 2px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(43,127,212,0.3); }
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { font-size: 0.93rem; color: var(--text-light); }

/* ── FEATURES ── */
#features { padding: 96px 0; background: var(--bg-white); }
.features-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.features-img { border-radius: var(--radius-lg); overflow: hidden; height: 480px; box-shadow: var(--shadow-lg); }
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; background: var(--bg-soft); border-radius: var(--radius); border: 1px solid var(--border); transition: border-color var(--transition), box-shadow var(--transition); }
.feature-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.feature-icon { width: 44px; height: 44px; min-width: 44px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.feature-icon svg { width: 22px; height: 22px; fill: var(--primary); }
.feature-text h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.feature-text p { font-size: 0.88rem; color: var(--text-light); }

/* ── PRICING ── */
#pricing { padding: 96px 0; background: var(--bg-soft); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.pricing-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; text-align: center; position: relative; }
.pricing-card.featured { background: var(--primary); border-color: var(--primary); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #F59E0B; color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; letter-spacing: 0.1em; white-space: nowrap; }
.pricing-price { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-period { font-size: 1rem; color: var(--text-light); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.7); }
.pricing-desc { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.75); }
.pricing-features { text-align: left; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-feature { display: flex; gap: 10px; font-size: 0.92rem; color: var(--text-body); }
.pricing-card.featured .pricing-feature { color: #fff; }
.pricing-feature .check { color: var(--primary); }
.pricing-card.featured .pricing-feature .check { color: #93C5FD; }

/* ── TESTIMONIALS ── */
#testimonials { padding: 96px 0; background: var(--bg-soft); }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); transition: box-shadow var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: #F59E0B; font-size: 1.1rem; }
.testimonial-card p { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.author-info strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.author-info span { font-size: 0.8rem; color: var(--text-light); }

/* ── BOOKING ── */
#booking { padding: 96px 0; background: var(--bg-soft); }
.booking-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.booking-info .section-sub { text-align: left; margin: 0 0 32px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; font-size: 0.95rem; }
.contact-detail-icon { width: 42px; height: 42px; min-width: 42px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.contact-detail-icon svg { width: 20px; height: 20px; fill: #fff; }

/* ── ABOUT ── */
#about { padding: 96px 0; background: var(--bg-white); }
.about-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.about-images { position: relative; height: 480px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 78%; height: 82%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 52%; height: 50%; border-radius: var(--radius-lg); overflow: hidden; border: 4px solid #fff; box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; top: 50%; right: 0; transform: translate(20%, -50%); background: var(--primary); color: #fff; border-radius: var(--radius); padding: 16px 20px; text-align: center; box-shadow: var(--shadow-md); min-width: 110px; }
.about-badge-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-label { font-size: 0.75rem; opacity: 0.85; margin-top: 4px; }
.about-content .section-sub { text-align: left; margin: 0 0 28px; }
.about-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.about-point { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 500; color: var(--text-dark); }
.check-icon { width: 22px; height: 22px; min-width: 22px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.check-icon svg { width: 12px; height: 12px; fill: var(--primary); }

/* ── CTA BANNER ── */
#cta-banner { padding: 88px 0; background: linear-gradient(135deg, var(--primary) 0%, #1A5FA8 100%); position: relative; overflow: hidden; text-align: center; }
#cta-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.06); }
#cta-banner::after { content: ''; position: absolute; bottom: -80px; left: -40px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,0.82); font-size: 1.08rem; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-img { height: 340px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 360px; }
  .about-badge, .about-img-secondary { display: none; }
}
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .booking-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { gap: 28px; }
  #services, #how-it-works, #features, #pricing, #testimonials, #booking, #about, #cta-banner { padding: 64px 0; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
