/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --primary-blue: #1A4FA0;
  --primary-green: #2D7D32;
  --accent-orange: #E8500A;
  --light-bg: #F8F9FA;
  --dark-text: #1A1A2E;
  --white: #FFFFFF;
  --muted-text: #6C757D;
  --surface: #FFFFFF;
  --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 8px 32px rgba(0, 0, 0, 0.16);
  --nav-height: 76px;
  --max-width: 1200px;
  --transition: 0.3s ease;
  --border-radius: 12px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--white);
  padding-top: var(--nav-height);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.2rem); }

p {
  margin-bottom: 1rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION SPACING ===== */
.section {
  padding: 80px 0;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 16px;
  color: var(--primary-blue);
}

.section-header p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted-text);
  font-size: 1.1rem;
}

.section-header .accent-line {
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Section title/subtitle (alternate naming used on inner pages) */
.section__title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary-blue);
}

.section__subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
  color: var(--muted-text);
  font-size: 1.1rem;
}

.section__content {
  font-size: 1.05rem;
  line-height: 1.7;
}

.section__content--narrow {
  max-width: 800px;
  margin: 0 auto;
}

.section__content a {
  color: var(--primary-blue);
  font-weight: 600;
}

.section__content a:hover {
  color: var(--accent-orange);
}

.section__cta {
  text-align: center;
  margin-top: 30px;
}

.section__header {
  margin-bottom: 30px;
}

.section__header h2 {
  color: var(--primary-blue);
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

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

.btn--primary:hover {
  background-color: #d14a09;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
  background-color: #15408a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn--white:hover {
  background-color: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--light {
  background-color: var(--white);
  color: var(--primary-blue);
  font-weight: 700;
}

.btn--light:hover {
  background-color: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

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

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

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

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background-color: var(--primary-blue);
  z-index: 1000;
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background-color: #153d80;
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 50px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: width var(--transition);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__links a.active {
  color: var(--white);
  opacity: 1;
}

.navbar__links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  white-space: nowrap;
}

.navbar__phone svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-orange);
}

.navbar__phone:hover {
  color: var(--accent-orange);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 30px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-text);
  border-bottom: 1px solid var(--light-bg);
}

.mobile-nav a.active {
  color: var(--primary-green);
}

.mobile-nav__phone {
  margin-top: 20px;
  padding: 14px 0;
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.2rem;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(26,79,160,0.5) 100%);
  z-index: 1;
}

/* hero__overlay (used on some inner pages as a separate element) */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
}

.hero__content p {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  margin-bottom: 16px;
  opacity: 0.95;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  opacity: 0.95;
  margin-bottom: 16px;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  transition: color var(--transition);
}

.hero__phone:hover {
  color: var(--accent-orange);
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Inner-page hero — still full height per spec */
.hero--inner {
  min-height: 90vh;
}

.hero--inner .hero__content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

/* Hero text directly in container (mexico-destinations pattern) */
.hero > .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.hero > .container h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero > .container p {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  margin-bottom: 16px;
  opacity: 0.95;
  color: var(--white);
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  padding: 16px 0;
  background-color: var(--light-bg);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

/* Support for breadcrumb__list (index pattern) and direct children (inner pages) */
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.breadcrumb a,
.breadcrumb__list a {
  color: var(--primary-blue);
}

.breadcrumb a:hover,
.breadcrumb__list a:hover {
  color: var(--accent-orange);
}

.breadcrumb span,
.breadcrumb__list span {
  color: var(--muted-text);
}

/* Breadcrumb inside hero (legal pages) */
.hero .breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 16px;
}

.hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.hero .breadcrumb a:hover {
  color: var(--white);
}

.hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 4px solid var(--primary-blue);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body {
  padding: 24px;
  flex: 1;
}

.card__body h3 {
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.card__body p {
  color: var(--muted-text);
  font-size: 0.95rem;
}

.card__tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--light-bg);
  color: var(--primary-green);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== HOW IT WORKS STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 30px 16px;
  position: relative;
}

.step__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
  font-size: 1.6rem;
}

.step__number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.step p {
  color: var(--muted-text);
  font-size: 0.9rem;
}

/* ===== TRUST BADGES ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.trust-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.trust-item h4 {
  margin-bottom: 6px;
  color: var(--primary-blue);
}

.trust-item p {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent-orange);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__stars {
  color: #F5A623;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial p {
  font-style: italic;
  color: var(--muted-text);
  margin-bottom: 16px;
  flex: 1;
}

.testimonial__author {
  font-weight: 700;
  color: var(--dark-text);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E9ECEF;
  padding: 0;
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark-text);
  text-align: left;
}

.faq-item__question:hover {
  color: var(--primary-blue);
}

.faq-item__icon {
  font-size: 1.5rem;
  color: var(--accent-orange);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  color: var(--muted-text);
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #15408a 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  transition: color var(--transition);
}

.cta-banner .cta-phone:hover {
  color: var(--accent-orange);
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ===== DESTINATION GRIDS ===== */
.destination-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 4px solid var(--primary-blue);
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* When destination-card__image is the img itself */
img.destination-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* When destination-card__image is a div wrapper */
div.destination-card__image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.destination-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 1;
}

.destination-card__body {
  padding: 24px;
  flex: 1;
}

.destination-card__body h3 {
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.destination-card__body .tag {
  display: inline-block;
  padding: 3px 10px;
  background-color: rgba(45, 125, 50, 0.1);
  color: var(--primary-green);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.destination-card__body p {
  color: var(--muted-text);
  font-size: 0.93rem;
}

/* destination-card__content (alternate naming on inner pages) */
.destination-card__content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.destination-card__content h3 {
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.destination-card__content p {
  color: var(--muted-text);
  font-size: 0.93rem;
  flex: 1;
}

.destination-card__highlights {
  padding: 0 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.destination-card__highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.destination-card__highlights li,
.destination-card__highlights span {
  padding: 4px 10px;
  background-color: var(--light-bg);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--muted-text);
}

/* Highlights inside content (alternate pattern) */
.destination-card__content .destination-card__highlights {
  padding: 0;
  margin-top: auto;
  padding-top: 12px;
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E9ECEF;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--dark-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(26, 79, 160, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Contact form wrapper */
.contact-form-wrap {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent-orange);
}

.contact-form-wrap h2 {
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--muted-text);
  margin-bottom: 24px;
}

/* Contact info card */
.contact-info-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-blue);
}

.contact-info-card h3 {
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.contact-info-card__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-card__item:last-of-type {
  margin-bottom: 24px;
}

.contact-info-card__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.contact-info-card__item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--dark-text);
}

.contact-info-card__item a {
  color: var(--primary-blue);
  font-weight: 600;
}

.contact-info-card__item a:hover {
  color: var(--accent-orange);
}

.contact-info-card__item p {
  color: var(--muted-text);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-info-card__phone {
  display: block;
  font-size: 1.1rem;
}

.contact-info-card__note {
  background: var(--light-bg);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.contact-info-card__note p {
  color: var(--muted-text);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.contact-info-card__links {
  border-top: 1px solid #E9ECEF;
  padding-top: 20px;
}

.contact-info-card__links h4 {
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.contact-info-card__links a {
  display: block;
  padding: 6px 0;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-info-card__links a:hover {
  color: var(--accent-orange);
}

/* Legacy contact-info pattern (from original CSS) */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-item__text h4 {
  margin-bottom: 2px;
}

.contact-info-item__text p {
  color: var(--muted-text);
  margin-bottom: 0;
}

.contact-info-item__text a {
  color: var(--primary-blue);
  font-weight: 600;
}

.contact-info-item__text a:hover {
  color: var(--accent-orange);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer__brand p {
  opacity: 0.85;
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: var(--white);
  font-size: 1rem;
}

.footer__social a:hover {
  background: var(--accent-orange);
}

.footer h4 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1rem;
}

.footer__links a {
  display: block;
  padding: 5px 0;
  opacity: 0.8;
  font-size: 0.95rem;
  transition: opacity var(--transition), padding-left var(--transition);
}

.footer__links a:hover {
  opacity: 1;
  padding-left: 6px;
  color: var(--accent-orange);
}

.footer__contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  opacity: 0.85;
  font-size: 0.95rem;
}

.footer__contact-info a {
  color: var(--white);
  opacity: 0.85;
}

.footer__contact-info a:hover {
  opacity: 1;
  color: var(--accent-orange);
}

.footer__ai-summary {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__ai-summary p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 4px;
}

.footer__bottom a {
  color: var(--white);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer__bottom a:hover {
  opacity: 1;
  color: var(--accent-orange);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  padding: 80px 0;
}

.legal-content .container {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content__updated {
  color: var(--muted-text);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--primary-blue);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
}

.legal-content p {
  color: var(--muted-text);
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 10px 0 20px 24px;
  list-style: disc;
}

.legal-content ul li {
  color: var(--muted-text);
  margin-bottom: 6px;
  line-height: 1.7;
}

.legal-content .contact-box {
  background: var(--light-bg);
  padding: 24px;
  border-radius: var(--border-radius);
  margin-top: 30px;
}

.legal-content .contact-box p {
  margin-bottom: 4px;
}

.legal-content a {
  color: var(--primary-blue);
  font-weight: 600;
}

.legal-content a:hover {
  color: var(--accent-orange);
}

/* ===== PACKAGE INFO ===== */
.package-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.package-info-item,
.package-info__item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-left: 4px solid var(--primary-green);
}

.package-info-item h4,
.package-info__item h3 {
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.package-info-item p,
.package-info__item p {
  color: var(--muted-text);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.package-info__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-blue);
}

.package-info__item a {
  color: var(--primary-blue);
  font-weight: 600;
}

.package-info__item a:hover {
  color: var(--accent-orange);
}

/* ===== CATEGORY CARDS (VIP Packages) ===== */
.category-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* When category-card__image is the img itself */
img.category-card__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* When category-card__image is a div wrapper */
div.category-card__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.category-card__content {
  padding: 24px;
  flex: 1;
}

.category-card__content h3 {
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.category-card__content p {
  color: var(--muted-text);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.category-card__duration {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(45, 125, 50, 0.1);
  color: var(--primary-green);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.category-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 30px 24px;
  color: var(--white);
}

.category-card__overlay h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.category-card__overlay p {
  opacity: 0.9;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

/* ===== STEP DETAIL (How It Works page) ===== */
.step-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}

.step-detail__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-detail__content h3 {
  margin-bottom: 10px;
  color: var(--primary-blue);
  font-size: 1.3rem;
}

.step-detail__content p {
  color: var(--muted-text);
  margin-bottom: 8px;
}

.step-detail__content a {
  color: var(--primary-blue);
  font-weight: 600;
}

.step-detail__content a:hover {
  color: var(--accent-orange);
}

/* ===== ABOUT VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--primary-blue);
}

.value-card h3 {
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.value-card p {
  color: var(--muted-text);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== IMAGE FEATURE (Bonus Travel) ===== */
.image-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-feature__img img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.image-feature__content h2 {
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.image-feature__content p {
  color: var(--muted-text);
  line-height: 1.7;
}

.image-feature__content a {
  color: var(--primary-blue);
  font-weight: 600;
}

.image-feature__content a:hover {
  color: var(--accent-orange);
}

/* ===== AI SUMMARY BLOCK (About page) ===== */
.ai-summary-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ai-summary-block p {
  color: var(--muted-text);
  line-height: 1.7;
}

.ai-summary-block a {
  color: var(--primary-blue);
  font-weight: 600;
}

.ai-summary-block a:hover {
  color: var(--accent-orange);
}

/* ===== NOTE / INTRO BLOCKS ===== */
.note {
  background: var(--light-bg);
  padding: 24px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-blue);
}

.note p {
  color: var(--muted-text);
  margin-bottom: 0;
  line-height: 1.7;
}

.note a {
  color: var(--primary-blue);
  font-weight: 600;
}

.note a:hover {
  color: var(--accent-orange);
}

.intro {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.intro p {
  color: var(--muted-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-content {
  text-align: center;
  padding: 80px 20px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thank-you-content .checkmark,
.thank-you-content__checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  margin: 0 auto 24px;
}

.thank-you-content__checkmark svg {
  color: var(--white);
}

.thank-you-content h1 {
  margin-bottom: 16px;
}

.thank-you-content p {
  max-width: 500px;
  margin: 0 auto 24px;
  color: var(--muted-text);
  font-size: 1.1rem;
}

.thank-you-content__phone {
  font-weight: 600;
}

.thank-you-content__phone a {
  color: var(--primary-blue);
  font-weight: 700;
}

.thank-you-content__phone a:hover {
  color: var(--accent-orange);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1023px) {
  .section {
    padding: 50px 0;
  }

  .legal-content {
    padding: 50px 0;
  }

  .navbar__links {
    display: none;
  }

  .navbar__phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .hero--inner {
    min-height: 70vh;
  }

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

  .grid-4,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .step-detail {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .image-feature {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --nav-height: 66px;
  }

  .hero {
    min-height: 70vh;
  }

  .hero--inner {
    min-height: 70vh;
  }

  .hero__phone {
    font-size: 1.4rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .trust-grid,
  .testimonial-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-detail {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .step-detail__number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  div.category-card__image {
    height: 200px;
  }

  img.category-card__image {
    height: 200px;
  }

  .package-info {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 50px 20px;
  }

  .cta-banner .cta-phone {
    font-size: 1.4rem;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .image-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .navbar__logo img {
    height: 40px;
  }
}
