/* ===== SKY WING - Main Stylesheet ===== */
:root {
  --primary: #0A4D8C;
  --royal: #1565C0;
  --purple: #8E44AD;
  --light-purple: #C77DFF;
  --white: #FFFFFF;
  --light-bg: #F5F9FF;
  --dark: #0d1b2a;
  --gradient-main: linear-gradient(135deg, #0A4D8C 0%, #8E44AD 100%);
  --gradient-hero: linear-gradient(135deg, #0A4D8C 0%, #1565C0 50%, #8E44AD 100%);
  --shadow: 0 8px 32px rgba(10,77,140,0.15);
  --shadow-hover: 0 16px 48px rgba(10,77,140,0.25);
  --radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--gradient-main); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(10,77,140,0.1);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: var(--transition);
}

.navbar-brand img {
  height: 52px;
  object-fit: contain;
  transition: var(--transition);
}
.navbar-brand img:hover { transform: scale(1.05); }

.navbar .nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  left: 16px; right: 16px;
}

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

.btn-login {
  background: var(--gradient-main);
  color: #fff !important;
  border-radius: 50px !important;
  padding: 8px 24px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(142,68,173,0.3);
  transition: var(--transition) !important;
}
.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(142,68,173,0.4);
  color: #fff !important;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel { height: 100vh; min-height: 600px; }
.hero-carousel .carousel-item {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.slide-1 { background: linear-gradient(135deg, #0A4D8C 0%, #1565C0 60%, #8E44AD 100%); }
.slide-2 { background: linear-gradient(135deg, #1a1a2e 0%, #0A4D8C 50%, #1565C0 100%); }
.slide-3 { background: linear-gradient(135deg, #8E44AD 0%, #1565C0 50%, #0A4D8C 100%); }
.slide-4 { background: linear-gradient(135deg, #0d1b2a 0%, #8E44AD 60%, #C77DFF 100%); }

.slide-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; padding: 20px; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-hero-primary {
  background: #fff;
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  color: var(--purple);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

.carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: var(--transition);
}
.carousel-indicators .active {
  background: #fff;
  width: 30px;
  border-radius: 5px;
}

/* ===== SECTION STYLES ===== */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, #0A4D8C, #8E44AD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 650px;
}

.divider {
  width: 60px; height: 4px;
  background: var(--gradient-main);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.divider.center { margin: 16px auto 24px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--light-bg); }

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition);
}

.about-img-wrapper:hover img { transform: scale(1.04); }

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,77,140,0.1), rgba(142,68,173,0.1));
}

.about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gradient-main);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .number { font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge .label { font-size: 0.8rem; opacity: 0.9; }

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(10,77,140,0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(10,77,140,0.1), rgba(142,68,173,0.1));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-main);
  color: #fff;
  transform: scale(1.1);
}

.feature-card h5 {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.feature-card p {
  color: #777;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ===== VISION/MISSION ===== */
.vision-section { background: var(--gradient-main); position: relative; overflow: hidden; }
.vision-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  animation: pulse-bg 6s ease-in-out infinite;
}
@keyframes pulse-bg {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.vision-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: #fff;
  height: 100%;
  transition: var(--transition);
}
.vision-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.vision-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.vision-card h3 {
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.vision-card p, .vision-card li {
  opacity: 0.9;
  line-height: 1.8;
  font-size: 0.97rem;
}
.vision-card ul { padding-left: 20px; }
.vision-card ul li { margin-bottom: 6px; }

/* ===== OPPORTUNITY CARDS ===== */
.opp-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.opp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.opp-card-header {
  background: var(--gradient-main);
  padding: 28px;
  text-align: center;
  color: #fff;
}
.opp-card-header .opp-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.opp-card-header h5 {
  font-weight: 800;
  font-size: 1.15rem;
}

.opp-card-body {
  padding: 24px 28px;
  color: #666;
  line-height: 1.7;
}

/* ===== STATS COUNTER ===== */
.stats-section {
  background: var(--dark);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item { text-align: center; position: relative; z-index: 1; padding: 20px; }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.95rem; font-weight: 600; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.1); margin: auto; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light-bg); }

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.quote-icon {
  font-size: 3rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  font-size: 0.97rem;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 800; color: var(--dark); font-size: 0.97rem; }
.author-title { color: #999; font-size: 0.82rem; }

.stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; }

/* ===== FAQ ===== */
.faq-section { background: #fff; }

.accordion-item {
  border: 1px solid rgba(10,77,140,0.1) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 700;
  color: var(--dark) !important;
  background: #fff !important;
  font-size: 0.97rem;
  padding: 20px 24px;
}

.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background: var(--light-bg) !important;
  box-shadow: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A4D8C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
  color: #666;
  line-height: 1.8;
  padding: 16px 24px 24px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient-hero);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  position: relative; z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-brand img { height: 48px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.8; color: rgba(255,255,255,0.6); }

.footer h6 {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer h6::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--gradient-main);
  border-radius: 1px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--light-purple); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-item i {
  color: var(--light-purple);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-link:hover {
  background: var(--gradient-main);
  color: #fff;
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--gradient-hero);
  padding: 120px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 { color: #fff; font-weight: 900; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; position: relative; z-index: 1; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,0.7) !important; text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.95) !important; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5) !important; }

/* ===== ABOUT PAGE ===== */
.core-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

.value-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(10,77,140,0.06);
}
.value-card:hover {
  background: var(--gradient-main);
  transform: translateY(-6px);
}
.value-card:hover .value-icon,
.value-card:hover h5,
.value-card:hover p { color: #fff !important; -webkit-text-fill-color: #fff !important; }

.value-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.value-card h5 { font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.value-card p { color: #777; font-size: 0.88rem; line-height: 1.6; }

/* ===== BUSINESS PLAN PAGE ===== */
.plan-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.plan-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: var(--gradient-main);
  opacity: 0.04;
  border-radius: 50%;
  transform: translate(30px, -30px);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.plan-card .plan-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.plan-card h5 { font-weight: 800; color: var(--dark); margin-bottom: 12px; font-size: 1.15rem; }
.plan-card p { color: #666; line-height: 1.7; font-size: 0.95rem; }

/* Roadmap */
.roadmap { position: relative; padding: 40px 0; }
.roadmap::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--purple));
  transform: translateX(-50%);
}

.roadmap-step {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}
.roadmap-step:nth-child(even) { flex-direction: row-reverse; }
.roadmap-step:nth-child(even) .step-content { text-align: right; }

.step-content {
  width: calc(50% - 40px);
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.step-content:hover { box-shadow: var(--shadow-hover); }

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  left: 50%; transform: translateX(-50%);
  box-shadow: 0 4px 20px rgba(10,77,140,0.3);
  z-index: 1;
}

.step-content h5 { font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.step-content p { color: #777; font-size: 0.92rem; line-height: 1.6; }

@media (max-width: 768px) {
  .roadmap::before { left: 28px; }
  .roadmap-step, .roadmap-step:nth-child(even) { flex-direction: column; padding-left: 70px; }
  .roadmap-step:nth-child(even) .step-content { text-align: left; }
  .step-content { width: 100%; }
  .step-number { left: 0; transform: none; }
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.contact-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  margin-bottom: 16px;
}

.contact-info-card h5 { font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.contact-info-card p { color: #666; font-size: 0.93rem; line-height: 1.7; }

.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}

.form-control, .form-select {
  border: 1.5px solid rgba(10,77,140,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--light-bg);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,77,140,0.1);
  background: #fff;
}

.form-label { font-weight: 600; color: var(--dark); font-size: 0.9rem; margin-bottom: 6px; }

.btn-submit {
  background: var(--gradient-main);
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(142,68,173,0.3);
  color: #fff;
}

.map-placeholder {
  background: var(--light-bg);
  border-radius: var(--radius);
  height: 350px;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed rgba(10,77,140,0.2);
  text-align: center;
}

/* ===== LOGIN PAGE ===== */
.login-page {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.login-page::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.login-page::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.login-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 56px 48px;
  width: 100%; max-width: 440px;
  position: relative; z-index: 1;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}

.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo img { height: 60px; object-fit: contain; }
.login-logo h4 { color: #fff; font-weight: 900; margin-top: 12px; font-size: 1.4rem; }
.login-logo p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.login-card .form-label { color: rgba(255,255,255,0.9); }
.login-card .form-control {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 10px;
}
.login-card .form-control::placeholder { color: rgba(255,255,255,0.5); }
.login-card .form-control:focus {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
  color: #fff;
}

.btn-login-submit {
  background: #fff;
  color: var(--primary);
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}
.btn-login-submit:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.forgot-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
}
.forgot-link:hover { color: #fff; }

.divider-text {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
  position: relative;
  margin: 20px 0;
}
.divider-text::before, .divider-text::after {
  content: '';
  position: absolute;
  top: 50%; width: calc(50% - 30px);
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.divider-text::before { left: 0; }
.divider-text::after { right: 0; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .section-pad { padding: 60px 0; }
  .hero-carousel, .hero-carousel .carousel-item { height: 80vh; }
}

@media (max-width: 576px) {
  .section-pad { padding: 50px 0; }
  .hero-carousel, .hero-carousel .carousel-item { height: 90vh; }
  .contact-form-wrapper { padding: 32px 20px; }
  .login-card { padding: 40px 24px; }
}

/* ===== MISC ===== */
.btn-primary-custom {
  background: var(--gradient-main);
  color: #fff;
  padding: 13px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  font-size: 0.97rem;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(142,68,173,0.3);
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  padding: 13px 32px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  font-size: 0.97rem;
}
.btn-outline-custom:hover {
  background: var(--gradient-main);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.img-cover {
  width: 100%; height: 100%;
  object-fit: cover;
}

.bg-light-custom { background: var(--light-bg); }

/* Toast */
.toast-msg {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--gradient-main);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}
.toast-msg.show { transform: translateY(0); opacity: 1; }
