/* ==========================================================================
   Structural Core Baseline Settings
   ========================================================================== */
body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

.container-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Hero Slider Sizing Controls (Shortened Viewport System Layout)
   ========================================================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 48vh; 
  min-height: 380px;
  background-color: #0f172a;
  overflow: hidden;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 40%;
  position: relative;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 36, 0.4);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  color: #ffffff;
  z-index: 5;
}

.slide-title {
  font-family: 'Lato', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  margin: 0 0 14px 0;
  letter-spacing: 0.5px;
}

.slide-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 5px 16px;
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* Forced Action Break Wrapper to trigger a clean new line layout */
.slide-actions {
  display: block;
  width: 100%;
  margin-top: 4px;
}

.btn-slide {
  display: inline-block;
  background-color: #1d3d8c;
  color: #ffffff !important;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 12px 26px;
  letter-spacing: 1px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border-radius: 2px;
}

.btn-slide:hover {
  background-color: #2563eb;
  transform: translateY(-0.5px);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #ffffff;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease;
}

.slider-dot.active {
  background-color: #f59e0b;
  border-color: #f59e0b;
}

/* ==========================================================================
   Tagline Section
   ========================================================================== */
.hero-tagline {
  padding: 30px 0 15px;
  background-color: #ffffff;
}

.tagline-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tagline-text {
  font-family: 'Lato', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #444444;
  white-space: nowrap;
}

.tagline-accent-line {
  flex-grow: 1;
  height: 1px;
  background-color: #e2e8f0;
}

/* ==========================================================================
   Squeezed 4-Column Category Grid (Hard-Locked Low Height Configuration)
   ========================================================================== */
.destinations-section {
  padding: 0 0 35px 0;
  background-color: #ffffff;
}

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

.destination-card {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  overflow: hidden;
}

.destination-image {
  width: 100%;
  height: 90px; /* Squeezed lower profile layout height lock */
  background-size: cover;
  background-position: center;
  background-color: #cbd5e1;
  transition: opacity 0.2s ease;
}

.destination-card:hover .destination-image {
  opacity: 0.9;
}

.destination-meta {
  padding: 12px 0;
  text-align: center;
  background-color: #ffffff;
}

.destination-country {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2a4a;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}

/* ==========================================================================
   Integrated Double Column Blue Testimonial Contact Strip Block
   ========================================================================== */
.testimonials-banner-section {
  background-color: #113885;
  color: #ffffff;
  padding: 45px 0;
  width: 100%;
  box-sizing: border-box;
}

.banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.banner-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-shrink: 0;
  width: 220px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 40px;
}

.brand-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.vertical-pipe {
  width: 1px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.25);
}

.btn-banner-contact {
  display: block;
  text-align: center;
  width: 100%;
  background-color: #518ee2;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.btn-banner-contact:hover { background-color: #3b7ad3; }

.banner-right {
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.testimonial-slides-wrap {
  position: relative;
  width: 100%;
  min-height: 65px;
}

.t-slide { display: none; }
.t-slide.active { display: block; }

.t-quote {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  line-height: 1.55;
  font-weight: 400;
  margin: 0 0 8px 0;
}

.t-author {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.t-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.t-dot.active { background-color: #ffffff; border-color: #ffffff; }

/* ==========================================================================
   Media Query Adaptations
   ========================================================================== */
.home-contact-strip {
  padding: 24px 0;
  background-color: #f9fafb;
  color: #102a43;
}

.home-contact-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  text-align: center;
}

.contact-strip-message {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  width: 100%;
}

.contact-strip-phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-person a {
  color: #1d3d8c;
  text-decoration: none;
}

.contact-person a:hover {
  text-decoration: underline;
}

.phone-separator {
  display: inline-block;
  color: rgba(16, 42, 67, 0.6);
  margin: 0 12px;
}

@media (max-width: 992px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .banner-inner { flex-direction: column; gap: 30px; }
  .banner-left { border-right: none; padding-right: 0; width: 100%; max-width: 240px; }
}

@media (max-width: 640px) {
  .hero-slider { height: 280px; min-height: auto; }
  .slide-title { font-size: 2.2rem; }
  .tagline-text { font-size: 1.05rem; white-space: normal; text-align: center; }
  .tagline-wrap { flex-direction: column; }
  .tagline-accent-line { width: 100%; height: 1px; }
  .destinations-grid { grid-template-columns: 1fr; }
}