/* ============================================
   VACACIONESPOR - Clean Static HTML/CSS/JS
   ============================================ */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 93.75%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #4B4F58;
  background-color: #F5F5F5;
}

/* ============================================
   COLORS & VARIABLES
   ============================================ */
:root {
  --primary-color: #0170B9;
  --primary-hover: #005AA6;
  --primary-dark: #004987;
  --secondary-color: #2FB3D0;
  --tertiary-color: #3B8CFF;
  --text-dark: #4B4F58;
  --text-light: #3a3a3a;
  --bg-light: #F5F5F5;
  --bg-white: #FFFFFF;
  --border-color: #DDDDDD;
  --accent-teal: #2FB3D0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #2D2D2D;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.67rem;
  line-height: 1.4;
}

h2 {
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 700;
}

h3 {
  font-size: 1.67rem;
  line-height: 1.2;
}

h4 {
  font-size: 1.33rem;
  font-weight: 600;
}

h5 {
  font-size: 1.2rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a.active {
  color: var(--primary-color);
}
/* a:hover,
a:focus {
  color: var(--primary-hover);
} */

blockquote {
  color: #40464D;
  padding: 1.2em;
  border-left: 4px solid var(--primary-color);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.flex-end {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-top {
  padding: 10px 15px;
  border-bottom: 1px solid var(--border-color);
}

.header-main {
  padding: 15px 0;
}

.logo {
  display: inline-block;
  max-width: 200px;
  height: auto;
}

.logo img {
  max-width: 100%;
  height: auto;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.language-switcher {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.language-switcher img {
  width: 20px;
  height: auto;
}

.call-button {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    background-color: var( --tertiary-color );
    border-radius: 8px 8px 8px 8px;
    box-shadow: 0px 0px 27px 0px rgba(0,0,0,0.12);
    padding: 15px 30px;
    color: white;
    border: none;
    line-height: 15px;
}

.call-button:hover {
  background-color: var(--primary-hover);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
              url('../images/hero-bg.webp') center/cover no-repeat; */
  background-image: url("../images/ndob3sleep2t3yoye95v.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  color: white;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  height: 100vh;
  text-align: center;
}

.hero-content {
    background-color: RGBA(0,0,0,0.58);
    padding: 60px;
    width: 1000px;
    border-radius: 8px;
}

.hero h1 {
  color: white;
  font-size: 2.3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}

.hero p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 50px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-teal);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-hover);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--primary-dark);
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
}

/* ============================================
   SECTIONS & PADDING
   ============================================ */
.section {
  padding: 60px 0;
}

.section-small {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.85rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #6C7C8C;
  font-size: 1.1rem;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-white {
  background-color: var(--bg-white);
}

/* ============================================
   OFFERS CAROUSEL
   ============================================ */
.offers-carousel {
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.offers-carousel::-webkit-scrollbar {
  height: 8px;
}

.offers-carousel::-webkit-scrollbar-track {
  background: var(--bg-light);
}

.offers-carousel::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.carousel-items {
  display: flex;
  column-gap: 5px;
}

.offer-card {
  /* background: white; */
  /* border-radius: 8px; */
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* cursor: pointer; */
  position: relative;
  width: 224px;
  height: 440px;
}

.offer-card.puntacana-card {
  background: url("../images/puntacana.jpg") center/cover no-repeat;
}
.offer-card.tulum-card {
  background: url("../images/tulum-mexico.jpg") center/cover no-repeat;
}
.offer-card.colombia-card {
  background: url("../images/colombia.jpg") center/cover no-repeat;
}
.offer-card.turquia-card {
  background: url("../images/turquia.webp") center/cover no-repeat;
}
.offer-card.orlando-card {
  background: url("../images/orlando2.webp") center/cover no-repeat;
}

/* .offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
} */

.offer-image {
  width: 100%;
  /* aspect-ratio: 16 / 10; */
  overflow: hidden;
  background: var(--bg-light);
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.05);
}

.offer-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(13,13,13,0.8547794117647058) 0%, rgba(255,255,255,0) 100%);
  color: white;
  padding: 20px;
  font-size: 1.465rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 26.4px;
  letter-spacing: 4px;
}

.offer-price {
    position: absolute;
    bottom: 310px;
    left: 115px;
    right: 0;
    background: #ffffff;
    color: white;
    padding: 5px 12px;
    text-align: center;
    border-radius: 35px 0px 0px 35px;
    /* text-align: right; */
    width: 128px;
    color: black;
}

.offer-price-value {
  font-size: 1.35rem;
  font-weight: 600;
  color: #3B8CFF;
  line-height: 25px;
}

.offer-price-label {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 600;
    color: #3a3a3a;
}

/* ============================================
   DESTINATION CARDS
   ============================================ */
.destination-section {
  background-color: #F2F2F2;
}

.destination-section .section-title p {
  color: #005AA6;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  line-height: 15px;
}

.destination-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 8px -5px rgba(151,163,184,0.5),0 15px 16px -15px rgba(151,163,184,0.5),0 25px 32px -25px rgba(151,163,184,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 353px;
  margin: auto;
  border-bottom: 3px solid rgb(42, 147, 168);
}

.destination-card:hover {
  /* transform: translateY(-8px); */
  box-shadow: none;
}

.destination-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-light);
  height: 198px;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-content {
  padding: 25px;
  height: 380px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.destination-content h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.destination-description {
  color: #4e4a67;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 24px;
  font-weight: 500;
}

.destination-duration {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  /* position: absolute; */
  bottom: 25px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgb(42, 147, 168);
}

.destination-duration img {
  height: auto;
}

.destination-duration span {
  font-size: 1.1rem;
  font-weight: 500;
}

/* ============================================
   FEATURES LIST
   ============================================ */ 
#free-consultation .consultation-form-section h3 {
    text-align: center;
    text-transform: uppercase;
    width: 62%;
    margin: auto;
    font-size: 1.5rem;
    line-height: 30px;
    margin-bottom: 1.5rem;
    color: #005AA6;
    font-weight: 700;
}

/* ============================================
   WHY CHOOSE US BOXES
   ============================================ */
.why-box {
  color: white;
  padding: 125px 10px;
  /* border-radius: 8px; */
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* border-top: 4px solid var(--primary-color); */
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

#why-title {
  font-size: 2rem;
}

.why-box.odd {
  background-color: var(--tertiary-color);
}

.why-box.even {
  background-color: var(--primary-hover);
}

/* .why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
} */

.why-box h3 {
  /* margin-bottom: 1rem; */
  color: #fff;
}

.why-box p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.box-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 1rem auto;
}

/* ============================================
   FORM STYLES
   ============================================ */
form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(1, 112, 185, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

#testimonials-title {
  font-size: 2rem;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-light);
}

.star-rating {
  color: #F0AD4E;
  letter-spacing: 2px;
  font-size: 1.5rem;
}

.testimonial-text {
  color: #6C7C8C;
  font-style: italic;
  line-height: 1.7;
}

/* .testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
} */

.testimonial-card {
  width: 344px !important;
  height: auto !important;
}

.swiper {
  width: 100%;
  height: 100%;
}

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */
.newsletter-section {
  /* background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
  color: white; */
  background-color: #fff;
  padding: 60px 0;
}

.newsletter-content {
  text-align: center;
}

.newsletter-section .container {
  display: flex !important;
}

.newsletter-section h2 {
  color: #2d2d2d;
  margin-bottom: 1rem;
  font-size: 43px;
  line-height: 53.8px;
}

.newsletter-section p {
  color: #7e7e7e;
  margin-bottom: 2rem;
  font-size: 15px;
  font-family: "Montserrat", Sans-serif;
}

.newsletter-form {
  display: flex;
  align-items: center;
  /* grid-template-columns: 1fr auto; */
  /* gap: 1rem; */
  max-width: 500px;
  /* margin: 0; */
}

.newsletter-form input {
  padding: 13px 15px;
  /* border: none; */
  border-radius: 0px;
  font-size: 1rem;
  width: 380px;
}

.newsletter-form button {
  padding: 15px 30px;
  background: #3A3A3A;
  color: #FFF;
  border: none;
  border-radius: 0px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--primary-hover);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: #1F1C31;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
 /*  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.footer-section {
  font-weight: 700;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-section a {
  color: #FFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-section.follow-us {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;

  a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.footer-section.slogan {
  text-align: right;

  p {
    margin-bottom: 0;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.3rem;
  }
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  /* margin-top: 1rem; */
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #3b8cff;
  border-radius: 50%;
  transition: background 0.3s ease;
  position: relative;
}

.social-links a span {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.social-links a:hover {
  background: rgba(59, 140, 255, 0.9);
  color: white;
}

/* .footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-copyright {
  display: block;
  margin-bottom: 0.5rem;
} */

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* ============================================
   TABLET SCREENS (769px - 1024px)
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 25px;
  }

  html {
    font-size: 91%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero {
    min-height: 450px;
  }

  .hero-content {
    width: 95%;
    padding: 40px;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .offer-card {
    width: 250px;
    height: 380px;
  }

  .newsletter-form {
    flex-direction: row;
    gap: 1rem;
  }

  .newsletter-form input {
    flex: 1;
    width: auto;
  }

  .why-box {
    padding: 60px 15px;
  }

  .destination-card {
    width: auto;
  }
}

/* ============================================
   MOBILE & SMALL SCREENS (768px and below)
   ============================================ */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-color);
    padding: 5px;
  }

  /* Make nav absolute positioned for mobile menu */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white, #fff);
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: none !important; /* Hidden by default */
    width: 100%;
    margin: 0;
    padding: 0;
  }

  nav ul.active {
    display: flex !important; /* Show when active */
  }

  nav li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  nav a {
    display: block;
    padding: 1rem;
    width: 100%;
  }

  .call-button {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  html {
    font-size: 88%;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  .hero {
    padding: 60px 0;
    min-height: 400px;
    height: auto;
  }

  .hero-content {
    width: auto;
    padding: 30px 20px;
    max-width: 95%;
  }

  .hero h1 {
    font-size: 1.5rem;
    text-transform: uppercase;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    font-size: 0.95rem;
  }

  .section {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title p {
    font-size: 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .newsletter-form input {
    padding: 12px 12px;
    font-size: 1rem;
  }

  .newsletter-form button {
    padding: 12px 20px;
  }

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

  .destination-image {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .destination-card {
    width: auto;
    max-width: 100%;
  }

  .destination-content {
    height: auto;
    padding: 20px;
  }

  .destination-content h3 {
    font-size: 1.1rem;
  }

  .destination-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .offer-card {
    width: 250px;
    height: 350px;
  }

  .offer-title {
    font-size: 1.2rem;
    padding: 15px;
  }

  .offer-price {
    bottom: 260px;
    left: 90px;
    width: 110px;
    padding: 4px 10px;
  }

  .offer-price-value {
    font-size: 1.2rem;
  }

  .offer-price-label {
    font-size: 0.75rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .why-box {
    padding: 40px 15px;
  }

  .why-box h3 {
    font-size: 1.1rem;
  }

  .why-box p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .language-switcher {
    flex-direction: row;
    gap: 0.5rem;
  }

  .language-switcher img {
    width: 16px;
  }

  .language-switcher span {
    display: none;
  }

  .header-top {
    padding: 0.5rem 1rem;
  }

  .call-button {
    display: none;
  }

  form {
    max-width: 100%;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  label {
    font-size: 0.95rem;
  }

  input,
  textarea,
  select {
    font-size: 16px;
    padding: 10px 12px;
  }

  /* nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  nav ul {
    padding: 1rem 0;
  } */
}

/* ============================================
   SMALL MOBILE SCREENS (480px and below)
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  html {
    font-size: 85%;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 0.95rem;
  }

  h4 {
    font-size: 0.9rem;
  }

  h5 {
    font-size: 0.85rem;
  }

  .hero {
    padding: 40px 0;
    min-height: 300px;
    height: auto;
  }

  .hero-content {
    padding: 20px 15px;
    width: 100%;
    border-radius: 4px;
  }

  .hero h1 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .hero p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    width: 100%;
  }

  .section {
    padding: 25px 0;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .section-title h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .section-title p {
    font-size: 0.9rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .carousel-items {
    grid-auto-columns: minmax(180px, 1fr);
    gap: 0.5rem;
  }

  .offer-card {
    width: 220px;
    height: 300px;
  }

  .offer-title {
    font-size: 1rem;
    padding: 10px;
    line-height: 1.2;
  }

  .offer-price {
    bottom: 200px;
    left: 70px;
    width: 100px;
    padding: 3px 8px;
  }

  .offer-price-value {
    font-size: 1rem;
  }

  .offer-price-label {
    font-size: 0.7rem;
  }

  .destination-card {
    width: 100%;
    max-width: 100%;
  }

  .destination-content {
    height: auto;
    padding: 15px;
  }

  .destination-content h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .destination-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }

  .destination-duration {
    font-size: 0.8rem;
    padding-top: 0.75rem;
    gap: 0.25rem;
  }

  .destination-image {
    aspect-ratio: 16 / 10;
    height: 140px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .newsletter-form input {
    width: 100%;
    padding: 10px 10px;
    font-size: 16px;
  }

  .newsletter-form button {
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .newsletter-section h2 {
    font-size: 1.4rem;
  }

  .newsletter-section p {
    font-size: 0.85rem;
  }

  .testimonials-carousel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-box {
    padding: 30px 12px;
  }

  #why-title {
    font-size: 1.3rem;
  }

  .why-box h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .why-box p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
  }

  .box-line {
    margin: 0.75rem auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  footer {
    padding: 25px 0 10px;
  }

  footer h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  footer a,
  footer p {
    font-size: 0.85rem;
  }

  .language-switcher {
    gap: 0.3rem;
  }

  .language-switcher img {
    width: 14px;
    height: auto;
  }

  .language-switcher span {
    display: none;
  }

  .language-link {
    padding: 0.3rem;
    font-size: 0.8rem;
  }

  form {
    max-width: 100%;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  input,
  textarea,
  select {
    font-size: 16px;
    padding: 9px 10px;
    border-radius: 3px;
  }

  textarea {
    resize: vertical;
    min-height: 100px;
  }

  input:focus,
  textarea:focus,
  select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 112, 185, 0.1);
  }

  .call-button {
    display: none;
  }

  .mobile-menu-toggle {
    font-size: 1.3rem;
  }

  /* Improve touch targets on mobile */
  a, button, input[type="button"], input[type="submit"] {
    min-height: 44px;
    min-width: 44px;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}
