/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors - Tunisia-Inspired Palette
   */

  /* Primary Colors */
  --mediterranean-blue: #4A90E2;
  --viridian-green: #4A90E2;
  --light-blue: #6BA3E8;
  --sky-blue: #87CEEB;
  --deep-blue: #2E5C8A;
  --desert-gold: #D4A574;
  --sahara-sand: #F4E4D7;

  /* Neutral Colors */
  --battleship-gray: hsl(0, 0%, 53%);
  --silver-chalice: hsl(0, 0%, 69%);
  --granite-gray: hsl(0, 0%, 40%);
  --independence: hsl(219, 20%, 32%);
  --spanish-gray: hsl(0, 0%, 61%);
  --oxford-blue: #093FB4;
  --black-coral: hsl(223, 8%, 44%);
  --eerie-black: hsl(210, 11%, 15%);
  --light-gray: hsl(0, 0%, 80%);
  --white-2: #FFFCFB;
  --white-1: #FFFCFB;
  --black: hsl(0, 0%, 0%);
  --jet: hsl(0, 0%, 20%);
  --cultured: hsl(0, 0%, 97%);

  /* Semantic Colors */
  --mikado-yellow: var(--desert-gold);
  --bright-navy-blue: var(--mediterranean-blue);
  --sonic-silver: hsl(0, 0%, 47%);
  --gunmetal: hsl(207, 11%, 23%);

  /**
   * gradients
   */

  --gradient-primary: linear-gradient(135deg, #093FB4 0%, #0652DD 100%);
  --gradient-gold: linear-gradient(135deg, #D4A574 0%, #C89860 100%);
  --gradient-sunset: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(9, 63, 180, 0.9) 0%, rgba(107, 142, 35, 0.8) 100%);

  /**
   * shadows
   */

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
  --shadow-colored: 0 8px 24px rgba(74, 144, 226, 0.3);

  /**
   * typography
   */

  --ff-abril-fatface: 'Abril Fatface', cursive;
  --ff-comforter-brush: 'Comforter Brush', cursive;
  --ff-heebo: 'Heebo', sans-serif;

  --fs-1: 4.2rem;
  --fs-2: 3.6rem;
  --fs-3: 3rem;
  --fs-4: 2.4rem;
  --fs-5: 1.8rem;
  --fs-6: 1.7rem;
  --fs-7: 1.4rem;
  --fs-8: 1.2rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * border radius
   */

  --radius-4: 4px;
  --radius-6: 6px;
  --radius-8: 8px;
  --radius-12: 12px;
  --radius-16: 16px;
  --radius-full: 50%;

  /**
   * spacing
   */

  --section-padding: 60px;
  --section-padding-sm: 40px;

  /**
   * transition
   */

  --transition-1: 0.15s ease;
  --transition-2: 0.35s ease;
  --transition-3: 0.5s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);
  --cubic-in-out: cubic-bezier(0.4, 0, 0.2, 1);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

input,
button {
  border: none;
  background: none;
  font: inherit;
}

button {
  cursor: pointer;
}

input {
  width: 100%;
}

img {
  height: auto;
}

address {
  font-style: normal;
}

:focus-visible {
  outline-offset: 5px;
}

html {
  font-family: var(--ff-heebo);
  font-size: 10px;
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--white-1);
  font-size: 1.8rem;
  overflow-x: hidden;
  /* Matches step-description size */
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
  background: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(0, 0%, 70%);
}





/*-----------------------------------*\
  #REVEAL
\*-----------------------------------*/

[data-reveal] {
  opacity: 0;
  transition: 0.8s var(--cubic-out);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="bottom"] {
  transform: translateY(40px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* REUSED STYLE CONTINUED */

.container {
  padding-inline: 15px;
  max-width: 100%;
}

.btn {
  background: var(--background, var(--white-1));
  color: var(--color, var(--viridian-green));
  font-weight: var(--fw-700);
  width: max-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 2px solid var(--border-color, var(--white-1));
  border-radius: var(--radius-8);
  transition: all var(--transition-2);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-secondary:is(:hover, :focus) {
  --background: transparent;
  --color: var(--white-1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  --background: var(--gradient-primary);
  --color: var(--white-1);
  --border-color: var(--viridian-green);
  background: var(--gradient-primary);
  border: none;
}

.btn-primary:is(:hover, :focus) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-colored);
}

.btn-outline {
  --color: var(--oxford-blue);
  --border-color: var(--silver-chalice);
  background: transparent;
}

.btn-outline:is(:hover, :focus) {
  --color: var(--white-1);
  --background: var(--gradient-primary);
  --border-color: var(--viridian-green);
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.section {
  padding-block: var(--section-padding);
  width: 100%;
}

.section-subtitle {
  font-family: var(--ff-comforter-brush);
  color: var(--desert-gold);
  font-size: var(--fs-3);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.w-100 {
  width: 100%;
}

.h2 {
  color: var(--jet);
  font-size: var(--fs-2);
  font-weight: var(--fw-600);
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.h3 {
  font-size: var(--fs-4);
  font-weight: var(--fw-400);
}

.section-title {
  font-family: var(--ff-abril-fatface);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-banner {
  background: var(--silver-chalice);
}

:is(.popular, .blog) .section-subtitle {
  text-align: center;
  margin-bottom: 10px;
}

:is(.popular, .blog) .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.popular-list,
.blog-list {
  display: grid;
  gap: 30px;
}

.popular-card,
.blog-card {
  box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
  border-radius: var(--radius-6);
  overflow: hidden;
}

:is(.popular, .blog) .card-banner {
  position: relative;
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--mikado-yellow);
  color: var(--white-1);
  padding: 14px 10px;
  border-radius: var(--radius-6);
}

.card-badge ion-icon {
  --ionicon-stroke-width: 60px;
  font-size: 20px;
  margin-inline: auto;
}

.card-badge time {
  font-weight: var(--fw-700);
}

:is(.popular, .blog) .card-content {
  padding: 30px 15px;
}

.card-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

:is(.popular, .blog) .card-title {
  color: var(--granite-gray);
  font-size: var(--fs-5);
  margin-block: 20px;
}

:is(.popular, .blog) .card-title>a {
  color: inherit;
}

:is(.popular, .blog) .card-title>a:is(:hover, :focus) {
  color: var(--viridian-green);
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white-1);
  padding-block: 10px;
  height: 80px;
  z-index: 100;
  transition: all 0.4s var(--cubic-out);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.header.active {
  top: 0;
  width: 100%;
  left: 0;
  height: 70px;
  background: var(--white-1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
  padding-block: 0;
}

.header.nav-active {
  background: var(--white-1);
  backdrop-filter: blur(15px);
  height: 70px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header .container>a:first-child {
  margin-right: auto;
}

.header .container>a:first-child+.nav-toggle-btn {
  margin-left: 0;
}

/* Logo: branded badge for clarity on transparent & solid header */
.logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s var(--cubic-out);
}

.logo-container:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--desert-gold);
}

.logo-container:focus-visible {
  outline-offset: 3px;
  outline: 2px solid var(--mediterranean-blue);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.4s var(--cubic-out);
}

/* Scrolled header: slightly smaller logo, same badge for consistency */
.header.active .logo-container {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.header.active .logo-container:hover {
  border-color: transparent;
}

.header.active .logo-img {
  height: 42px;
}

@media (max-width: 575px) {
  .logo-container {
    padding: 0;
  }

  .logo-img {
    height: 45px;
  }

  .header.active .logo-img {
    height: 38px;
  }
}

/* Footer: logo branding */
.footer-logo {
  height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav-toggle-btn {
  margin-left: auto;
  /* Push to right on mobile */
}

.nav-toggle-btn.active .open,
.nav-toggle-btn .close {
  display: none;
}

.nav-toggle-btn .open,
.nav-toggle-btn.active .close {
  display: block;
}

.nav-toggle-btn ion-icon {
  color: var(--oxford-blue);
  font-size: 35px;
  --ionicon-stroke-width: 40px;
}

.navbar {
  position: absolute;
  top: calc(100% + 10px);
  left: 15px;
  width: calc(100% - 30px);
  background: var(--white-1);
  backdrop-filter: blur(20px);
  padding: 30px 20px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--cubic-out);
  z-index: -1;
  box-shadow: var(--shadow-xl);
}

.header.active .navbar {
  top: calc(100% + 5px);
}

.header.nav-active .navbar {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.navbar-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
  align-items: center;
  /* Center links for better mobile look */
}

.navbar-link {
  color: var(--oxford-blue);
  font-size: var(--fs-4);
  /* Larger for touch */
  font-weight: var(--fw-600);
  padding-block: 10px;
  transition: var(--transition-1);
  width: 100%;
  text-align: center;
}

.navbar-link:is(:hover, :focus) {
  color: var(--desert-gold);
}

.navbar .btn {
  margin-inline: auto;
  /* Center button */
}

/* Language switcher removed */




/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background-image: linear-gradient(rgba(9, 63, 180, 0.4), rgba(0, 0, 0, 0.6)), url("../images/hero-user.jpg");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-block: 100px 80px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero .section-subtitle {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--sahara-sand);
  text-transform: uppercase;
  font-weight: var(--fw-600);
  font-family: var(--ff-heebo);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 25px;
  text-shadow: none;
}

.hero .section-subtitle .line {
  width: 50px;
  height: 2px;
  background: var(--desert-gold);
}

.hero-title {
  color: var(--white-1);
  font-size: clamp(2.4rem, 7vw, 6.5rem);
  font-family: var(--ff-abril-fatface);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-title .highlight {
  position: relative;
  color: var(--desert-gold);
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(212, 165, 116, 0.3);
  z-index: -1;
}

.hero-text {
  color: var(--white-2);
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 60ch;
  opacity: 0.9;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Floating Badge */
.hero-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px 30px;
  border-radius: var(--radius-16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: max-content;
  position: absolute;
  right: 5%;
  top: 35%;
  z-index: 3;
  animation: floatBadge 5s ease-in-out infinite;
  box-shadow: var(--shadow-xl);
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.badge-icon {
  background: var(--gradient-gold);
  color: var(--white-1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 2.5rem;
}

.badge-title {
  display: block;
  color: var(--white-1);
  font-weight: var(--fw-700);
  font-size: 1.8rem;
}

.badge-text {
  color: var(--sahara-sand);
  font-size: 1.3rem;
  margin: 0;
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white-1);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 4;
}

.scroll-down .mouse {
  width: 25px;
  height: 40px;
  border: 2px solid var(--white-1);
  border-radius: 20px;
  position: relative;
}

.scroll-down .mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--white-1);
  border-radius: 2px;
  animation: mouseMove 1.5s infinite;
}

@keyframes mouseMove {
  0% {
    top: 8px;
    opacity: 1;
  }

  100% {
    top: 25px;
    opacity: 0;
  }
}

/* Decorative Shapes Enhancement */
.shape {
  position: absolute;
  z-index: 1;
  opacity: 0.5;
  filter: blur(1px);
}

@media (max-width: 575px) {
  .shape {
    transform: scale(0.6);
  }
}

.shape-1 {
  display: block;
  top: 15%;
  left: 10%;
  animation: floatShape1 10s infinite alternate;
}

.shape-2 {
  display: block;
  top: 40%;
  right: 15%;
  animation: floatShape2 15s infinite alternate;
}

.shape-3 {
  display: block;
  bottom: 20%;
  left: 30%;
  animation: floatShape3 12s infinite alternate;
}

@keyframes floatShape1 {
  from {
    transform: translate(0, 0) rotate(0deg);
  }

  to {
    transform: translate(30px, 40px) rotate(45deg);
  }
}

@keyframes floatShape2 {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-40px, -20px) scale(1.2);
  }
}

@keyframes floatShape3 {
  from {
    transform: translate(0, 0) skew(0);
  }

  to {
    transform: translate(20px, -50px) skew(10deg);
  }
}

/* Desktop Responsiveness */
@media (min-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }

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

  .hero-badge {
    position: relative;
    right: auto;
    top: auto;
    align-self: center;
    justify-self: center;
  }
}

@media (max-width: 991px) {
  .hero-badge {
    display: none;
    /* Hide Badge on mobile to save space */
  }

  .hero {
    text-align: center;
    padding-top: 120px;
    padding-block: 120px 60px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  .hero .container {
    padding-inline: 20px;
    max-width: 100%;
    width: 100%;
  }

  .hero-content {
    text-align: center;
    margin-inline: auto;
    max-width: 100%;
    width: 100%;
  }

  .hero .section-subtitle {
    justify-content: center;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
  }

  .btn-group {
    justify-content: center;
    margin-top: 20px;
  }
}

/* Small mobile: tighter hero and typography */
@media (max-width: 575px) {
  .container {
    padding-inline: 16px;
  }

  .hero {
    padding-top: 100px;
    padding-block: 100px 50px;
    min-height: 100svh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  .hero .container {
    padding-inline: 16px;
  }

  .hero-title {
    margin-bottom: 16px;
  }

  .hero-text {
    margin-bottom: 24px;
    font-size: 1.5rem;
  }

  .scroll-down {
    bottom: 20px;
    font-size: 1rem;
  }

  .section-subtitle {
    font-size: 2.2rem;
  }

  .h2,
  .section-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
    line-height: 1.25;
  }

  .about .section-title {
    margin-bottom: 18px;
  }

  .about-header {
    margin-bottom: 28px;
  }

  .about-text {
    font-size: 1.6rem;
  }

  .about-item {
    padding: 14px;
    gap: 14px;
  }

  .about-item-icon {
    font-size: 22px;
    padding: 12px;
  }

  .about-item-title {
    font-size: 1.6rem;
  }

  .about-item-text {
    font-size: 1.5rem;
  }

  .about-list {
    gap: 18px;
    margin-bottom: 28px;
  }

  .about-buttons {
    flex-direction: column;
    width: 100%;
  }

  .about-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding-block: var(--section-padding-sm);
  }

  .footer {
    padding-block: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer .logo-container {
    max-width: 100%;
  }

  .footer-logo {
    height: 48px;
    max-width: 100%;
    object-fit: contain;
  }
}

@media (max-width: 380px) {
  .footer-logo {
    height: 42px;
  }
}

@media (min-width: 992px) {
  .hero {
    background-attachment: fixed;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .hero .container {
    max-width: 980px;
    margin-inline: auto;
  }

  .hero-content {
    max-width: 800px;
  }
}





/*-----------------------------------*\
  #DESTINATION
\*-----------------------------------*/

.destination .section-subtitle {
  text-align: center;
  margin-bottom: 15px;
}

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

.destination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.destination-card .card-banner {
  height: 360px;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(hsla(222, 46%, 17%, 0), hsla(222, 46%, 17%, 0.7));
}

.destination-card img {
  transition: var(--transition-2);
}

.destination-card:is(:hover, :focus) img {
  transform: scale(1.1);
}

.destination-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 1;
}

.destination-card .card-subtitle {
  color: var(--mikado-yellow);
  font-family: var(--ff-comforter-brush);
  font-size: var(--fs-5);
}

.destination-card .card-title {
  color: var(--white-1);
  font-family: var(--ff-abril-fatface);
}





/*-----------------------------------*\
  #POPULAR / TOURS
\*-----------------------------------*/

.popular-list,
.blog-list {
  display: grid;
  gap: 35px;
}

.popular-card,
.blog-card {
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-12);
  overflow: hidden;
  transition: all var(--transition-3);
  background: var(--white-1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.popular-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

:is(.popular, .blog) .card-banner {
  position: relative;
  overflow: hidden;
}

:is(.popular, .blog) .card-banner img {
  transition: transform var(--transition-3);
}

:is(.popular, .blog) .card-banner:hover img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-gold);
  color: var(--white-1);
  padding: 12px 16px;
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.card-badge ion-icon {
  --ionicon-stroke-width: 60px;
  font-size: 20px;
  margin-inline: auto;
}

.card-badge time {
  font-weight: var(--fw-700);
  font-size: var(--fs-7);
}

:is(.popular, .blog) .card-content {
  padding: 30px 25px;
}

.card-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

:is(.popular, .blog) .card-title {
  color: var(--gunmetal);
  font-size: var(--fs-4);
  margin-block: 15px;
  font-weight: var(--fw-600);
  line-height: 1.4;
  transition: color var(--transition-2);
}

:is(.popular, .blog) .card-title>a {
  color: inherit;
}

:is(.popular, .blog) .card-title>a:is(:hover, :focus) {
  color: var(--mediterranean-blue);
}

.card-text {
  color: var(--sonic-silver);
  line-height: 1.7;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  :is(.popular, .blog) .card-title {
    font-size: 2.2rem;
  }

  .card-text {
    font-size: 1.6rem;
  }
}

.popular-card :is(.card-price, .card-rating) {
  color: var(--white-1);
  font-size: var(--fs-8);
  padding: 6px 12px;
  border-radius: var(--radius-6);
  font-weight: var(--fw-600);
}

.popular-card .card-price {
  background: var(--gradient-sunset);
}

.popular-card .card-rating {
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.popular-card .card-rating ion-icon {
  font-size: 16px;
}

.popular-card .card-rating data {
  margin-left: 4px;
}

.popular-card .card-location {
  color: var(--spanish-gray);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-7);
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  background: var(--cultured);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.about::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.about-header {
  margin-bottom: 40px;
}

.about-wrapper {
  display: grid;
  gap: 40px;
}

@media (min-width: 992px) {
  .about-header {
    margin-bottom: 50px;
  }
}

.about-banner {
  border-radius: var(--radius-16);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  position: relative;
  height: auto;
  /* Fallback for mobile */
}

@media (min-width: 992px) {
  .about-banner {
    height: 100%;
  }
}

.about-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .section-subtitle {
  margin-bottom: 10px;
}

.about .section-title {
  margin-bottom: 25px;
}

.about-text,
.about-item-text {
  color: var(--sonic-silver);
  font-size: var(--fs-6);
  line-height: 1.8;
}

.about-text {
  margin-bottom: 40px;
  max-width: 60ch;
}

.about-list {
  display: grid;
  gap: 25px;
  margin-bottom: 40px;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--white-1);
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all var(--transition-2);
}

.about-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  border-color: var(--mediterranean-blue);
}

.about-item-icon {
  background: var(--gradient-primary);
  color: var(--white-1);
  font-size: 24px;
  padding: 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-colored);
  flex-shrink: 0;
}

.about-item-title {
  color: var(--gunmetal);
  font-weight: var(--fw-600);
  margin-bottom: 8px;
  font-size: var(--fs-5);
}





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog {
  padding-bottom: 100px;
}

.blog-card .author-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-card .card-wrapper {
  color: var(--spanish-gray);
  font-size: var(--fs-8);
  justify-content: space-between;
}

.author-name {
  color: var(--granite-gray);
  font-weight: var(--fw-500);
}

.btn-link {
  color: var(--viridian-green);
  font-weight: var(--fw-700);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.btn-link ion-icon {
  font-size: 20px;
}

.btn-link:is(:hover, :focus) {
  color: var(--oxford-blue);
}




/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.contact-hero {
  background: var(--viridian-green);
  background-image: none;
}

.contact-hero .hero-title,
.contact-hero .hero-text,
.contact-hero .section-subtitle {
  color: var(--white-1);
}

.contact {
  background: var(--white-2);
}

.contact-wrapper {
  display: grid;
  gap: 60px;
}

.contact-info .section-text {
  margin-bottom: 40px;
  color: var(--granite-gray);
  line-height: 1.8;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white-1);
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-2);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--mediterranean-blue);
}

.contact-card .card-icon {
  background: var(--gradient-primary);
  color: var(--white-1);
  font-size: 24px;
  padding: 15px;
  border-radius: var(--radius-12);
  flex-shrink: 0;
}

.contact-card .card-title {
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  margin-bottom: 5px;
  color: var(--eerie-black);
}

.contact-card .card-text {
  font-size: var(--fs-7);
  color: var(--battleship-gray);
}

.social-links-container .social-title {
  font-weight: var(--fw-700);
  margin-bottom: 15px;
  color: var(--eerie-black);
}

.social-links-container .social-list {
  justify-content: flex-start;
  gap: 15px;
}

.social-links-container .social-link {
  background: var(--white-1);
  color: var(--mediterranean-blue);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-2);
}

.social-links-container .social-link:hover {
  background: var(--gradient-primary);
  color: var(--white-1);
  transform: translateY(-3px);
}

/* Banner / Image Styling */
.contact-banner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-banner .image-box {
  position: relative;
  max-width: 500px;
  border-radius: var(--radius-24);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-banner .image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.contact-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--white-1);
  padding: 20px;
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
  z-index: 10;
}

.experience-badge .badge-number {
  color: var(--mediterranean-blue);
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  line-height: 1;
}

.experience-badge .badge-text {
  color: var(--battleship-gray);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  margin-top: 5px;
}

/* Map Styling */
.map-card {
  border-radius: var(--radius-24);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-card iframe {
  filter: grayscale(0.2);
  transition: all var(--transition-3);
}

.map-card:hover iframe {
  filter: grayscale(0);
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--oxford-blue);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--light-gray);
  padding-block: 60px;
  width: 100%;
  overflow: hidden;
}

.footer a:not(.logo) {
  color: inherit;
}

.footer-top {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-list-title {
  color: var(--white-1);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-bottom: 15px;
}

.footer-link {
  font-size: var(--fs-7);
  padding-block: 5px;
}

.footer .footer-link:is(:hover, :focus) {
  color: var(--white-1);
}

.newsletter-text {
  font-size: var(--fs-7);
  margin-bottom: 30px;
  line-height: 1.7;
}

.newsletter-form {
  position: relative;
}

.newsletter-input {
  background: var(--white-1);
  border-radius: var(--radius-6);
  padding: 24px;
  color: var(--eerie-black);
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 5px hsla(216, 98%, 52%, 0.25);
}

.newsletter-form .btn-primary {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.newsletter-form .btn-primary:is(:hover, :focus) {
  --background: var(--viridian-green);
  --color: var(--white-1);
}

.footer .logo-container {
  margin-bottom: 25px;
  padding: 0;
  background: transparent;
  border: none;
  max-width: 100%;
  display: inline-block;
}

.footer .logo-container:hover {
  background: transparent;
  border: none;
}

.footer-logo {
  height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-bottom .logo,
.footer-bottom .logo-container {
  text-align: center;
  margin-bottom: 20px;
  display: inline-block;
  max-width: 100%;
}

.copyright {
  text-align: center;
  margin-bottom: 20px;
  font-size: var(--fs-7);
}

.copyright-link {
  display: inline-block;
  text-decoration: underline;
}

.copyright-link:is(:hover, :focus) {
  text-decoration: none;
}

.social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.social-link {
  font-size: 17px;
  background: var(--independence);
  padding: 10px;
  border-radius: 50%;
}

.social-link:is(:hover, :focus) {
  background: var(--viridian-green);
}





/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  background: var(--viridian-green);
  color: var(--white-1);
  font-size: 20px;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
  z-index: 99;
}

.go-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.go-top:is(:hover, :focus) {
  transform: translateY(-4px);
}

@media (max-width: 575px) {
  .go-top {
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
  }
}





/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen 
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5rem;
    --fs-3: 4rem;
    --fs-8: 1.4rem;

  }



  /**
   * HERO
   */

  .hero-text {
    --fs-7: 1.8rem;
  }



  /**
   * FOOTER
   */

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

}





/**
 * responsive for larger than 768px screen 
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 750px;
    margin-inline: auto;
  }

  .popular-list,
  .blog-list {
    grid-template-columns: 1fr 1fr;
  }



  /**
    * HERO
   */

  .hero {
    min-height: 550px;
    display: grid;
    place-items: center;
  }

  .hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
  }



  /**
   * DESTINATION
   */

  .destination-list>li {
    width: calc(33.33% - 20px);
  }

  .destination-list .w-50 {
    width: calc(50% - 20px);
  }



  /**
   * FOOTER
   */

  .footer {
    --fs-7: 1.6rem;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom .logo,
  .footer-bottom .logo-container,
  .copyright {
    margin-bottom: 0;
  }

}





/**
 * responsive for larger than 992px screen 
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 3.5rem;
    --fs-3: 4.4rem;

    /**
     * spacing
     */

    --section-padding: 60px;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 980px;
  }

  .header .container {
    max-width: 100%;
    padding-inline: 10px;
  }

  .popular-list,
  .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * HEADER
   */

  .nav-toggle-btn {
    display: none;
  }

  .header {
    height: 100px;
  }

  .header.active {
    top: 0;
    width: 100%;
    left: 0;
    height: 80px;
    background: var(--white-1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
    padding-block: 0;
  }

  .navbar {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Push button to the far right */
    flex-grow: 1;
    margin-left: 40px;
    /* Space from logo */
  }

  .navbar-list {
    margin-bottom: 0;
    margin-inline: auto !important;
    /* Forces menu to center in the remaining space */
    display: flex;
    flex-direction: row;
    /* Horizontal for desktop */
    align-items: center;
    gap: 40px;
    /* Slightly wider gap for desktop */
  }

  .navbar-link {
    font-weight: var(--fw-700);
    font-size: var(--fs-5);
    padding-block: 0;
    width: auto;
    text-align: left;
    margin-bottom: 0;
  }

  .navbar .btn {
    margin-inline: 0;
    margin-left: auto;
  }

  /* Language switcher responsive styles removed */



  .header {
    height: 110px;
  }

  .header.active {
    height: 110px;
  }

  /**
   * HERO
   */

  .hero {
    position: relative;
    min-height: 680px;
  }

  .hero-title,
  .hero-text {
    margin-bottom: 35px;
  }

  .shape {
    display: block;
    position: absolute;
    animation: rotate 8s linear infinite;
  }

  .shape-1 {
    top: 60px;
    left: 47%;
  }

  .shape-2 {
    top: 20%;
    right: 50px;
    animation-delay: 0.25s;
  }

  .shape-3 {
    left: 40%;
    bottom: 20%;
    animation-delay: 0.5s;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0);
    }

    100% {
      transform: rotate(1turn);
    }
  }



  /**
   * DESTINATION
   */

  .destination {
    --fs-4: 3.2rem;
    --fs-5: 2.6rem;
  }



  /**
   * ABOUT
   */

  .about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    gap: 80px;
  }

  .about-header {
    margin-bottom: 50px;
    max-width: 80%;
  }

  .about-buttons {
    margin-top: 40px;
  }

  /**
   * CONTACT
   */

  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }


  /**
   * FOOTER
   */

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

}





/**
 * responsive for larger than 1200px screen 
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1150px;
  }

  .hero .container {
    max-width: 1150px;
  }

  .header .container {
    max-width: 100%;
    padding-inline: 10px;
  }

  :is(.popular, .blog) .card-content {
    padding: 30px;
  }



  /**
   * HEADER
   */

  .navbar-list {
    gap: 50px;
  }



  /**
   * ABOUT
   */

  .about-wrapper {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
  }

}