/* ========== AJMONEY - Brand Colors & Styles ========== */
:root {
  --primary: #387bbd;
  --primary-dark: #2d6299;
  --accent: #f59507;
  --accent-dark: #d17d06;
  --dark: #1a1d29;
  --body-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: #333;
  overflow-x: hidden;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.reveal.revealed:nth-child(1) { transition-delay: 0.05s; }
.reveal.revealed:nth-child(2) { transition-delay: 0.1s; }
.reveal.revealed:nth-child(3) { transition-delay: 0.15s; }
.reveal.revealed:nth-child(4) { transition-delay: 0.2s; }
.reveal.revealed:nth-child(5) { transition-delay: 0.25s; }
.reveal.revealed:nth-child(6) { transition-delay: 0.3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(56, 123, 189, 0.15); }
  50% { box-shadow: 0 8px 24px rgba(56, 123, 189, 0.25); }
}
.service-card .service-icon {
  animation: float 4s ease-in-out infinite;
}
.service-card:hover .service-icon {
  animation: float 2s ease-in-out infinite;
}

/* ---------- Navbar ---------- */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, padding 0.3s ease, background 0.3s ease;
  min-height: 80px;
  z-index: 1030;
  border-bottom: 1px solid transparent;
}

.navbar.navbar-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 0.65rem 0;
  border-bottom-color: rgba(56, 123, 189, 0.1);
}

.navbar-brand {
  font-family: var(--body-font);
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.navbar-brand:hover {
  opacity: 0.92;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-left: 0.5rem;
}
.navbar-brand-text .brand-aj {
  font-size: 1.65rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}
.navbar-brand-text .brand-money {
  font-size: 1.05rem;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  margin-top: -2px;
  transition: color 0.25s ease;
}
.navbar-brand:hover .brand-aj {
  color: var(--primary-dark);
}
.navbar-brand:hover .brand-money {
  color: var(--accent);
}

.header-logo {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.navbar-brand:hover .header-logo {
  transform: scale(1.05);
}

/* Header CTA button */
.navbar .btn-header-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff !important;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.navbar .btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 123, 189, 0.4);
  color: #fff !important;
}

.brand-text {
  color: var(--dark);
}

.navbar .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  transition: color 0.2s;
  position: relative;
}

.navbar .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover {
  color: var(--accent) !important;
  background: transparent !important;
}

.navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar .navbar-nav .nav-link.active {
  color: var(--accent-dark) !important;
  font-weight: 600;
  background: transparent !important;
  box-shadow: none;
}

.navbar .navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Remove dropdown caret on nav items that have submenus */
.navbar .navbar-nav .nav-link.dropdown-toggle::after {
  border-width: 0;
  margin-left: 0;
  vertical-align: unset;
}

.navbar .dropdown-menu {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.navbar .dropdown-item {
  color: var(--dark);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
  position: relative;
}

.navbar .dropdown-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  transition: width 0.3s ease;
}

.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--accent);
}

.navbar .dropdown-item:hover::after {
  width: 100%;
}

.navbar .dropdown-item.active::after {
  width: 100%;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(245, 149, 7, 0.4);
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    margin-top: 0;
    border-radius: 0 0 12px 12px;
  }
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding-top: var(--header-height);
  width: 100%;
  max-width: 100%;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
}

.hero-section .carousel-item {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-origin: border-box;
}

.hero-bg-1 {
  background-image: url('../imgaes/hero-1.png');
}
.hero-bg-2 {
  background-image: url('../imgaes/hero-2.png');
}
.hero-bg-3 {
  background-image: url('../imgaes/hero-3.png');
}
/* Hero zoom (Ken Burns) - runs when slide is active */
.hero-zoom {
  animation: heroZoom 8s ease-out forwards;
  transform-origin: center center;
}
.carousel-item.active .hero-zoom {
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  display: none; /* text/buttons hidden on slider – images only */
}
.hero-content .container {
  position: relative;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0;
  border: 1px solid rgba(245, 149, 7, 0.5);
  padding: 0.35rem 1rem;
  border-radius: 50px;
}
.hero-title {
  font-size: clamp(1.85rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
}
.hero-title .text-accent {
  color: var(--accent);
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin-bottom: 1.75rem;
  line-height: 1.6;
  opacity: 0;
}
.hero-cta {
  opacity: 0;
}
.hero-cta .btn {
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-cta .btn:hover {
  transform: translateY(-3px);
}
/* Staggered animation when slide is active */
.carousel-item.active .hero-badge {
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}
.carousel-item.active .hero-title {
  animation: fadeInUp 0.6s ease-out 0.35s forwards;
}
.carousel-item.active .hero-tagline {
  animation: fadeInUp 0.6s ease-out 0.5s forwards;
}
.carousel-item.active .hero-cta {
  animation: fadeInUp 0.6s ease-out 0.65s forwards;
}

/* Trust strip below hero */
.hero-trust-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0.75rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 29, 41, 0.92) 100%);
}
.hero-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
}
.hero-trust-item i {
  color: var(--accent);
  margin-right: 0.4rem;
}

/* Hero carousel indicators */
.hero-section .carousel-indicators {
  bottom: 4rem;
  z-index: 4;
}
.hero-section .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  transition: transform 0.2s, background 0.2s;
}
.hero-section .carousel-indicators .active {
  background-color: var(--accent);
  transform: scale(1.25);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  animation: scrollHintBounce 2s ease-in-out infinite;
}
.hero-scroll-hint i {
  font-size: 1.25rem;
}
@keyframes scrollHintBounce {
  0%, 100% { opacity: 0.9; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 991.98px) {
  .hero-scroll-hint { display: none; }
}

.hero-section .container {
  z-index: 2;
}

.hero-caption {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  margin: 0 0.5rem;
  opacity: 1;
  transition: background 0.2s, transform 0.2s;
  z-index: 3;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.05);
}

/* Slider: 1024px – responsive height, full width */
@media (min-width: 992px) and (max-width: 1439.98px) {
  .hero-section {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    width: 100%;
    max-width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
  }
  .hero-section .carousel-inner .carousel-item {
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
  }
  .hero-bg {
    background-size: cover;
    background-position: center center;
  }
}

/* Slider: 1440px and up – responsive height, full width */
@media (min-width: 1440px) {
  .hero-section {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    width: 100%;
    max-width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
  }
  .hero-section .carousel-inner .carousel-item {
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
  }
  .hero-bg {
    background-size: cover;
    background-position: center center;
  }
}

@media (max-width: 576.98px){
  .hero-section .carousel-inner .carousel-item {
    height: 520px;
  }
  .hero-content {
    padding: 1.5rem 0 5rem;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
  }
  .hero-trust-strip {
    padding: 0.5rem 0;
  }
  .hero-trust-inner {
    gap: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
  .hero-section .carousel-indicators {
    bottom: 3.25rem;
  }

  /* Below 576px: use mobile_slider_1, mobile_slider_2, mobile_slider_3 */
  .hero-bg-1 {
    background-image: url('../imgaes/mobile_slider_1.png');
    background-size: cover;
    background-position: center center;
  }

  .hero-bg-2 {
    background-image: url('../imgaes/mobile_slider_2.png');
    background-size: cover;
    background-position: center center;
  }

  .hero-bg-3 {
    background-image: url('../imgaes/mobile_slider_3.png');
    background-size: cover;
    background-position: center center;
  }
}

/* Hero slider: mobile and tablet - fixed height + mobile images */
@media (max-width: 991.98px) {
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    height: 420px;
  }

  .hero-section .carousel-item {
    min-height: unset;
  }

  .hero-content {
    padding: 1.5rem 0 4.5rem;
  }
  .hero-tagline {
    max-width: 100%;
  }
  .hero-cta .btn-lg {
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
  }

  .hero-bg {
    background-position: center center;
  }

  .hero-section .carousel-control-prev {
    left: 8px;
    margin: 0;
  }

  .hero-section .carousel-control-next {
    right: 8px;
    margin: 0;
  }

  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    height: 380px;
  }

  .hero-section .carousel-item {
    min-height: unset;
  }

  .hero-section .carousel-inner .carousel-item {
    height: 380px;
  }

  .hero-section .carousel-control-prev {
    left: 4px;
  }

  .hero-section .carousel-control-next {
    right: 4px;
  }
}

.tracking-wide {
  letter-spacing: 0.2em;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 60%, var(--accent) 100%);
  padding: 140px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.page-hero .breadcrumb-item a:hover {
  color: var(--accent);
}

.page-hero .breadcrumb-item.active {
  color: var(--accent);
}

/* ---------- Section badges & titles ---------- */
.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 123, 189, 0.4);
}

.btn-outline-light:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- About ---------- */
.about-placeholder {
  min-height: 320px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.about-img-wrap {
  max-width: 100%;
}

.about-team-img {
  width: 90%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* ---------- Service cards ---------- */
.service-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(56, 123, 189, 0.15) !important;
  border-color: rgba(56, 123, 189, 0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 1.25rem 1.25rem 0;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  animation: none;
  transform: scale(1.1);
}

.service-card .card-body {
  padding: 1rem 1.25rem 1.5rem;
}

/* ---------- Feature cards ---------- */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(56, 123, 189, 0.12) !important;
}

.feature-num {
  line-height: 1;
  color: var(--primary);
}

/* ---------- Stats section ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--accent) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.stats-section .display-4 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ---------- Partner logos ---------- */
.partner-logo {
  min-height: 100px;
  width: 100%;
  max-width: 180px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.partner-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(56, 123, 189, 0.15);
}

.section-intro {
  max-width: 600px;
}

/* Contact section cards (home) - hover on card only */
.contact-card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1) !important;
}

.contact-card-icon {
  transition: none;
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(160deg, var(--dark) 0%, var(--primary) 45%, var(--primary-dark) 100%);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.footer-text {
  color: rgba(255, 255, 255, 0.85);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--accent) !important;
  padding-left: 4px;
}

.footer-icon {
  color: var(--accent);
  opacity: 0.95;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  background: var(--accent);
  color: #fff !important;
  transform: translateY(-3px);
}

/* ---------- Service detail page ---------- */
.service-detail-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-detail-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ---------- Scroll to top button ---------- */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(56, 123, 189, 0.4);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 6px 20px rgba(245, 149, 7, 0.45);
}

/* ---------- Contact page ---------- */
.contact-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-page .contact-form-card {
  background: linear-gradient(145deg, #fff 0%, #f8f9fa 100%);
  border: 1px solid rgba(56, 123, 189, 0.08);
}

.contact-form-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-page .contact-form .form-label {
  margin-bottom: 0.35rem;
}

.contact-page .contact-input,
.contact-page .contact-form .form-control {
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
}

.contact-page .contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(56, 123, 189, 0.15);
}

.contact-page .tracking {
  letter-spacing: 0.04em;
}

.contact-info-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
}

.contact-info-icon-phone {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.contact-info-icon-email {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.contact-info-icon-address {
  background: linear-gradient(135deg, #2d3142 0%, var(--dark) 100%);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(26, 29, 41, 0.98);
    padding: 1rem;
    margin: 0.5rem -0.75rem 0;
    border-radius: 12px;
  }

  .navbar-collapse .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
  }

  .navbar-collapse .nav-link {
    position: relative;
  }

  .navbar-collapse .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--accent);
    width: 0;
    transition: width 0.3s ease;
  }

  .navbar-collapse .nav-link:hover {
    color: var(--accent) !important;
    background: transparent !important;
  }

  .navbar-collapse .nav-link:hover::after {
    width: 100%;
  }

  .navbar-collapse .nav-link.active {
    color: var(--accent) !important;
    font-weight: 600;
    background: transparent !important;
    box-shadow: none;
  }

  .navbar-collapse .nav-link.active::after {
    width: 100%;
  }

  .navbar-collapse .nav-link.dropdown-toggle::after {
    border-width: 0;
    margin-left: 0;
    vertical-align: unset;
  }

  .navbar-collapse .dropdown-menu {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0.25rem 0 0 0.75rem;
  }

  .navbar-collapse .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    position: relative;
  }

  .navbar-collapse .dropdown-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--accent);
    width: 0;
    transition: width 0.3s ease;
  }

  .navbar-collapse .dropdown-item:hover {
    color: var(--accent) !important;
    background: transparent;
  }

  .navbar-collapse .dropdown-item:hover::after {
    width: 100%;
  }

  .navbar-collapse .dropdown-item.active::after {
    width: 100%;
  }

  .header-logo {
    height: 46px;
  }

  .navbar-brand-text {
    margin-left: 0.35rem;
  }
  .navbar-brand-text .brand-aj {
    font-size: 1.25rem;
  }
  .navbar-brand-text .brand-money {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }

  .hero-section .display-3 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .min-vh-100 {
    min-height: 80vh !important;
  }

  .page-hero {
    padding: 120px 0 60px;
  }
}

@media (max-width: 575.98px) {
  .hero-section .display-3 {
    font-size: 1.75rem;
  }

  .stats-section .display-4 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* ---------- Utility ---------- */
.shadow-sm {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}

.rounded-4 {
  border-radius: 1rem !important;
}
