/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Ubuntu:wght@400;500;700&display=swap');

/* Root Variables */
:root {
  --primary-color: #091023;
  --white-color: #fff;
  --light-gray-color: #ddd;
  --blue-color: #05568B;
}

/* General Styles */
html, body {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  margin: 0;
  padding: 0;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  font-size: 16px;
}

.container {
  max-width: 1440px; 
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
  
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
}

/* Typography */
.heading-normal-txt {
  font-size: 1.5rem;
  letter-spacing: 6px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.headings {
  font-size: 1.5rem;
  font-family: 'Ubuntu', sans-serif;
  padding-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.headings span {
  color: var(--blue-color);
}
.secondary-headings {
  font-size: 2.5rem;
  font-family: 'Ubuntu', sans-serif;
  padding: 1rem 0;
}

.lead {
  font-size: 1.1rem;
  line-height: 2;
  text-align: justify;
}

/* Buttons */
.primary-btn {
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-color);
  border: none;
  border-radius: 6px;
  color: var(--white-color);
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}

.primary-btn:hover {
  background-color: var(--blue-color);
}

/* Header and Navigation */
header {
 
  padding: 0.75rem 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  height: 70px;
  transition: all 0.3s ease-in-out;
}

header.sticky {
  background: var(--primary-color);
  position: fixed;
}

.logo {
  display: flex;
  align-items: center;
  padding-top: 0; 
  padding-left: 0.5rem; 
}

.logo img {
  height: 140px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  margin-top: 10px; 
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem; 
  height: 50px; 
}

nav ul {
  list-style-type: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
 
}

nav ul li {
 margin: 0 0.7rem;
  position: relative;
}

nav ul li a {
  color: var(--white-color);
  font-size: 1.1rem;
}

nav ul li::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white-color);
  opacity: 0;
  transition: all 0.3s ease-in;
}

nav ul li:hover::before {
  opacity: 1;
  width: 100%;
}

.btn {
  font-size: 1.1rem;
  color: var(--white-color);
  cursor: pointer;
  display: none;
}

/* Mission Buttons container */

.mission-buttons {
  position: absolute; 
  bottom: -14rem; 
  left: 50%;
  transform: translateX(-50%); 
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 15;
  width: 100%;

}



.btn-2 {
  background: #091023;
  background: linear-gradient(0deg, #091023 0%, #091023 100%);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
  z-index: 5;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  width: 100%; 
  max-width: 200px;
}
.btn-2:hover {
  box-shadow: 4px 4px 6px 0 rgba(255, 183, 77, 0.7),  
              -4px -4px 6px 0 rgba(255, 138, 101, 0.6), 
              inset -4px -4px 6px 0 rgba(255, 204, 128, 0.4), 
              inset 4px 4px 6px 0 rgba(255, 171, 64, 0.4); 
}

.mission-buttons .btn {
  display: inline-block; 
}

.mission-btn:hover {
  transform: scale(1.05);
}



/* Connection Button */
.btnLogin-popup {
  width: 110px;
  height: 45px;
  background: transparent;
  border: 2px solid var(--white-color);
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  color: var(--white-color);
  font-weight: 500;
  margin-left: 30px;
  transition: 0.5s;
}

.btnLogin-popup:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

/* Popup Wrapper */
body.active-popup::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: url('../img/show-case-3.jpg') no-repeat center center/cover;
background-size: cover; 
background-position: center;
opacity: 0.8; 
background-color: rgba(0, 0, 0, 0.2); 
}

.wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 400px;
  height: 440px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.5s ease, height 0.2s ease;
  z-index: 1000;
}

.wrapper.active-popup {
  transform: translate(-50%, -50%) scale(1);
  
}

.wrapper.active {
  height: 520px;
}

.wrapper .form-box {
  width: 100%;
  padding: 40px;
}

.wrapper .form-box.Login {
  transition: transform 0.18s ease;
  transform: translateX(0);
}

.wrapper.active .form-box.Login {
  transition: none;
  transform: translateX(-400px);
}

.wrapper .form-box.register {
  position: absolute;
  transition: none;
  transform: translateX(400px);
}

.wrapper.active .form-box.register {
  transition: transform 0.18s ease;
  transform: translateX(0);
}

.wrapper .icon-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  font-size: 2em;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 20px;
  cursor: pointer;
  z-index: 1;
}

.form-box h2 {
  font-size: 2em;
  color: var(--primary-color);
  text-align: center;
}

.input-box {
  position: relative;
  width: 100%;
  height: 50px;
  border-bottom: 2px solid var(--primary-color);
  margin: 30px 0;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 1em;
  color:var(--primary-color);
  font-weight: 500;
  pointer-events: none;
  transition: 0.5s;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
  top: -5px;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1em;
  color:var(--primary-color);
  font-weight: 600;
  padding: 0 35px 0 5px;
}

.input-box .icon {
  position: absolute;
  right: 8px;
  font-size: 1.2em;
  color:var(--primary-color);
  line-height: 57px;
}

.remember-forgot {
  font-size: 0.9em;
  color: var(--primary-color);
  font-weight: 500;
  margin: -15px 0 15px;
  display: flex;
  justify-content: space-between;
}

.remember-forgot label input {
  accent-color: var(--primary-color);
  margin-right: 3px;
}

.remember-forgot a {
  color: var(--primary-color);
  text-decoration: none;
}

.remember-forgot a:hover {
  text-decoration: underline;
}

.popup-btn {
  width: 100%;
  height: 45px;
  background:var(--primary-color);
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  color: var(--white-color);
  font-weight: 500;
}

.login-register {
  font-size: 0.9em;
  color: var(--primary-color);
  text-align: center;
  font-weight: 500;
  margin: 25px 0 10px;
}

.login-register p a {
  color:var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.login-register p a:hover {
  text-decoration: underline;
}

/* Main Content */
main {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.swiper {
  height: 100vh;
  overflow: visible; 
}

.slide-container {
  width: 100vw; 
  height: 100vh;
  overflow: visible; 
}

.slide-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  .img-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 2rem;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    font-family: 'Ubuntu', sans-serif;
  }
  

.img-overlay p {
  font-size: 0.8rem;
  letter-spacing: 8px;
  color: var(--white-color);
  animation: animate 4s forwards;
  max-width: 90%;
  margin: 0 auto;
}

.img-overlay h2 {
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 8px;
  animation: animate 4s forwards;
  transition: all 0.5s ease-in-out;
  font-size: 2.5rem;
  padding: 0 1rem;
  word-break: break-word;
}

@keyframes animate {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
  70% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.overlay {
  position: relative;
}

.overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.img-overlay h2 span {
  color: transparent;
  -webkit-text-stroke: 1px var(--white-color);
}

/* About Section */
#about {
  padding: 6rem 0;
}
.about-content-wrapper {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.about-content-wrapper h2.headings span {
  color: #05568B;
  font-family: 'Ubuntu', sans-serif;
  -webkit-text-stroke: 0;
}


.about-content-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-content-wrapper .icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.about-content-wrapper .icons i {
  background: var(--blue-color);
  padding: 0.8rem;
  border-radius: 50%;
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-content-wrapper ul p {
  margin-left: 1rem;
}

.agency-left-side,
.agency-right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agency-right-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.agency-right-side .img {
  position: relative;
  display: inline-block;
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agency-right-side .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

.agency-right-side .img::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--blue-color);
  z-index: -1;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.agency-right-side .img:hover {
  transform: scale(0.95);
}

/* Choose Place Section */
#choose-place {
  padding: 6rem 0;
}
.row-wise-img .lg-img {
  height: 350px;
  
}

.choose-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 2rem;
  grid-template-rows: auto auto;
}

.lg-img {
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.lg-img:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.lg-img:hover {
  transform: scale(1.02);
}

.img-content {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 0 1rem;
  color: var(--white-color);
  z-index: 2;
}

.img-content h2 {
  padding: 0 2rem;
  color: var(--white-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hidden-content {
  padding: 0.5rem 2rem;
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}

.hidden-content i {
  padding: 0.2rem 0.2rem 0 0;
}

.container h2.headings span {
  color: var(--blue-color);
  font-family: 'Ubuntu', sans-serif;
}

.lg-img:hover .hidden-content {
  transform: translateY(0%);
}

.price-label {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  position: absolute;
  top: -150px;
  right: 0px;
  transform: rotate(-90deg);
}

.row-wise-img {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  width: 100%;
  height: 100%;
  gap: 2rem;
}

.row-wise-img .lg-img {
  height: 400px;
  width: 450px;
}

.row-wise-img .lg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Static Counter Section */
#static-counter {
  padding: 4rem 0;

  background-attachment: fixed;
  z-index: 4;
  position: relative;
}

#static-counter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  z-index: -1;
}

.static-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  text-align: center;
  align-items: center;
  height: 100%;
  padding: 1rem 0;
}

.static-icons {
  color: var(--primary-color);
  cursor: pointer;
  
}

.static-icons i {
  font-size: 3rem;
  padding: 2rem;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease-in;
  color: var(--primary-color);
  

}

.numbers {
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 1rem;
  color: var(--primary-color);
}

.txt {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 0.1rem;
}

.static-icons i:hover {
  background: var(--primary-color);
  border: none;
  transform: translateY(-20%);
}

/* Top Destination Section */
#top-destination {
  padding: 4rem 0;
}

.swiper2 {
  width: 100%;
  height: 500px;
  position: relative;
}

.swiper2 .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
}

.carousel {
  width: 85%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  overflow: hidden;
}

.carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: inherit;
  z-index: 1;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.carousel-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  padding: 0 1.5rem;
  color: var(--white-color, #fff);
  display: flex;
  align-items: center;
  z-index: 2;
}

.carousel-img-overlay .img-content {
  width: 100%;
}

.carousel-img-overlay h2 {
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: 700; 
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em; 
}

.carousel-img-overlay h2 i {
  margin-right: 0.25rem;
}

.carousel-img-overlay span {
  font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
  font-weight: 400;
  margin-bottom: 0.25rem;
  opacity: 0.9; 
}

.carousel-img-overlay a {
  color:#05568B;
  font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-top: 0.25rem;
  transition: color 0.2s;
}

.carousel-img-overlay a:hover {
  color: #05568B;
}

.carousel-img-overlay a i {
  margin-left: 0.25rem;
}

.swiper-button-prev,
.swiper-button-next {
  color: #05568B;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
}

.swiper-pagination {
  position: absolute;
  bottom: 8px;
}

.swiper-pagination-bullet {
  background: #05568B;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background:#05568B;
}


/* Testimonials Section */
#testimonials {
  padding: 6rem 0;
  width: 100%;
 
  background-attachment: fixed;
}

#testimonials .headings {
  color: var(--primary-color);
  text-align: center;
  font-size: 2rem;
}
.container h2 span {
  color: var(--primary-color);

}

.testimonials-wrapper {
  overflow: hidden;
  background: rgba(9, 16, 35, 0.6);
  color: var(--white-color);
  padding: 2rem 6rem;
  border-radius: 15px;
}

.testimonials-wrapper i {
  color: #DBB924;
}

.testimonials-wrapper p {
  text-align: center;
}

.test-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-img img {
  width: 20%;
  object-fit: cover;
  margin: 1rem 0;
  border-radius: 50%;
}

.icons {
  text-align: center;
}

.guest {
  font-size: 1rem;
  color: #ccc;
}

/* Footer Section */
#footer {
  padding: 3rem 0;
  background: var(--primary-color);
  color: var(--white-color);
  font-family: 'Arial', sans-serif;
}

/* Top Section (Contact Info) */
.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem; 
  padding: 1.5rem; 
  border: 1px solid var(--light-gray-color);
}

.ft-content {
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 0.5rem;
  color: var(--white-color);
  text-align: center; 
}

.icon i {
  padding: 1rem;
  font-size: 2rem;
  background: var(--blue-color);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.icon i:hover {
  transform: scale(1.1);
}

.content {
  padding: 0 1rem;
  text-align: left;
}

.content h4 {
  font-size: 1.2rem; 
  margin-bottom: 0.3rem;
}

.content p {
  font-size: 1rem; 
  color: #cccccc;
}

/* Bottom Section (Links, Newsletter, Branding) */
.footer-wrapper {
  display: flex; 
  justify-content: space-between; 
  padding: 2rem 0;
  color: var(--white-color);
  margin: 2rem 0;
}

.footer-left, .footer-right {
  flex: 1; 
  max-width: 45%; 
}

.footer .heading-normal-txt {
  color: var(--white-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* About Section (Branding) */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center; 
  margin-bottom: 1rem;
}

.about img {
  width: 50%; 
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.about .lead {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  line-height: 1.4;
  color: #cccccc;
  text-align: center; 
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center; 
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons i {
  background: var(--blue-color);
  color: var(--white-color);
  padding: 0.6rem;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons i:hover {
  background: var(--light-gray-color);
  transform: translateY(-3px);
}

/* Links Section */
.links {
  margin-top: 1rem;
}

.links ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; 
}

.links ul li {
  margin: 0; 
  font-size: 0.9rem;
}

.links ul li a {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.links ul li a:hover {
  color: var(--blue-color);
}




/* Footer Section */
#footer {
  padding: 3rem 0;
  background: var(--primary-color);
  color: var(--white-color);
  font-family: 'Arial', sans-serif;
  width: 100vw;
  position: relative;
  left: 0;
  margin: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--light-gray-color);
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 0;
  color: var(--white-color);
  margin: 2rem 0;
  width: 100%;
  box-sizing: border-box;
}

.ft-content {
  display: flex;
  align-items: center;
  gap: 1rem; 
  text-align: left;
  flex: 1; 
}

.icon i {
  padding: 0.8rem;
  font-size: 1.5rem;
  background: var(--blue-color);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.icon i:hover {
  transform: scale(1.1);
}

.content {
  padding: 0;
}

.content h4 {
  font-size: 1.1rem; 
  font-weight: 600; 
  margin-bottom: 0.5rem;
}

.content p {
  font-size: 0.9rem; 
  color: #cccccc;
  line-height: 1.4; 
}

.footer-left, .footer-right {
  flex: 1;
  max-width: 45%;
}

/* Heading for Links and Newsletter */
.footer .heading-normal-txt {
  color: var(--white-color);
  font-size: 1.5rem; 
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase; 
}

/* About Section (Branding) */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  margin-bottom: 1.5rem;
}

.about img {
  width: 40%; 
  object-fit: cover;
  margin-bottom: 0.8rem;
}

.about .lead {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #cccccc;
  text-align: left;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem; 
}

.social-icons i {
  background: var(--blue-color);
  color: var(--white-color);
  padding: 0.6rem;
  font-size: 1.3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons i:hover {
  background: var(--light-gray-color);
  transform: translateY(-3px);
}

/* Links Section */
.links {
  margin-top: 1.5rem;
}

.links ul {
  list-style-type: none;
  display: flex; 
  flex-wrap: wrap; 
  gap: 1.5rem; 
}

.links ul li {
  font-size: 0.9rem;
}

.links ul li a {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.links ul li a:hover {
  color: var(--blue-color);
}

/* Newsletter Section */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.subscribe .lead {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #cccccc;
  margin-bottom: 1.5rem;
}

.subscribe form {
  position: relative;
  width: 100%;
}

.subscribe input {
  width: 100%;
  outline: none;
  border: 1px solid var(--light-gray-color);
  padding: 0.8rem 1rem; 
  border-radius: 25px; 
  margin-top: 1rem;
  font-size: 0.9rem;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.subscribe input::placeholder {
  color: #999999;
}

.subscribe button {
  position: absolute;
  top: 1.5rem;
  right: 0.5rem;
  padding: 0.5rem 1.5rem;
  outline: none;
  border: none;
  border-radius: 25px; 
  background: var(--blue-color);
  color: var(--white-color);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.subscribe button:hover {
  background: var(--light-gray-color);
  transform: translateY(-2px);
}

/* Copyright Section */
.footer {
  border-top: 1px solid var(--light-gray-color);
}

.footer p {
  text-align: center;
  padding: 1rem 0;
  color: #999999;
  font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .container {
      padding: 0 1rem;
      width: 100%;
      box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .footer-content {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      padding: 2rem;
      width: 100%;
      box-sizing: border-box;
  }

  .footer-wrapper {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      padding: 2rem 0;
      width: 100%;
      box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 1rem;
      width: 100%;
      box-sizing: border-box;
  }

  .footer-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2rem;
      width: 100%;
      box-sizing: border-box;
  }

  .footer-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      padding: 2rem 0;
      width: 100%;
      box-sizing: border-box;
  }
}
/* Adjust "Nos Appareils" font size and position */
#top-destination .container > p:first-child {
  font-size: 1.2rem; 
  letter-spacing: 6px;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 0.5rem; 
}

#top-destination .headings {
  font-size: 2rem;
  font-family: 'Ubuntu', sans-serif;
  padding-bottom: 1.5rem; 
  letter-spacing: 2px;
  text-transform: uppercase;
}

#top-destination .headings span {
  color: var(--blue-color);
}


#top-destination .container > p:last-child {
  font-size: 1.1rem;
  line-height: 2;
  text-align: justify;
  margin-top: 0.5rem; 
}


#top-destination {
  padding: 3rem 0 4rem 0; 
  width: 100vw;
  position: relative;
  left: 0;
  margin: 0;
  box-sizing: border-box;
  background: #fff; 
}

