/* =====================================
   EXTRA LARGE
===================================== */

@media (max-width: 1400px) {
  .hero-inner h1 {
    font-size: 70px;
  }
}

/* =====================================
   LARGE DEVICES
===================================== */

@media (max-width: 1200px) {
  .hero-inner h1 {
    font-size: 62px;
  }

  .navbar-nav {
    gap: 10px;
  }

  .nav-link {
    font-size: 14px;
  }
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {
  /* Header */

  .main-header .navbar {
    min-height: 80px;
  }

  .navbar-brand img {
    height: 55px;
  }

  .navbar-collapse {
    background: #fff;

    margin-top: 15px;

    padding: 20px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }

  .nav-link {
    padding: 12px 0 !important;
  }

  .search-icon {
    display: none;
  }

  /* Hero */

  .hero-section {
    height: 700px;
  }

  .hero-inner h1 {
    font-size: 52px;
  }

  .hero-buttons {
    gap: 15px;
  }
}

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

@media (max-width: 768px) {
  .top-bar {
    padding: 12px 0;
  }

  .contact-info {
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
  }

  .social-links {
    justify-content: center;

    margin-top: 10px;
  }

  .hero-section {
    height: 100vh;

    min-height: 700px;
  }

  .hero-content {
    padding-top: 50px;
  }

  .hero-inner {
    text-align: left;
  }

  .hero-inner h1 {
    font-size: 42px;

    line-height: 1.2;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .hero-buttons .btn {
    width: 180px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

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

@media (max-width: 576px) {
  .container {
    padding-left: 18px;

    padding-right: 18px;
  }

  .top-bar {
    text-align: center;
  }

  .contact-info {
    flex-direction: column;

    gap: 5px;
  }

  .contact-info a {
    font-size: 13px;
  }

  .social-links {
    margin-top: 5px;
  }

  .navbar-brand img {
    height: 48px;
  }

  .hero-section {
    min-height: 620px;
  }

  .hero-inner h1 {
    font-size: 34px;

    line-height: 1.25;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: flex-start;
  }

  .hero-buttons .btn {
    width: 170px;

    height: 52px;

    font-size: 15px;
    margin-bottom: 10px;
  }

  .swiper-pagination {
    bottom: 20px !important;
  }
}

/* =====================================
   SCROLL TOP BUTTON
===================================== */

.scroll-top-btn {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 50px;

  height: 50px;

  border: none;

  /* border-radius: 1rem; */

  background: #649913;

  color: #fff;

  font-size: 18px;

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  transition: all 0.3s ease;

  z-index: 9999;
}

.scroll-top-btn.show {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #0958a0;
}
