/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(238, 100%, 70%);
  --first-gradient: linear-gradient(90deg,
                  hsl(243, 96%, 54%),
                  hsl(296, 78%, 53%));
  --second-gradient: linear-gradient(90deg,
                  hsl(192, 94%, 49%),
                  hsl(224, 98%, 51%));
  --third-gradient: linear-gradient(90deg,
                  hsl(25, 96%, 55%),
                  hsl(34, 93%, 53%));
  --white-color: hsl(0, 0%, 100%);
  --text-color: hsl(0, 0%, 75%);
  --text-color-light: hsl(0, 0%, 55%);
  --border-color: hsl(0, 0%, 45%);
  --body-color: hsl(238, 100%, 12%);
  --body-color-light: hsl(238, 60%, 20%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --second-font: "Audiowide", sans-serif;
  --biggest-font-size: 2.3rem;
  --big-font-size: 1.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 5.5rem;
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
button {
  border: none;
  outline: none;
}

h1, h2, h3, h4 {
  color: var(--white-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container, .container1 {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  font-size: var(--big-font-size);
  font-family: var(--second-font);
  font-weight: initial;
  margin-bottom: 2rem;
  text-align: center;
}

.section__title span {
  display: block;
  background: var(--third-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: var(--z-fixed);
  }
  
  .nav {
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
  }
  
  .nav__logo img {
    width: 1.5rem;
  }
  
  .nav__toggle, 
  .nav__close {
    display: inline-flex;
    font-size: 1.5rem;
    color: var(--white-color);
    cursor: pointer;
  }
  
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: hsla(238, 100%, 6%, .5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 80%;
    height: 100%;
    padding: 4rem 2.5rem 3.5rem;
    transition: right .4s;
  }
  
  .nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
  }

  @keyframes blink {
    0% { color: white; }
    50% { color: yellow; }
    100% { color: white; }
  }
  
  .nav__list li:nth-child(4) .nav__link {
    animation: blink 1s infinite;
  }
  
  .nav__link {
    color: var(--white-color);
    font-size: var(--h2-font-size);
    font-family: var(--second-font);
    transition: color .4s;
  }
  
  .nav__link:hover {
    color: var(--first-color);
  }
  
  .nav__img, 
  .nav__close {
    position: absolute;
  }
  
  .nav__close {
    top: 1rem;
    right: 1.5rem;
  }
  
  .nav__img {
    width: 200px;
    right: 0rem;
    bottom: 0rem;
    z-index: -1;
  }
/* Show menu */
.show-menu{
  right: 0;
}

/* Add blur header */
.blur-header::after{
  content: '';
  position: absolute;
  width: 1000%;
  height: 100%;
  background-color: hsla(238, 100%, 6%, .5);
  backdrop-filter: blur(16px);
  --webkit-backdrop-filter:blur(16px);
  top:0;
  left: 0;
  z-index: -1;
}

/* Active link */


/*=============== HOME ===============*/
.home{
  position: relative;
}

.home__bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home__container{
  position: relative;
  row-gap: 3rem;
  padding-top: 1rem;
}

.home__data{
  position: relative;
  text-align: center;
}

.home__title span{
  display: block;
}

.home__title{
  font-size: var(--biggest-font-size);
  font-family: var(--second-font);
  font-weight: initial;
  margin-bottom: 1.5rem;
}

.home__content{
  font-size: var(--biggest-font-size);
  font-family: var(--second-font);
  font-weight: initial;
  margin-bottom: 1.5rem;
}

.home__title span:nth-child(1){
  background: var(--third-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

:root {
  --clr-1: #e635e7;
  --clr-2: #e3501e;
  --clr-3: #31ff6f;
  --clr-4: #ffc831;
  --clr-5: #ffffff;
}

.home__title span:nth-child(3) {
  font-size: var(--biggest-font-size);
  font-family: var(--second-font);
  font-weight: initial;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  
  /* Aurora sebagai teks */
  background: linear-gradient(90deg, var(--clr-1), var(--clr-2), var(--clr-3), var(--clr-4), var(--clr-5));
  background-size: 300% 300%;
  -webkit-background-clip:text;
  color: transparent;
  animation: auroraMove 4s infinite alternate ease-in-out;
}

/* Animasi gradasi bergerak dalam teks */
@keyframes auroraMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.home__ovni{
  width: 90px;
  position: absolute;
  top: 2.5rem;
  right: 0rem;
}

.home__img{
  width: 300px;
  justify-self: center;
}

.Banner__homeimg {
	top: -20px
}

.Banner__homeimg .Line__homeimg {
	position: absolute;
	top: 57%;
	left: 50%;
	display: inline-block;
	height: 600px;
	width: 600px;
}

.Banner__homeimg {
	position: relative
}

.Banner__homeimg .Line__homeimg::before {
	animation-delay: 1s;
}

.Banner__homeimg .Line__homeimg::after,
.Banner__homeimg .Line__homeimg::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	z-index: -1;
	height: 100%;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.1);
	background-color: rgba(255, 255, 255, 0.02);
	animation: borderanimate 4s linear infinite;
	animation-delay: 0s;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

@-webkit-keyframes borderanimate {
	0% {
		transform: translate(-50%, -50%) scale(0.5);
		opacity: 1;
		border-width: 3px;
	}

	40% {
		opacity: 0.5;
		border-width: 2px;
	}

	65% {
		border-width: 1px;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
		border-width: 1px;
	}
}

@-moz-keyframes borderanimate {
	0% {
		transform: translate(-50%, -50%) scale(0.5);
		opacity: 1;
		border-width: 3px;
	}

	40% {
		opacity: 0.5;
		border-width: 2px;
	}

	65% {
		border-width: 1px;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
		border-width: 1px;
	}
}

@-ms-keyframes borderanimate {
	0% {
		transform: translate(-50%, -50%) scale(0.5);
		opacity: 1;
		border-width: 3px;
	}

	40% {
		opacity: 0.5;
		border-width: 2px;
	}

	65% {
		border-width: 1px;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
		border-width: 1px;
	}
}

@keyframes borderanimate {
	0% {
		transform: translate(-50%, -50%) scale(0.5);
		opacity: 1;
		border-width: 3px;
	}

	40% {
		opacity: 0.5;
		border-width: 2px;
	}

	65% {
		border-width: 1px;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
		border-width: 1px;
	}
}

/*=============== BUTTON ===============*/
.button{
  display: inline-flex;
  justify-content: center;
  background: var(--first-gradient);
  color:var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1rem 2rem;
  transition: box-shadow .4s;
}

.button:hover{
  box-shadow: 0 8px 32px hsla(243, 100%, 54%, .4);
}

.button__yellow{
  background: var(--third-gradient);
}

.button__yellow:hover{
  box-shadow: 0 8px 32px hsla(25, 96%, 55%, .4);
}

/*=============== LIST OF SERVICES ===============*/
.services{
  position: relative;
}

.services__lines{
  max-width: initial;
  width: 550px;
  position: absolute;
  top: 4rem;
  left: 0;
}

.services__container{
  position: relative;
  background-color: hsla(238, 50%, 20%, .4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem 2rem 5rem;
}

.services__swiper{
  padding-top: 3rem;
}

/* 🟢 Properti untuk animasi sudut */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* 🌀 Animasi efek gradasi berputar */
@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

/* 🌟 Kode Asli Anda (Tetap Sama) */
.services__card {
  position: relative;
  border: 2px solid transparent; /* 🔥 Gunakan border transparan agar tidak mengganggu */
  height: auto;
  background: linear-gradient(hsla(243, 98%, 51%, .3), transparent 50%);
  padding: 9.25rem 1rem 3rem;
  text-align: center;
  border-radius: 10px; /* 🔥 Agar sudut tetap melengkung */
}

/* ✨ Efek gradasi berputar hanya di border */
.services__card::before {
  content: "";
  position: absolute;
  inset: -3px; /* 🔥 Pastikan efek tidak terpotong */
  border-radius: inherit;
  padding: 5px;
  background: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  animation: spin 3s linear infinite;
}

.services__img{
  width: 180px;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(-90deg);
  transition: transform .9s;
}

.services__title{
  font-size: var(--first-color);
}

.services__info{
  display: block;
  background: var(--third-gradient);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
}

.services__description{
  font-size: var(--small-font-size);
}

/* Swiper class */
.swiper-pagination-bullets.swiper-pagination-horizontal{
  buttom: 2rem;
}

.swiper-pagination-bullet{
  width: 1rem;
  height: 1rem;
  opacity: 1;
  border: 2px solid var(--border-color);
  background: transparent;
}

.swiper-pagination-bullet-active{
  border: 2px solid transparent;
  background: linear-gradient(var(--body-color), var(--body-color)) padding-box,
              linear-gradient(135deg, hsl(25, 96%, 55%) 0%, hsl(34, 93%, 53%)100%)border-box;
  position: relative;
}

.swiper-pagination-bullet-active::after{
  content: '';
  position: absolute;
  width: .5rem;
  height: .5rem;
  background: var(--third-gradient);
  border-radius: 50%;
  inset: 0;
  margin: auto;
}


/* Swiper animation */
.swiper-slide-active .services__img{
  transform: rotate(0);
}

/*=============== EXPLORE ===============*/

*,::after,::before {
  box-sizing: border-box;
}


.brandSlider {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 500px;
}

.brandSlider .bShadow {
	overflow: hidden;
	position: relative;
}

@keyframes translateinfinite {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

#infinite .bShadow {
	box-shadow: 0 3px 10px -3px rgba(13, 17, 23, 0.3);
	background: hsl(238, 100%, 12%);
}

#infinite .bShadow::before,
#infinite .bShadow::after {
	position: absolute;
	z-index: 9;
	width: 100%;
	height: 100px;
}

#infinite .bShadow::before {
	bottom: 0;
	left: 0;
	background: linear-gradient(to top, rgba(13, 17, 23, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

#infinite .bShadow::after {
	top: 0;
	right: 0;
	background: linear-gradient(to bottom, rgba(13, 17, 23, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

#infinite .scrollContent {
  animation: translateinfinite 25s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

#infinite {
  contain: strict;
}

.productBox {
	background: hsla(238, 50%, 20%, .4);
	border-radius: 10px;
	height: 60px;
	padding: 0 20px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.productBox .pbLeft {
	color: hsl(0, 0%, 100%);
}

.productBox .pbLeft i {
	width: 35px;
	text-align: center;
}

.productBox .pbRight {
	background: hsl(238, 100%, 12%);
	border-radius: 5px;
	padding: 3px 10px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
  margin-left: 5px;
}


.explore__section{
 animation: anim-rotate 5s linear infinite;
}

@keyframes anim-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.explore__data{
  position: relative;
}

.explore__section{
  width: 200px;
  text-align: center;
  position: absolute;
  top: 0rem;
  right: 0rem;
}

.explore__description{
text-align: center;
margin-bottom: 2rem;
}

.explore__info{
display: flex;
justify-content: center;
column-gap: 3rem;
}

.explore__info-title {
  font-size: var(--normal-font-size);
}

.explore__info-number{
  font-size: var(--h1-font-size);
  font-family: var(--second-font);
  background: var(--second-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
/*=============== HISTORY ===============*/
.history{
  position: relative;
}

.history__container{
  position: relative;
  row-gap: 2.5rem;
  grid-template-columns: 265px;
  justify-content: center;
}

.history__card{
  text-align: center;
}

.history__user{
  width: 150px;
  margin: 0 auto .75rem;
}

.history__description span{
  color: var(--first-color);
  font-weight: font var(--font-semi-bold);
}

.history__sosmed-1,
.history__sosmed-2{
  position: absolute;
}

.history__sosmed-1{
  width: 250px;
  top: 10rem;
  left: -8rem;
}

.history__sosmed-2{
  width: 250px;
  right: -5rem;
  bottom: 6rem;
}
/*=============== CONTACT ===============*/
.contact__container {
  padding-bottom: 2rem;
}

.contact__form {
  display: grid;
  row-gap: 1rem;
}

.contact__input {
  width: 100%;
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  padding: 1rem;
  color: var(--white-color);
}

.contact__form button {
  cursor: pointer;
}

/*=============== FOOTER ===============*/
.footer {
  overflow: hidden;
}

.footer__container {
  position: relative;
  row-gap: 0rem;
  padding-block: 2rem;
}

.footer__sosmed-1, 
.footer__sosmed-2 {
  position: absolute;
}

.footer__sosmed-1 {
  width: 200px;
  left: -6.5rem;
  bottom: -1rem;
}

.footer__sosmed-2 {
  width: 100px;
  top: 2.3rem;
  right: -2rem;
}

.footer__content {
  row-gap: 2.5rem;
}

.footer__links {
  display: flex;
  column-gap: 2rem;
  justify-content: center;
}

.footer__link {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__social {
  display: flex;
  column-gap: 1rem;
  justify-content: center;
}

.footer__social-link1, .footer__social-link2, .footer__social-link3{
  display: inline-flex;
  background: var(--third-gradient);
  color: var(--white-color);
  font-size: 1.5rem;
  padding: .25rem;
  transition: box-shadow .4s;
}

.footer__social-link:hover {
  box-shadow: 0 8px 32px hsla(25, 96%, 55%, .6);
}

.footer__copy {
  text-align: center;
  z-index: var(--z-tooltip);
  color: var(--white-color);
  font-size: var(--small-font-size);
}


/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  background-color: hsl(238, 60%, 20%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(238, 50%, 30%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(238, 40%, 40%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color-light);
  box-shadow: 0 8px 24px hsla(238, 60%, 4%, .6);
  display: inline-flex;
  padding: 6px;
  color: var(--white-color);
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover {
  transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/

/* For small devices */
@media screen and (min-width: 320px) {
  .container {
     margin-inline: 1rem;
   }

   .nav__menu {
    width: 70%;
    padding: 3rem 0.5rem 0;
  }

  .nav__list {
    row-gap: 1rem;
  }

  .nav__img {
    width: 100px;
  }
 
   .home__container,
   .explore__container {
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     margin-inline: 1rem;
     justify-content: center;
   }
 
   .brandSlider {
     width: 317px;  
   }
   
   .container1{
     width: 317px;
   }
 
   .explore__data{
    margin-inline: 1rem;
    width: auto;
    justify-content: center;
   }
 
   .travel__container {
     padding-inline: 1rem;
   }
 
   .explore__info {
     row-gap: 1rem;
     text-align: center;
   }
 }

@media screen and (min-width: 360px) {
 .container {
    margin-inline: 1rem;
  }

  .home__container,
  .explore__container {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    margin-inline: 1rem;
    justify-content: center;
  }

  .brandSlider {
    width: 357px;  
  }
  
  .container1{
    width: 357px;
  }

  .explore__data{
   margin-inline: 1rem;
   width: auto;
   justify-content: center;
  }

  .travel__container {
    padding-inline: 1rem;
  }

  .explore__info {
    row-gap: 1rem;
    text-align: center;
  }

  .nav__menu {
    width: 75%;
    padding: 4rem 2rem 0;
  }

  .nav__list {
    row-gap: 1.5rem;
  }

  .nav__img {
    width: 200px;
  }
}

@media screen and (min-width: 375px) {
  .container {
     margin-inline: 1rem;
   }
 
   .home__container,
   .explore__container {
     grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
     margin-inline: 1rem;
     justify-content: center;
   }
 
   .brandSlider {
     width: 372px;  
   }
   
   .container1{
     width: 372px;
   }
 
   .explore__data{
    margin-inline: 1rem;
    width: auto;
    justify-content: center;
   }
 
   .travel__container {
     padding-inline: 1rem;
   }
 
   .explore__info {
     row-gap: 1rem;
     text-align: center;
   }
 }

@media screen and (min-width: 390px) {
 
  .container {
    margin-inline: 1rem;
  }

  .home__container,
  .explore__container {
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    margin-inline: 1rem;
    justify-content: center;
  }

  .brandSlider {
    width: 387px;  
  }
  
  .container1{
    width: 387px;
  }

  .explore__data{
   margin-inline: 1rem;
   width: auto;
   justify-content: center;
  }

  .travel__card {
    width: 265px;
  }

}

@media screen and (min-width: 428px) {
 
  .container {
    margin-inline: 1rem;
  }

  .home__container,
  .explore__container {
    grid-template-columns: repeat(auto-fit, minmax(428px, 1fr));
    margin-inline: 1rem;
    justify-content: center;
  }

  .brandSlider {
    width: 423px;  
  }
  
  .container1{
    width: 423px;
  }

  .explore__data{
   margin-inline: 1rem;
   width: auto;
   justify-content: center;
  }

  .travel__card {
    width: 265px;
  }

}

/* For medium devices */
@media screen and (min-width: 540px) {
  .nav__menu {
    width: 65%;
    padding: 4rem 2rem 0;
  }

  .nav__list {
    row-gap: 2rem;
  }

  .nav__img {
    width: 250px;
    right: 0rem;
  }

  .home__container {
    grid-template-columns: 350px;
    justify-content: center;
  }

  .brandSlider {
    width: 600px;
  }
  .container1{
    width: 480px;
    right: 3.5rem;
  }

  .explore__data{
    width: 480px;
    justify-content: center;
  }

  .travel__card {
    width: 265px;
  }
}

@media screen and (min-width: 768px) {
  .nav__menu {
    width: 50%;
    padding: 4rem 2rem 0;
  }

  .nav__list {
    row-gap: 3rem;
  }

  .nav__img {
    width: 250px;
    right: 0rem;
  }

  .home__container {
    grid-template-columns: repeat(2, 350px);
    align-items: center;
  }

  .home__data,
  .explore__data .section__title,
  .explore__description {
    text-align: initial;
  }

  .explore__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    align-items: center;
  }

  .brandSlider {
    width: auto;
  }

  .container1{
    width: 350px;
    right: auto;
  }

  .explore__data{
    width: auto;
  }

  .explore__info {
    justify-content: initial;
  }

  .brandSlider {
    order: -1;
  }

  .history__container {
    grid-template-columns: repeat(3, 230px);
  }

  .contact__form {
    width: 600px;
    justify-self: center;
    display: grid;
    grid-template-columns: 1fr max-content;
    column-gap: 1rem;
    border: 2px solid var(--border-color);
    padding: 1rem 1rem 1rem 1.5rem;
  }
  .contact__input {
    border: none;
    padding: 0;
  }
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 7rem 2rem;
  }

  .section__title {
    margin-bottom: 3rem;
    font-size: clamp(2.9rem, 5vw, 1.5rem); /* Skalakan sesuai layar */
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }
  
  .nav__logo img {
    width: 3rem;
  }

  .nav__toggle, 
  .nav__close {
    font-size: 2rem;
  }

  .nav__menu {
    width: 42%;
    padding: 4rem 4.5rem 0;
  }

  .nav__list {
    row-gap: 3.5rem;
  }

  .nav__close {
    top: 1.7rem;
  }

  .nav__img {
    width: 250px;
    right: 0rem;
  }

  .home__container {
    grid-template-columns: 540px 550px;
    column-gap: 2rem;
  }

  .home__title {
    margin-bottom: 3rem;
  }

  .home__ovni {
    width: 200px;
    top: 10rem;
    right: -3rem;
  }

  .home__img {
    width: 500px;
  }

  .travel__lines {
    width: 800px;
  }

  .travel__container {
    padding: 3.5rem 3.5rem 7.5rem;
  }

  .travel__container .section__title {
    text-align: initial;
  }

  .travel__swiper {
    max-width: 980px;
  }

  .travel__card {
    padding-top: 11rem;
  }

  .travel__img {
    width: 200px;
  }

  .travel__info {
    margin-bottom: 1.5rem;
  }

  .travel__description {
    font-size: var(--normal-font-size);
  }

  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 3rem;
  }

  .explore__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }

  .brandSlider {
    width: auto;
  }
  .container1{
    width: 550px;
  }

  .explore__data{
    width: auto;
  }

  .explore__data .section__title {
    margin-bottom: 1.5rem;
  }

  .explore__description {
    margin-bottom: 3rem;
  }

  .explore__section {
    width: 200px;
    text-align: center;
    position: absolute;
    top: 0rem;
    right: 0rem;
  }

  .history__container {
    grid-template-columns: repeat(3, 265px);
    column-gap: 5rem;
  }
  .history__user {
    width: 200px;
    margin-bottom: 1rem;
  }
  .history__sosmed-1 {
    width: 500px;
    left: -15rem;
  }
  .history__sosmed-2 {
    width: 300px;
    right: -8rem;
    bottom: 10rem;
  }

  .footer__container {
    padding-block: 4rem 3rem;
  }

  .footer__links {
    column-gap: 4rem;
  }

  .footer__social-link1,
  .footer__social-link2,
  .footer__social-link3 {
    column-gap: 1rem;
  }

  .footer__sosmed-1 {
    width: 400px;
    bottom: -6rem;
  }

  .footer__sosmed-2 {
    width: 200px;
  }

  .scrollup {
    right: 3rem;
  }
}
