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

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

html {
  scroll-behavior: smooth;

  visibility: hidden;

  opacity: 0;

  transition: opacity .35s ease;
}

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  background: #f5f7fb;
  color: #0f172a;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===================================================== */
/* LAYOUT */
/* ===================================================== */

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

section {
  padding: 110px 0;
}

/* ===================================================== */
/* HEADER */
/* ===================================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: .4s ease;

  background:
    linear-gradient(90deg,
      rgba(0, 17, 43, .95),
      rgba(5, 31, 63, .92));

  backdrop-filter: blur(10px);

  border-bottom:
    1px solid rgba(255, 255, 255, .06);
}

header.scrolled {
  background:
    rgba(0, 17, 43, .98);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .18);
}

.logo img {
  width: 220px;
  height: auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
}


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

.top-bar {

  width: 100%;

  background:
    linear-gradient(90deg,
      #071a2f,
      #0b2545);

  border-bottom:
    1px solid rgba(255, 255, 255, .06);

}

.top-bar-container {

  width: 90%;
  max-width: 1280px;

  margin: auto;

  min-height: 42px;

  display: flex;

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

  gap: 40px;

}

.top-item {

  display: flex;

  align-items: center;

  gap: 10px;

  color: white;

  font-size: 13px;

  font-weight: 600;

}

.top-item i {

  color: #38BDF8;

  font-size: 14px;

}

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

.navbar {

  min-height: 88px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

}



/* ===================================================== */
/* HEADER FIX */
/* ===================================================== */

header {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 99999;

  background:
    rgba(7, 26, 47, .94);

  backdrop-filter: blur(12px);

  transition: .35s ease;

}

header.scrolled {

  background:
    rgba(7, 26, 47, .98);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .18);

}

/* ===================================================== */
/* MENU */
/* ===================================================== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  position: relative;
  color: white;
  font-size: 16px;
  font-weight: 600;
  transition: .3s;
}

.nav-links a:hover {
  color: #38BDF8;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: #38BDF8;
  transition: .3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===================================================== */
/* MOBILE MENU */
/* ===================================================== */

.menu-btn {
  width: 52px;
  height: 52px;
  position: relative;
  display: none;
  cursor: pointer;
  z-index: 10001;
}

.menu-btn span {
  position: absolute;
  width: 34px;
  height: 3px;
  background: white;
  border-radius: 50px;
  left: 9px;
  transition: .4s;
}

.menu-btn span:nth-child(1) {
  top: 16px;
}

.menu-btn span:nth-child(2) {
  top: 25px;
}

.menu-btn span:nth-child(3) {
  top: 34px;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 25px;
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 25px;
}

/* ===================================================== */
/* BUTTONS */
/* ===================================================== */

.btn {
  display: inline-block;
  padding: 17px 40px;
  border-radius: 14px;
  font-weight: 700;
  transition: .3s;
}

.btn-primary {
  background:
    linear-gradient(135deg,
      #1E90FF,
      #38BDF8);

  color: white;

  box-shadow:
    0 15px 35px rgba(30, 144, 255, .35);
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, .6);
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #00112b;
}

/* ===================================================== */
/* TITLES */
/* ===================================================== */

.mini-title {
  display: inline-block;
  color: #1E90FF;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  display: block;
  color: #1E90FF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: clamp(42px, 7vw, 90px);
  line-height: 1.05;
  font-weight: 800;
  color: #071A2F;
  margin-bottom: 24px;
}

.section-title p {
  max-width: 900px;
  margin: auto;
  color: #64748B;
  font-size: 22px;
  line-height: 1.8;
}

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

.cta {
  background:
    linear-gradient(135deg,
      #00112b,
      #0a2748);

  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-size: 58px;
  margin-bottom: 20px;
}

.cta p {
  color: #dbe8f5;
  margin-bottom: 35px;
  line-height: 1.8;
}

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

footer {
  background: #04111f;
  color: white;
  padding: 90px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-bottom {
  border-top:
    1px solid rgba(255, 255, 255, .08);

  padding-top: 25px;

  text-align: center;

  color: #94a3b8;
}

/* ===================================================== */
/* WHATSAPP */
/* ===================================================== */

/* ===================================================== */
/* WHATSAPP */
/* ===================================================== */

.whatsapp {
  position: fixed;

  right: 25px;
  bottom: 25px;

  min-height: 72px;

  padding: 0 28px;

  border-radius: 100px;

  background:
    linear-gradient(135deg,
      #25D366,
      #1ebe5d);

  display: flex;

  align-items: center;

  gap: 14px;

  color: white;

  font-weight: 700;

  z-index: 9999;

  box-shadow:
    0 15px 35px rgba(0, 0, 0, .25);

  transition: .3s;
}

.whatsapp:hover {
  transform: translateY(-5px);
}

/* CONTENT */

.whatsapp-content {

  display: flex;

  flex-direction: column;

  line-height: 1.2;

}

.whatsapp-content strong {

  font-size: 14px;

  color: white;

}

.whatsapp-content small {

  font-size: 11px;

  color: rgba(255, 255, 255, .85);

}

/* ICON */

.whatsapp i {

  font-size: 34px;

  color: white;

  flex-shrink: 0;

}

/* ===================================================== */
/* MOBILE */
/* ===================================================== */

@media(max-width:768px) {


  .whatsapp {

    width: 64px;
    height: 64px;

    min-height: 64px;

    padding: 0;

    border-radius: 50%;

    justify-content: center;

    right: 18px;
    bottom: 18px;

  }

  .whatsapp-content {
    display: none;
  }

  .whatsapp i {
    font-size: 34px;
  }

  /* MOBILE LOGO FIX */

  .logo img {

    width: 40px !important;

    max-width: 40px !important;

    height: auto !important;

  }

}

/* ===================================================== */
/* PAGE LOADER */
/* ===================================================== */

.page-loader {
  position: fixed;
  inset: 0;
  background: #071a2f;

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

  z-index: 999999;
}

/* ===================================================== */
/* SCROLL PROGRESS */
/* ===================================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #2d8cff;
  z-index: 999999;
}

/* ===================================================== */
/* ANIMATIONS */
/* ===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(80px);

  transition:
    opacity 1s ease,
    transform 1s ease;
}

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

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

@media(max-width:992px) {

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width:768px) {

  section {
    padding: 80px 0;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;

    width: 100%;
    height: 100vh;

    background:
      rgba(7, 26, 47, .97);

    backdrop-filter: blur(16px);

    flex-direction: column;

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

    gap: 40px;

    transition: .45s ease;

    z-index: 9999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 32px;
    font-weight: 800;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2,
  .cta h2 {
    font-size: 34px;
  }

  .btn {

    width: auto;

    min-width: 190px;

    padding: 0 26px;

  }

  .about-info .btn,
  .about-content .btn,
  .hero-content .btn {

    width: auto;

  }

}

/* ===================================================== */
/* PAGE LOADER */
/* ===================================================== */

.page-loader {

  position: fixed;

  inset: 0;

  background:
    linear-gradient(135deg,
      #071a2f,
      #0b2545);

  display: flex;

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

  z-index: 999999;

  transition: .5s ease;

}

.page-loader.hidden {

  opacity: 0;
  visibility: hidden;

}

/* CONTENT */

.loader-content {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 30px;

}

/* LOGO */

.loader-content img {

  width: 240px;

  height: auto;

  object-fit: contain;

}

/* LINE */

.loader-line {

  width: 220px;
  height: 5px;

  border-radius: 100px;

  overflow: hidden;

  position: relative;

  background:
    rgba(255, 255, 255, .08);

}

.loader-line::after {

  content: "";

  position: absolute;

  left: -40%;

  top: 0;

  width: 40%;
  height: 100%;

  border-radius: 100px;

  background:
    linear-gradient(90deg,
      #1E90FF,
      #38BDF8);

  animation: loaderMove 1.2s infinite linear;

}

/* ANIMATION */

@keyframes loaderMove {

  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }

}

/* ===================================================== */
/* MOBILE OPTIMIZATION */
/* ===================================================== */

@media(max-width:768px) {

  /* BODY */

  body {
    overflow-x: hidden;
  }

  /* CONTAINER */

  .container {
    width: 92%;
  }

  /* HEADER */

  .top-bar {
    display: none;
  }

  header {
    backdrop-filter: blur(18px);
  }

  .navbar {
    min-height: 72px;
  }

  /* LOGO */

  .logo img {
    width: 68px !important;
    max-width: 68px !important;
  }

  /* MENU */

  .nav-links {
    gap: 28px;
    padding: 120px 30px;
  }

  .nav-links a {
    font-size: 24px;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
  }

  .menu-btn span {
    width: 28px;
    left: 8px;
  }

  /* SECTIONS */

  section {
    padding: 75px 0;
  }

  /* TITLES */

  .section-title {
    margin-bottom: 45px;
  }

  .section-title span {
    font-size: 13px;
  }

  .section-title h2 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .section-title p {
    font-size: 15px;
    line-height: 1.8;
  }

  /* BUTTONS */

  .btn {
    width: 100%;
    min-height: 56px;
    padding: 0 22px;
    font-size: 14px;
  }

  /* FOOTER */

  footer {
    padding: 70px 0 25px;
  }

  .footer-grid {
    gap: 30px;
  }

  /* CTA */

  .cta h2 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .cta p {
    font-size: 15px;
  }

  /* WHATSAPP */

  .whatsapp {

    width: 62px;
    height: 62px;

    min-height: 62px;

    right: 16px;
    bottom: 16px;

    padding: 0;

    border-radius: 50%;
  }

  .whatsapp-content {
    display: none;
  }

  .whatsapp i {
    font-size: 30px;
  }

  /* LOADER */

  .loader-content img {
    width: 160px;
  }

  .loader-line {
    width: 170px;
  }

}

/* ===================================================== */
/* BUTTON MOBILE FIX */
/* ===================================================== */

@media(max-width:768px) {

  .btn {

    width: auto !important;

    display: inline-flex !important;

    align-items: center;

    justify-content: center;

    align-self: flex-start !important;

    min-width: 190px;

    padding: 0 28px;

  }

}

/* ======================================== */
/* FORM BUTTON LOADING */
/* ======================================== */

#submitBtn {

  position: relative;

  min-height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  overflow: hidden;

}

#submitBtn .btn-loading {

  display: none;

  align-items: center;

  justify-content: center;

  gap: 10px;

}

#submitBtn.loading .btn-text {

  display: none;

}

#submitBtn.loading .btn-loading {

  display: flex;

}

/* ======================================== */
/* SUCCESS TOAST */
/* ======================================== */

.success-toast {

  position: fixed;

  right: 30px;

  bottom: 30px;

  background: #00152f;

  color: #ffffff;

  padding: 18px 24px;

  border-radius: 16px;

  display: flex;

  align-items: center;

  gap: 14px;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, .2);

  z-index: 99999;

  opacity: 0;

  visibility: hidden;

  transform: translateY(30px);

  transition: .4s ease;

}

.success-toast.active {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}

.success-toast i {

  color: #00bfff;

  font-size: 22px;

}

/* ======================================== */
/* PAGE LOADER */
/* ======================================== */

.page-loader {

  position: fixed;

  inset: 0;

  background: #00152f;

  z-index: 999999;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: .5s ease;

}

.page-loader.hidden {

  opacity: 0;

  visibility: hidden;

}

.loader-content {

  text-align: center;

}

.loader-content img {

  width: 180px;

  margin-bottom: 25px;

}

.loader-line {

  width: 220px;

  height: 4px;

  border-radius: 999px;

  background:
    rgba(255, 255, 255, .1);

  overflow: hidden;

  position: relative;

}

.loader-line::before {

  content: "";

  position: absolute;

  top: 0;
  left: -50%;

  width: 50%;

  height: 100%;

  background: #00bfff;

  animation: loaderAnim 1.2s linear infinite;

}

@keyframes loaderAnim {

  100% {

    left: 100%;

  }

}

/* ======================================== */
/* SCROLL PROGRESS */
/* ======================================== */

.scroll-progress {

  position: fixed;

  top: 0;
  left: 0;

  width: 0%;

  height: 4px;

  background: #00bfff;

  z-index: 999999;

}

/* ======================================== */
/* MOBILE */
/* ======================================== */

@media(max-width:768px) {

  .success-toast {

    right: 15px;

    left: 15px;

    bottom: 20px;

  }

}

.dropdown {

  position: relative;

}

.dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  min-width: 280px;

  background: #ffffff;

  border-radius: 15px;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, .15);

  opacity: 0;

  visibility: hidden;

  transform: translateY(10px);

  transition: .3s;

  z-index: 9999;

  padding: 10px 0;

}

.dropdown:hover .dropdown-menu {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}

.dropdown-menu li {

  list-style: none;

}

.dropdown-menu a {

  display: block;

  padding: 14px 20px;

  color: #001f4d;

  text-decoration: none;

  font-weight: 600;

}

.dropdown-menu a:hover {

  background: #f5f8ff;

  color: #1f6bff;

}

/* ===================================== */
/* SEO CONTENT */
/* ===================================== */

.seo-content {

  padding: 80px 0;

  background: #ffffff;

}

.seo-content .container {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;

}

.seo-content h2 {

  font-size: 2.4rem;

  font-weight: 800;

  color: #0a2342;

  margin-bottom: 25px;

  text-align: center;

}

.seo-content p {

  font-size: 1.1rem;

  line-height: 1.9;

  color: #555;

  margin-bottom: 20px;

  text-align: justify;

}

@media (max-width: 768px) {

  .seo-content h2 {

    font-size: 1.8rem;

  }

  .seo-content p {

    font-size: 1rem;

  }

}

.seo-list {

  margin-top: 25px;

  padding-left: 25px;

}

.seo-list li {

  margin-bottom: 10px;

  font-size: 1.05rem;

  color: #333;

}

.seo-links{
    padding:60px 20px;
    background:#f8f9fb;
}

.seo-links h2{
    margin-bottom:20px;
}

.seo-links ul{
    margin-top:20px;
    padding-left:20px;
}

.seo-links li{
    margin-bottom:10px;
}

.seo-links a{
    color:#0056b3;
    text-decoration:none;
    font-weight:600;
}

.seo-links a:hover{
    text-decoration:underline;
}