/* =========================================================
   RESET
========================================================= */

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


body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #0d1b2a;
  max-width: 100%;
  overflow-x: hidden;
}



/* =========================================================
   TOP INFORMATION BAR
========================================================= */

.top-info-bar {

  position: fixed;

  top: 0;
  left: 0;

  z-index: 1040;

  width: 100%;

  background: #0d1b2a;

  color: #ffffff;

  transform: translateY(-110%);
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);

  padding: 1rem 2rem;

  font-size: 0.8rem;

  font-weight: 300;

  letter-spacing: 0.03em;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 1rem;

}


.top-info-left {

  display: flex;

  align-items: center;

  gap: 2rem;

  flex-shrink: 0;

  white-space: nowrap;

}


.top-info-left i {

  margin-right: 0.5rem;

  color: rgb(252, 203, 107);

  font-size: 1.1rem;

}


.top-info-center {

  flex: 1;

  overflow: hidden;

  white-space: nowrap;

  min-width: 0;

  padding: 0 2rem;

}


.top-info-track {

  display: inline-block;

  white-space: nowrap;

  animation:
    marquee 18s linear infinite;

  color: rgb(252, 203, 107);

  font-weight: 600;

}


@keyframes marquee {

  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }

}


.top-info-right {

  display: flex;

  align-items: center;

  gap: 2rem;

  flex-shrink: 0;

  white-space: nowrap;

}


.top-info-right a {

  color: #ffffff;

  text-decoration: none;

  font-size: 0.8rem;

}


.top-info-right a:hover {

  color: rgb(252, 203, 107);

}



/* =========================================================
   NAVBAR
========================================================= */

.navbar {

  position: fixed;

  top: 55px;

  left: 0;

  right: 0;

  z-index: 1030;

  background-color:
    #0b1c39 !important;

  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.18);

  transform: translateY(calc(-100% - 70px));
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;

}

body.header-visible .top-info-bar,
body.header-visible #mainNavbar {
  transform: translateY(0);
  pointer-events: auto;
}


.navbar::after {

  content: "";

  position: absolute;

  bottom: 0;

  left: 10%;

  width: 80%;

  height: 2px;

  background:
    rgba(255, 255, 255, 0.15);

}


.nav-logo img {

  height: 65px;

  filter:
    drop-shadow(
      0 2px 6px
      rgba(0, 0, 0, 0.25)
    );

}


.navbar .nav-link {

  color: #ffffff !important;

  font-weight: 600;

  letter-spacing: 1px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;

}


.navbar .nav-link:hover {

  color:
    rgb(252, 203, 107) !important;

  transform:
    translateY(-1px);

}


.navbar .nav-link.active {

  color:
    rgb(252, 203, 107) !important;

}


.nav-btn {

  background:
    linear-gradient(
      135deg,
      rgb(23, 108, 254),
      rgb(12, 78, 185)
    );

  transition:
    background 0.3s ease,
    transform 0.3s ease;

}


.nav-btn:hover {

  background:
    linear-gradient(
      135deg,
      rgb(252, 203, 107),
      rgb(230, 165, 50)
    );

  transform:
    translateY(-2px);

}


.navbar-toggler {
  display: none !important;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
  z-index: 1300;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
}

.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 30px; }

.menu-toggle.is-open span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.classic-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background:
    radial-gradient(circle at top right, rgba(252, 203, 107, 0.16), transparent 34%),
    linear-gradient(160deg, #071018 0%, #0b1c39 55%, #071525 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 28px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.classic-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.classic-menu-inner {
  width: min(560px, 100%);
}

.classic-menu-kicker {
  margin: 0 0 28px;
  color: rgb(252, 203, 107);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.classic-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.classic-menu-nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(1.7rem, 7vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  padding: 6px 0;
  transform: translateY(18px);
  opacity: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.classic-menu.is-open .classic-menu-nav a {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.2s ease;
}

.classic-menu.is-open .classic-menu-nav a:nth-child(1) { transition-delay: 0.05s; }
.classic-menu.is-open .classic-menu-nav a:nth-child(2) { transition-delay: 0.10s; }
.classic-menu.is-open .classic-menu-nav a:nth-child(3) { transition-delay: 0.15s; }
.classic-menu.is-open .classic-menu-nav a:nth-child(4) { transition-delay: 0.20s; }
.classic-menu.is-open .classic-menu-nav a:nth-child(5) { transition-delay: 0.25s; }
.classic-menu.is-open .classic-menu-nav a:nth-child(6) { transition-delay: 0.30s; }
.classic-menu.is-open .classic-menu-nav a:nth-child(7) { transition-delay: 0.35s; }
.classic-menu.is-open .classic-menu-nav a:nth-child(8) { transition-delay: 0.40s; }

.classic-menu-nav a span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgb(252, 203, 107);
  min-width: 1.6rem;
}

.classic-menu-nav a:hover,
.classic-menu-nav a.is-current {
  color: rgb(252, 203, 107);
}

.classic-menu-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.classic-menu-foot a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open #mainNavbar {
  z-index: 1300;
  background-color: transparent !important;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex;
  }
}



/* =========================================================
   HERO
========================================================= */

.branches-hero {

  min-height: 65vh;

  margin-top: 0;

  padding-top: 80px;

  padding-bottom: 80px;

  position: relative;

  display: flex;

  align-items: center;

  background:
    linear-gradient(
      135deg,
      #071525,
      #123a70
    );

  overflow: hidden;

}


.branches-hero::before {

  content: "";

  position: absolute;

  width: 550px;

  height: 550px;

  border-radius: 50%;

  background:
    rgba(252, 203, 107, 0.08);

  top: -280px;

  right: -100px;

}


.branches-hero::after {

  content: "";

  position: absolute;

  width: 300px;

  height: 300px;

  border-radius: 50%;

  background:
    rgba(23, 108, 254, 0.12);

  bottom: -160px;

  left: -80px;

}


.branches-hero-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7, 21, 37, 0.4),
      transparent
    );

}


.branches-hero-content {

  position: relative;

  z-index: 2;

  max-width: 800px;

}


.hero-label {

  display: inline-block;

  color:
    rgb(252, 203, 107);

  font-size: 0.8rem;

  font-weight: 800;

  letter-spacing: 4px;

  margin-bottom: 15px;

}


.branches-hero h1 {

  color: #ffffff;

  font-size:
    clamp(3rem, 7vw, 5.5rem);

  font-weight: 800;

  line-height: 1;

  margin-bottom: 25px;

}


.branches-hero p {

  max-width: 650px;

  color:
    rgba(255, 255, 255, 0.78);

  font-size: 1.1rem;

  line-height: 1.8;

  margin-bottom: 30px;

}


.hero-breadcrumb {

  display: flex;

  align-items: center;

  gap: 10px;

  color:
    rgba(255, 255, 255, 0.55);

  font-size: 0.85rem;

}


.hero-breadcrumb a {

  color:
    rgb(252, 203, 107);

  text-decoration: none;

}


.hero-breadcrumb i {

  font-size: 0.7rem;

}



/* =========================================================
   INTRO
========================================================= */

.branches-intro {

  padding: 100px 0 70px;

}


.intro-content {

  max-width: 800px;

  margin: auto;

}


.section-label {

  display: inline-block;

  color:
    rgb(23, 108, 254);

  font-size: 0.78rem;

  font-weight: 800;

  letter-spacing: 3px;

  margin-bottom: 12px;

}


.intro-content h2,
.section-heading h2 {

  color: #0d1b2a;

  font-size:
    clamp(2rem, 4vw, 3.2rem);

  font-weight: 800;

  margin-bottom: 20px;

}


.intro-content p {

  color: #667085;

  font-size: 1rem;

  line-height: 1.9;

  margin-bottom: 12px;

}



/* =========================================================
   BRANCHES SECTION
========================================================= */

.branches-section {

  background: #f8f9fc;

  padding: 90px 0 110px;

}


.section-heading {

  max-width: 700px;

  margin:
    0 auto 60px;

}


.section-heading p {

  color: #667085;

  line-height: 1.8;

}



/* =========================================================
   BRANCH GRID
========================================================= */

.branches-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 30px;

}


.branch-card {

  background: #ffffff;

  border-radius: 24px;

  overflow: hidden;

  box-shadow:
    0 10px 35px
    rgba(13, 27, 42, 0.07);

  border:
    1px solid
    rgba(13, 27, 42, 0.05);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

}


.branch-card:hover {

  transform:
    translateY(-8px);

  box-shadow:
    0 20px 45px
    rgba(13, 27, 42, 0.13);

}


.branch-image {

  height: 260px;

  position: relative;

  overflow: hidden;

}


.branch-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center 28%;

  transition:
    transform 0.5s ease;

}


.branch-card:hover
.branch-image img {

  transform:
    scale(1.06);

}


.branch-badge {

  position: absolute;

  top: 20px;

  left: 20px;

  background:
    rgb(252, 203, 107);

  color: #0d1b2a;

  font-size: 0.7rem;

  font-weight: 800;

  letter-spacing: 1px;

  padding: 8px 13px;

  border-radius: 50px;

}


.branch-content {

  padding: 30px;

}


.branch-location {

  display: block;

  color:
    rgb(23, 108, 254);

  font-size: 0.72rem;

  font-weight: 800;

  letter-spacing: 1.5px;

  margin-bottom: 10px;

}


.branch-location i {

  margin-right: 5px;

}


.branch-content h3 {

  color: #0d1b2a;

  font-size: 1.7rem;

  font-weight: 800;

  margin-bottom: 12px;

}


.branch-content p {

  color: #667085;

  font-size: 0.9rem;

  line-height: 1.75;

  margin-bottom: 22px;

}


.branch-details {

  border-top:
    1px solid
    rgba(13, 27, 42, 0.08);

  padding-top: 18px;

  margin-bottom: 24px;

}


.branch-details div {

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 8px;

}


.branch-details i {

  color:
    rgb(252, 174, 44);

}


.branch-details span {

  color: #667085;

  font-size: 0.82rem;

}


.branch-btn {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  color:
    rgb(23, 108, 254);

  font-size: 0.85rem;

  font-weight: 800;

  text-decoration: none;

  transition:
    gap 0.3s ease,
    color 0.3s ease;

}


.branch-btn:hover {

  color:
    #0d1b2a;

  gap: 15px;

}



/* =========================================================
   CTA
========================================================= */

.branches-cta {

  background:
    linear-gradient(
      135deg,
      #0b1c39,
      #123a70
    );

  padding: 85px 0;

}


.branches-cta-content {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;

}


.branches-cta-content span {

  color:
    rgb(252, 203, 107);

  font-size: 0.75rem;

  font-weight: 800;

  letter-spacing: 3px;

}


.branches-cta-content h2 {

  color: #ffffff;

  font-size:
    clamp(2rem, 4vw, 3.2rem);

  line-height: 1.15;

  font-weight: 800;

  margin:
    12px 0 18px;

}


.branches-cta-content p {

  max-width: 650px;

  color:
    rgba(255, 255, 255, 0.7);

  line-height: 1.8;

  margin: 0;

}


.cta-btn {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  white-space: nowrap;

  background:
    rgb(252, 203, 107);

  color: #0d1b2a;

  padding: 15px 30px;

  border-radius: 50px;

  font-size: 0.85rem;

  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease;

}


.cta-btn:hover {

  background: #ffffff;

  color: #0d1b2a;

  transform:
    translateY(-3px);

}



/* =========================================================
   FOOTER
========================================================= */

.main-footer {

  background: #071525;

  color: #ffffff;

  padding: 80px 0 0;

}


.footer-main {

  display: grid;

  grid-template-columns:
    1.6fr
    0.8fr
    0.9fr
    1.2fr;

  gap: 60px;

  padding-bottom: 60px;

}


.footer-about {

  max-width: 350px;

}


.footer-logo {

  display: inline-block;

  margin-bottom: 22px;

}


.footer-logo img {

  width: 180px;

  height: auto;

}


.footer-about p {

  color:
    rgba(255,255,255,0.65);

  font-size: 0.9rem;

  line-height: 1.8;

  margin-bottom: 25px;

}


.footer-socials {

  display: flex;

  gap: 10px;

}


.footer-socials a {

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.08);

  color: #ffffff;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  transition:
    0.3s ease;

}


.footer-socials a:hover {

  background:
    rgb(252,203,107);

  color: #071525;

  transform:
    translateY(-3px);

}


.footer-column h4 {

  color: #ffffff;

  font-size: 1rem;

  font-weight: 750;

  margin-bottom: 24px;

  position: relative;

  padding-bottom: 12px;

}


.footer-column h4::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 35px;

  height: 2px;

  background:
    rgb(252,203,107);

}


.footer-column ul {

  list-style: none;

  padding: 0;

  margin: 0;

}


.footer-column li {

  margin-bottom: 12px;

}


.footer-column li a {

  color:
    rgba(255,255,255,0.62);

  text-decoration: none;

  font-size: 0.88rem;

  transition:
    0.3s ease;

}


.footer-column li a:hover {

  color:
    rgb(252,203,107);

  padding-left: 5px;

}


.footer-contact-item {

  display: flex;

  align-items: flex-start;

  gap: 13px;

  margin-bottom: 20px;

}


.footer-contact-item i {

  color:
    rgb(252,203,107);

  margin-top: 3px;

}


.footer-contact-item span,
.footer-contact-item a {

  color:
    rgba(255,255,255,0.65);

  font-size: 0.88rem;

  line-height: 1.7;

  text-decoration: none;

}


.footer-contact-item a:hover {

  color:
    rgb(252,203,107);

}


.footer-bottom {

  min-height: 75px;

  border-top:
    1px solid
    rgba(255,255,255,0.08);

  display: flex;

  align-items: center;

  justify-content: space-between;

}


.footer-bottom p {

  margin: 0;

  color:
    rgba(255,255,255,0.45);

  font-size: 0.78rem;

}


.footer-bottom span {

  color:
    rgb(252,203,107);

  font-weight: 600;

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .top-info-center {

    display: none;

  }


  .top-info-left {

    gap: 1rem;

  }


  .top-info-right {

    gap: 1rem;

  }


  .footer-main {

    grid-template-columns:
      1.5fr 1fr 1fr;

    gap: 45px;

  }


  .footer-about {

    grid-column: span 3;

    max-width: 550px;

  }


  .branches-grid {

    grid-template-columns: 1fr;

    max-width: 750px;

    margin: auto;

  }

}


@media (max-width: 767px) {

  .top-info-bar {

    display: none;

  }


  .navbar {

    top: 0;

  }


  .branches-hero {

    padding-top: 140px;

    min-height: 60vh;

  }


  .branches-intro {

    padding:
      70px 0 50px;

  }


  .branches-section {

    padding:
      70px 0 80px;

  }


  .branches-cta {

    padding: 65px 0;

  }


  .branches-cta-content {

    flex-direction: column;

    align-items: flex-start;

  }


  .footer-main {

    grid-template-columns: 1fr 1fr;

    gap: 40px 30px;

  }


  .footer-about {

    grid-column: span 2;

  }


  .footer-bottom {

    flex-direction: column;

    justify-content: center;

    text-align: center;

    padding: 20px 0;

    gap: 8px;

  }

}


@media (max-width: 450px) {

  .footer-main {

    grid-template-columns: 1fr;

  }


  .footer-about {

    grid-column: span 1;

  }


  .branch-content {

    padding: 25px 20px;

  }


  .branch-image {

    height: 220px;

  }

}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 1075;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(252, 203, 107, 0.45);
  border-radius: 50%;
  background: #0b1c39;
  color: rgb(252, 203, 107);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #071525;
  color: #ffffff;
}

.scroll-top.is-waiting {
  transform: scale(0.92);
}

.scroll-top i {
  font-size: 1.25rem;
}