html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Outfit", sans-serif;
  background: #f5f6fa;
  padding-top: 80px;
}
/* NAVBAR LOGO */
.navbar-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar-logo {
    height: 50px;
  }
}

.hero-section {
  position: relative;

  background: url("https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?w=1800&q=85")
    center/cover no-repeat;

  padding: 40px 0;
  color: #fff;

  overflow: hidden;
}

/* OVERLAY */
.hero-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    110deg,
    rgba(11, 31, 58, 0.92) 0%,
    rgba(11, 31, 58, 0.75) 55%,
    rgba(8, 145, 178, 0.3) 100%
  );

  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff9933, #f97316);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #0c7a99, #0891b2);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.35);
  position: relative;
  overflow: hidden;
}
.nav-cta {
  background: #25d366;
  color: #ffffff;
  padding: 9px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, #ff9933, #ffd166);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.btn-green {
  background: #16c15f;
  color: #fff;
  border: none;
}

.btn-green:hover {
  background: #11a34f;
  color: #fff;
}

/* FORM */
.franchise-form {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  color: #111827;
}

.custom-input {
  height: 38px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding-left: 18px;
  font-size: 14px;
  box-shadow: none !important;
}

.custom-input:focus {
  border-color: #2563eb;
}

.form-label {
  font-size: 14px;
  margin-bottom: 5px;
}

/* MOBILE */
@media (max-width: 991px) {
  .section-title {
    font-size: 26px;
  }

  .franchise-form {
    padding: 30px 22px;
  }
  .hero-tag {
    font-size: 10px;
  }
}

.card-box {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.gradient-box {
  background: linear-gradient(90deg, #1740ff 0%, #5a4ff0 50%);
  color: #fff;
  padding: 60px 0;
}
.gradient-box-2 {
  background: linear-gradient(90deg, #1740ff, #a300ff);
  color: #fff;
  padding: 60px 0;
}

.blue-section {
  background: #193baf;
  color: #fff;
  padding: 70px 0;
}

.feature-box {
  border-radius: 14px;
  color: #fff;
  padding: 35px 20px;
  text-align: center;
  font-weight: 600;
}

.shadow-sm {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
}

.btn-green {
  background: #22c55e;
  color: #fff;
  border: none;
}

.btn-green:hover {
  background: #16a34a;
  color: #fff;
}

.form-control {
  height: 38px;
}

textarea.form-control {
  height: auto;
}

.partner-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  height: 100%;
}

.partner-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}
.partner-card:hover .partner-content {
  bottom: 0;
}
.partner-card:hover .partner-img {
  transform: scale(1.08);
}
.partner-content {
  position: absolute;
  left: 0;
  bottom: -100%;

  width: 100%;
  height: 100%;

  background: rgba(3, 27, 71, 0.861);
  color: #fff;

  padding: 25px;

  transition: 0.5s ease;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner-content h4 {
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
}

.partner-content p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75) !important;
}

.partner-content img {
  width: 30px;
  height: 30px;
}

/* MOBILE */
@media (max-width: 991px) {
  .partner-img {
    height: 240px;
  }

  .partner-content {
    padding: 30px 25px;
  }

  .partner-content h3 {
    font-size: 30px;
  }

  .partner-content p {
    font-size: 18px;
  }
  .partner-content img {
    width: 20px;
    height: 20px;
  }
  .partner-icon {
    width: 75px;
    height: 75px;
    font-size: 32px;
    border-radius: 22px;
  }
}

.journey-section {
  background: #f8fafc;
}

.journey-subtitle {
  max-width: 760px;
  font-size: 20px;
  color: #5b6475;
  line-height: 1.7;
}

.journey-card {
  position: relative;

  background: #eef4ff;
  border: 2px solid #bcd2ff;

  border-radius: 20px;

  padding: 20px 20px;

  height: 100%;
}

.journey-number {
  position: absolute;
  top: -18px;
  left: -18px;

  width: 42px;
  height: 42px;

  background: #2563ff;
  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 20px;

  box-shadow: 0 8px 20px rgba(37, 99, 255, 0.25);
}

.journey-icon {
  width: 30px;
  height: 30px;

  background: #fff;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;
}

.journey-icon i {
  font-size: 18px;
  color: #2563ff;
}

.journey-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111827;
}

.journey-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #5b6475;
  margin-bottom: 0;
}

.journey-note {
  background: #eef4ff;
  border-left: 5px solid #2563ff;
  padding: 22px 26px;
  border-radius: 14px;
  font-size: 18px;
  color: #4b5563;
}

/* MOBILE */
@media (max-width: 991px) {
  .journey-subtitle {
    font-size: 17px;
  }

  .journey-card {
    padding: 28px 22px;
  }

  .journey-card h4 {
    font-size: 18px;
  }

  .journey-card p {
    font-size: 15px;
  }
}

.expansion-section {
  background: linear-gradient(135deg, #312e81, #1d4ed8);
}

.expansion-subtitle {
  max-width: 850px;
  font-size: 18px;
  line-height: 1.5;
  color: #dbe4ff;
}

/* COMMON BOX */
.expansion-box {
  background: rgba(255, 255, 255, 0.1);

  border-radius: 24px;

  padding: 35px;
}

/* CITY CARD */
.city-card {
  background: rgba(255, 255, 255, 0.14);

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 20px;

  padding: 28px;

  color: #fff;
}

/* WHY ITEMS */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  margin-bottom: 28px;

  color: #fff;

  font-size: 18px;
  line-height: 1.7;
}

.why-item i {
  width: 28px;
  height: 28px;

  background: #ffd400;
  color: #000;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;

  flex-shrink: 0;

  margin-top: 4px;
}

/* ALERT */
.alert-box {
  background: #ffa500;

  border-radius: 24px;

  padding: 38px;

  color: #000;
  box-shadow: 0 4px 10px rgb(255 255 255 / 67%);
}

.alert-box p {
  font-size: 18px;
  line-height: 1.8;
}

/* MOBILE */
@media (max-width: 991px) {
  .expansion-section h2 {
    font-size: 38px;
  }

  .expansion-subtitle {
    font-size: 17px;
  }

  .expansion-box {
    padding: 25px;
  }

  .city-card h2 {
    font-size: 32px;
  }
}

.investment-card {
  background: #fff;
  border-radius: 22px;
  padding: 50px 40px;
}

/* BADGE */
.investment-badge {
  background: #dfe9ff;
  color: #2346a0;

  padding: 14px 24px;

  border-radius: 40px;

  font-weight: 700;
  font-size: 28px;
}

/* FEATURE BOX */
.feature-card {
  border-radius: 18px;
  padding: 35px 25px;
  height: 100%;
}

.blue-bg {
  background: #edf4ff;
}

.green-bg {
  background: #eef9f1;
}

.purple-bg {
  background: #f6efff;
}

.text-purple {
  color: #9333ea;
}

/* CTA */
.financial-box {
  background: linear-gradient(90deg, #1d4ed8, #4f46e5);

  border-radius: 22px;

  padding: 50px 30px;
}

/* MOBILE */
@media (max-width: 991px) {
  .investment-badge {
    font-size: 20px;
  }

  .investment-card {
    padding: 35px 25px;
  }
}

.gallery-card {
  position: relative;
  height: 230px;
  border-radius: 20px;
  overflow: hidden;

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* DARK OVERLAY */
.gallery-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* CONTENT */
.gallery-card .content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.gallery-card h3 {
  font-size: 24px;
}

.gallery-card p {
  font-size: 20px;
  opacity: 0.9;
}

/* HOVER EFFECT */
.gallery-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 991px) {
  .gallery-card {
    height: 200px;
  }
}
/* .journey-section {
  background: #031b47;
  position: relative;
  overflow: hidden;
} */

/* TIMELINE */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* CENTER LINE */
.timeline::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 4px;
  height: 100%;

  background: linear-gradient(to bottom, #ff9b2f, #00d4ff, #00ff88);

  transform: translateX(-50%);
}

/* ITEM */
.timeline-item {
  position: relative;
  width: 50%;
}

/* LEFT */
.timeline-item.left {
  padding-right: 80px;
  margin-bottom: 10px;
}

/* RIGHT */
.timeline-item.right {
  margin-left: 50%;
  padding-left: 80px;
  margin-bottom: 10px;
}

/* CARD */
.timeline-content {
  background: rgba(3, 27, 71, 0.861);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 20px;
  color: #fff;
  backdrop-filter: blur(10px);
}

/* NUMBER */
.timeline-number {
  position: absolute;

  top: 50%;
  right: -36px;

  width: 72px;
  height: 72px;

  background: #ff8a24;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 32px;
  font-weight: 700;

  transform: translateY(-50%);

  z-index: 2;

  border: 8px solid rgba(255, 255, 255, 0.08);
}

/* RIGHT NUMBER */
.timeline-item.right .timeline-number {
  left: -36px;
}

/* MOBILE */
@media (max-width: 991px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 90px !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    text-align: left;
  }

  .timeline-number {
    left: -6px !important;
    right: auto;
  }
}
/* POPUP BUTTON */
.popup-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;

  border: none;

  background: linear-gradient(135deg, #ff9933, #f97316);
  color: #fff;

  padding: 14px 22px;

  border-radius: 50px;

  font-weight: 600;

  z-index: 9999;

  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);

  display: flex;
  align-items: center;
  gap: 10px;
}

/* LEFT SIDE */
.popup-left {
  background:
    linear-gradient(135deg, rgba(3, 27, 71, 0.95), rgba(47, 84, 235, 0.92)),
    url("images/image.png") center/cover no-repeat;

  min-height: 100%;
}

/* MODAL */
.modal-content {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}
/* STICKY WHATSAPP */
.sticky-wa {
  position: fixed;

  left: 30px;
  bottom: 30px;

  width: 65px;
  height: 65px;

  background: #25d366;
  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;

  text-decoration: none;

  z-index: 9999;

  box-shadow: 0 8px 25px rgba(41, 249, 22, 0.5);

  transition: 0.3s ease;
}

/* HOVER */
.sticky-wa:hover {
  transform: scale(1.1);
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .sticky-wa {
    width: 58px;
    height: 58px;

    font-size: 30px;

    left: 15px;
    bottom: 85px;
  }
}
