/* ===== MBGA - CSS STYLESHEET ===== */
:root {
  --blue: #0d47a1;
  --blue-dark: #0a2d6b;
  --blue-mid: #1565c0;
  --orange: #f57c00;
  --orange-light: #ff9800;
  --orange-bright: #ff6f00;
  --white: #ffffff;
  --dark: #0a0f1e;
  --dark2: #111827;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --border: rgba(255,255,255,0.1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a2e;
  overflow-x: hidden;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 13px;
}
.topbar a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-left: 12px;
  font-size: 15px;
  transition: color 0.3s;
}
.topbar a:hover { color: var(--orange); }

/* ===== NAVBAR ===== */
#mainNav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,71,161,0.12);
  padding: 10px 0;
  transition: all 0.3s;
}
#mainNav.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 30px rgba(13,71,161,0.2);
}
.navbar-brand .logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
}
.nav-link {
  font-weight: 600;
  color: var(--dark2) !important;
  font-size: 14px;
  padding: 8px 14px !important;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-link:hover, .nav-link.active { color: var(--blue) !important; }
.btn-login-nav {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-login-nav:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 88vh;
  min-height: 550px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 80px 0;
}
.min-vh-hero {
  min-height: 80vh;
}
.hero-badge {
  display: inline-block;
  border: 2px solid rgba(255,152,0,0.6);
  color: #ffcc02;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero-btns { animation: fadeInUp 1s ease 0.6s both; }
.hero-emblem {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,152,0,0.3));
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 20px 40px;
  color: white;
  letter-spacing: 8px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.hero-icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}
.hero-icon-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  color: white;
  transition: all 0.3s;
}
.hero-icon-box:hover {
  background: rgba(245,124,0,0.3);
  transform: translateY(-5px);
}
.hero-icon-box i { font-size: 36px; display: block; margin-bottom: 8px; color: var(--orange-light); }
.hero-icon-box span { font-size: 13px; font-weight: 600; }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 15px;
}
.slider-btn {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.slider-btn:hover { background: var(--orange); border-color: var(--orange); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--orange); transform: scale(1.3); }

/* ===== BUTTONS ===== */
.btn-primary-mbga {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.btn-primary-mbga:hover {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245,124,0,0.4);
}
.btn-outline-mbga {
  background: transparent;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.btn-outline-mbga:hover {
  background: white;
  color: var(--blue);
  border-color: white;
  transform: translateY(-3px);
}
.btn-outline-mbga-dark {
  background: transparent;
  color: var(--blue);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--blue);
  transition: all 0.3s;
}
.btn-outline-mbga-dark:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-3px);
}

/* ===== STATS ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 40px 0;
}
.stat-item { color: white; padding: 10px; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--orange-light);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
  margin-top: 5px;
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: white;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 1px;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 15px;
}
.section-sub {
  color: var(--gray);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.section-text {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 15px;
}
.text-orange { color: var(--orange) !important; }

/* ===== ABOUT ===== */
.about-section { background: var(--gray-light); }
.about-visual {
  position: relative;
  padding: 40px;
  height: 350px;
}
.about-card-main {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 20px;
  padding: 40px;
  color: white;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-card-main i { font-size: 48px; color: var(--orange-light); margin-bottom: 15px; }
.about-card-main h3 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 4px; }
.about-card-main p { color: rgba(255,255,255,0.7); font-size: 14px; }
.about-badge-1, .about-badge-2 {
  position: absolute;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}
.about-badge-1 { bottom: 30px; left: 10px; }
.about-badge-2 { top: 20px; right: 0; }
.feature-point { font-size: 14px; font-weight: 600; color: var(--dark2); padding: 5px 0; }

/* ===== SERVICES ===== */
.services-section { background: var(--white); }
.service-card {
  background: white;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: all 0.3s;
  height: 100%;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(245,124,0,0.15);
}
.service-icon {
  width: 65px; height: 65px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
}
.service-icon i { font-size: 26px; color: white; }
.service-card h4 { font-weight: 700; font-size: 18px; color: var(--dark); margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.service-link { color: var(--blue); font-weight: 700; font-size: 13px; text-decoration: none; transition: color 0.3s; }
.service-link:hover { color: var(--orange); }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  padding: 80px 0;
  color: white;
}
.cta-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; margin-bottom: 15px; }
.cta-section p { font-size: 17px; margin-bottom: 15px; opacity: 0.9; }
.cta-phone { font-size: 28px; font-weight: 800; letter-spacing: 1px; }
.cta-section .btn-primary-mbga {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

/* ===== CLIENTS ===== */
.clients-section { background: var(--gray-light); }
.clients-marquee { overflow: hidden; }
.clients-track {
  display: flex;
  gap: 20px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo-box {
  background: white;
  border-radius: 12px;
  padding: 20px 35px;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  white-space: nowrap;
  border: 2px solid transparent;
  transition: all 0.3s;
  min-width: 180px;
  text-align: center;
}
.client-logo-box:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonial-card {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid transparent;
  transition: all 0.3s;
  height: 100%;
}
.testimonial-card:hover, .testimonial-card.featured {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-color: var(--orange);
}
.testimonial-card.featured .stars,
.testimonial-card:hover .stars { color: var(--orange-light) !important; }
.testimonial-card.featured p,
.testimonial-card:hover p,
.testimonial-card.featured strong,
.testimonial-card:hover strong { color: white; }
.testimonial-card.featured span,
.testimonial-card:hover span { color: rgba(255,255,255,0.7); }
.testimonial-card.featured .client-avatar,
.testimonial-card:hover .client-avatar {
  background: rgba(255,152,0,0.3);
  color: var(--orange-light);
}
.stars { font-size: 20px; color: #f59e0b; margin-bottom: 15px; }
.testimonial-card p { font-size: 14px; line-height: 1.8; color: var(--gray); margin-bottom: 20px; font-style: italic; }
.client-info { display: flex; align-items: center; gap: 12px; }
.client-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}
.client-info strong { display: block; font-size: 15px; color: var(--dark); }
.client-info span { font-size: 13px; color: var(--gray); }

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--blue-dark);
  color: white;
  padding: 25px 0;
  font-size: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  background: linear-gradient(135deg, var(--blue-mid), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 4px;
  margin-bottom: 15px;
}
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-right: 8px;
  transition: all 0.3s;
  font-size: 15px;
}
.footer-social a:hover { background: var(--orange); color: white; }
.footer-heading { color: white; font-weight: 700; font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--orange);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: all 0.3s; }
.footer-links a:hover { color: var(--orange); padding-left: 5px; }
.footer-contact p { font-size: 13px; line-height: 1.8; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
  font-size: 13px;
}
.footer-bottom p { margin: 0; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--orange) 100%);
  padding: 100px 0 60px;
  color: white;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.page-hero .breadcrumb { justify-content: center; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 14px; }
.page-hero .breadcrumb-item.active { color: var(--orange-light); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }

/* ===== LOGIN PAGE ===== */
.login-page-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000, #0a1628, #0d47a1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card-mbga {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 45px;
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(255,255,255,0.15);
}
.login-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #fff, var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  display: block;
}
.login-tagline { text-align: center; color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 2px; margin-bottom: 30px; }
.login-card-mbga .form-control {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  border-radius: 12px;
  padding: 12px 16px;
}
.login-card-mbga .form-control::placeholder { color: rgba(255,255,255,0.5); }
.login-card-mbga .form-control:focus {
  background: rgba(255,255,255,0.18);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,124,0,0.2);
  color: white;
}
.login-card-mbga label { color: rgba(255,255,255,0.7) !important; }
.btn-login-submit {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: white;
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-weight: 700;
  font-size: 15px;
  width: 100%;
  transition: all 0.3s;
  letter-spacing: 1px;
}
.btn-login-submit:hover {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,124,0,0.4);
}

/* ===== CONTACT FORM ===== */
.contact-section { background: var(--gray-light); }
.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}
.contact-info-card {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 20px;
  padding: 40px;
  color: white;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  flex-shrink: 0;
}
.contact-info-item h6 { color: rgba(255,255,255,0.7); font-size: 12px; margin-bottom: 3px; }
.contact-info-item p { color: white; margin: 0; font-size: 14px; }
.form-control-mbga {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.3s;
}
.form-control-mbga:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13,71,161,0.1);
}

/* ===== ABOUT PAGE ===== */
.team-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.07);
  transition: all 0.3s;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13,71,161,0.15);
}
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin: 0 auto 15px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-slider { height: auto; min-height: 500px; }
  .slide-content { padding: 100px 0 60px; }
  .min-vh-hero { min-height: auto; }
  .hero-title { font-size: 40px; }
  .section { padding: 60px 0; }
  .about-visual { height: 260px; }
  .login-card-mbga { padding: 30px 25px; }
}
