/* ============================================================
   AI Crosswind Education — Custom Styles
   Color Palette:
     Primary Dark Blue : #1a237e
     Primary Orange    : #ff6f00
     Accent Light Blue : #1565c0
     Gradient Hero     : #0d1b6e → #1a237e
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --primary: #1a237e;
  --secondary: #ff6f00;
  --accent: #1565c0;
  --light-bg: #f4f6fb;
  --text-dark: #1c1f3b;
  --text-mute: #6c7293;
  --white: #ffffff;
  --card-shadow: 0 8px 32px rgba(26, 35, 126, 0.10);
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
}

.course-img {
  max-height: 500px;
}

/* ── TOP BAR ───────────────────────────────── */
.top-bar {
  background: var(--primary);
  padding: 6px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar a {
  color: #ffd54f;
  text-decoration: none;
}

.top-bar a:hover {
  color: #fff;
}

/* ── NAVBAR ────────────────────────────────── */
.navbar-brand img {
  height: 52px;
}

.navbar-custom {
  background: #fff !important;
  box-shadow: 0 2px 16px rgba(26, 35, 126, 0.10);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-custom .nav-link {
  font-weight: 600;
  color: var(--primary) !important;
  padding: 8px 18px !important;
  transition: color .25s;
  font-size: 0.93rem;
  letter-spacing: 0.02em;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--secondary) !important;
}

.navbar-custom .nav-link.btn-login {
  background: var(--secondary);
  color: #fff !important;
  border-radius: 30px;
  padding: 8px 24px !important;
  margin-left: 8px;
}

.navbar-custom .nav-link.btn-login:hover {
  background: var(--primary);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ── HERO SECTION ──────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, #0d1b6e 0%, #1a237e 50%, #1565c0 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 111, 0, 0.15);
  border: 1px solid rgba(255, 111, 0, 0.5);
  color: #ffd54f;
  border-radius: 40px;
  padding: 5px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-section h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-section h1 span {
  color: #ffd54f;
}

.hero-section p.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-hero-primary {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-primary:hover {
  background: #e65100;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 111, 0, 0.5);
  color: #fff;
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  border-radius: 40px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  transition: background .2s, border-color .2s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap img {
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  max-width: 100%;
  animation: floatUp 4s ease-in-out infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 110px;
  backdrop-filter: blur(6px);
}

.hero-stat .num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffd54f;
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ── SECTION COMMONS ───────────────────────── */
section {
  padding: 80px 0;
}

.sec-label {
  display: inline-block;
  background: rgba(255, 111, 0, 0.1);
  color: var(--secondary);
  border-radius: 30px;
  padding: 4px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sec-heading {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sec-heading span {
  color: var(--secondary);
}

.sec-sub {
  color: var(--text-mute);
  font-size: 0.98rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ── FEATURES ──────────────────────────────── */
.features-section {
  background: var(--light-bg);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform .28s, box-shadow .28s;
  height: 100%;
  border-bottom: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(26, 35, 126, 0.15);
  border-bottom-color: var(--secondary);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 8px 20px rgba(26, 35, 126, 0.25);
  transition: transform .28s;
}

.feature-card:hover .feature-icon {
  transform: rotate(8deg) scale(1.08);
}

.feature-card h5 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--text-mute);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── APP SHOWCASE ──────────────────────────── */
.app-showcase {
  background: var(--white);
}

.app-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 260px;
  background: linear-gradient(160deg, #1a237e, #1565c0);
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 30px 70px rgba(26, 35, 126, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.phone-screen {
  background: var(--light-bg);
  border-radius: 26px;
  padding: 18px 14px;
  min-height: 420px;
}

.phone-notch {
  width: 90px;
  height: 20px;
  background: #1a237e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 18px;
}

.phone-app-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 6px;
}

.phone-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.phone-card {
  background: var(--white);
  border-radius: 12px;
  padding: 10px;
  flex: 1;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.progress-bar-custom {
  height: 6px;
  background: #e0e7ff;
  border-radius: 4px;
  margin-top: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatPulse 3s ease-in-out infinite;
}

.floating-badge.badge-1 {
  top: 40px;
  right: -30px;
}

.floating-badge.badge-2 {
  bottom: 80px;
  left: -40px;
  animation-delay: 1.5s;
}

.floating-badge .badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4caf50;
  flex-shrink: 0;
}

@keyframes floatPulse {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ── HOW IT WORKS ──────────────────────────── */
.how-section {
  background: var(--light-bg);
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--card-shadow);
  text-align: center;
  position: relative;
  height: 100%;
  transition: transform .25s;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--secondary), #ff8f00);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(255, 111, 0, 0.35);
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.step-card h5 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-mute);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── COURSES ───────────────────────────────── */
.courses-section {
  background: var(--white);
}

.course-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .28s, box-shadow .28s;
  height: 100%;
  border: none;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(26, 35, 126, 0.18);
}

.course-img-area {
  padding: 34px 20px;
  text-align: center;
  font-size: 3rem;
  position: relative;
}

.course-card .card-body {
  padding: 24px;
}

.course-card .badge {
  border-radius: 20px;
  padding: 5px 14px;
  font-weight: 600;
}

.course-card h5 {
  font-weight: 700;
  color: var(--primary);
  margin: 10px 0 8px;
}

.course-card p {
  color: var(--text-mute);
  font-size: 0.88rem;
  line-height: 1.6;
}

.course-card .btn-enroll {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 8px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  transition: background .2s;
  text-decoration: none;
  display: inline-block;
}

.course-card .btn-enroll:hover {
  background: var(--secondary);
  color: #fff;
}

/* ── TESTIMONIALS ──────────────────────────── */
.testimonials-section {
  background: linear-gradient(135deg, #0d1b6e, #1a237e);
}

.testimonials-section .sec-heading {
  color: #fff;
}

.testimonials-section .sec-sub {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: background .25s;
  backdrop-filter: blur(8px);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.14);
}

.testimonial-card .stars {
  color: #ffd54f;
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #ff8f00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-author .name {
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
}

.testi-author .role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

/* ── STATS BANNER ──────────────────────────── */
.stats-banner {
  background: var(--secondary);
  padding: 50px 0;
}

.stat-item {
  text-align: center;
}

.stat-item .big-num {
  font-family: 'Nunito', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-item .stat-lbl {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 4px;
}

/* ── CTA SECTION ───────────────────────────── */
.cta-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.cta-card h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 28px;
}

/* ── ABOUT PAGE ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0d1b6e 0%, #1a237e 60%, #1565c0 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 2.8rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin-top: 12px;
}

.breadcrumb-custom {
  justify-content: center;
  background: transparent;
  margin-top: 18px;
}

.breadcrumb-custom .breadcrumb-item a {
  color: #ffd54f;
  text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--card-shadow);
  text-align: center;
  border-top: 4px solid var(--primary);
  transition: transform .25s;
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-card .val-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.value-card h5 {
  font-weight: 700;
  color: var(--primary);
}

.value-card p {
  color: var(--text-mute);
  font-size: 0.87rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 20px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform .25s;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 16px;
  font-weight: 700;
}

.team-card h6 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card small {
  color: var(--text-mute);
}

/* ── CONTACT PAGE ──────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--card-shadow);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}

.contact-info-item p {
  color: var(--text-mute);
  font-size: 0.9rem;
  margin: 0;
}

.form-control-custom {
  border: 2px solid #e0e7ff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.93rem;
  transition: border-color .2s, box-shadow .2s;
  font-family: 'Poppins', sans-serif;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.12);
  outline: none;
}

/* ── LOGIN PAGE ────────────────────────────── */
.login-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1b6e 0%, #1a237e 55%, #1565c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  position: relative;
  overflow: hidden;
}

.login-wrapper::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.login-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 42px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.login-logo {
  text-align: center;
  margin-bottom: 28px;
}

.login-logo img {
  height: 58px;
}

.login-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 6px;
}

.login-sub {
  color: var(--text-mute);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 30px;
}

.btn-login-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-weight: 700;
  font-size: 1rem;
  transition: opacity .2s, transform .2s;
  cursor: pointer;
}

.btn-login-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e7ff;
}

.divider span {
  color: var(--text-mute);
  font-size: 0.82rem;
}

/* ── POLICY PAGES ──────────────────────────── */
.policy-content {
  background: var(--white);
  padding: 0px 0;
}

.policy-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--card-shadow);
  line-height: 1.8;
}

.policy-box h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.policy-box h3 {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 8px;
}

.policy-box p,
.policy-box li {
  color: #444;
  font-size: 0.95rem;
}

.policy-box ul {
  padding-left: 22px;
}

.policy-box ul li {
  margin-bottom: 6px;
}

.policy-date {
  font-size: 0.82rem;
  color: var(--text-mute);
  margin-bottom: 28px;
}

/* ── FOOTER ────────────────────────────────── */
.footer-main {
  background: #0a0f3d;
  padding: 70px 0 30px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.social-btn:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.footer-heading {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffd54f;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.87rem;
}

.footer-contact-item span {
  color: var(--secondary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color .2s;
}

.footer-contact-item a:hover {
  color: #ffd54f;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: #ffd54f;
  text-decoration: none;
}

/* ── APP DOWNLOAD STRIP ────────────────────── */
.app-strip {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  padding: 18px 0;
}

.app-strip p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.93rem;
  margin: 0;
}

.app-btn {
  background: var(--white);
  color: var(--primary);
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s;
}

.app-btn:hover {
  background: #ffd54f;
  color: var(--primary);
}

/* ── SCROLL TO TOP ─────────────────────────── */
#scrollTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(255, 111, 0, 0.45);
  z-index: 9999;
  transition: background .2s, transform .2s;
}

#scrollTopBtn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 767px) {
  .hero-stats {
    gap: 14px;
  }

  .hero-stat {
    min-width: 90px;
  }

  .login-card {
    padding: 34px 22px;
  }

  .policy-box {
    padding: 30px 20px;
  }

  .cta-card {
    padding: 40px 22px;
  }
}

/* ── ANIMATIONS ────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}