/* ==========================================================================
   Base Configurations & General Resets
   ========================================================================== */
body {
  background: #f8fafc;
  color: #334155;
}

.page-hero {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.page-hero-image {
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1551632811-561732d1e306?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.25);
}

.page-body {
  background-color: #f8fafc;
  padding: 60px 0 80px;
}

/* Structural Two-Column Layout */
.page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 50px;
  align-items: start;
}

/* Typography elements */
.section-title {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.agency-text {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

.agency-text strong {
  font-weight: 700;
  color: #0f172a;
}

.agency-text a,
.agency-text .highlight {
  font-weight: 700;
  color: #1d3d8c;
}

/* ==========================================================================
   LEFT COLUMN: Info Box Overhaul
   ========================================================================== */
.info-box {
  background-color: #1d3d8c;
  border-radius: 12px;
  padding: 36px 30px;
  margin-top: 20px;
  box-shadow: 0 10px 25px -5px rgba(29, 61, 140, 0.15);
}

.info-box h3 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.info-box p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 8px;
}

.info-box p a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
  transition: color 0.2s, border-color 0.2s;
}

.info-box p a:hover {
  color: #f59e0b;
  border-bottom-color: #f59e0b;
}

.info-box .call-label {
  font-weight: 700;
  color: #f59e0b;
  margin-top: 20px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.info-box .divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 24px 0;
}

/* Terms and Conditions Button */
.btn-conditions {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background-color: transparent;
  color: #f59e0b !important;
  border: 2px solid #f59e0b;
  text-decoration: none !important;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-conditions:hover {
  background-color: #f59e0b;
  color: #1d3d8c !important;
}

/* Trek Quick-Links Layout Matrix */
.trek-links {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-trek {
  display: block;
  text-align: center;
  padding: 12px 10px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-trek:hover {
  background-color: #ffffff;
  color: #1d3d8c !important;
  transform: translateY(-2px);
}

/* High Contrast Social Icons Row */
.social-icons {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  border-radius: 50%;
  font-size: 1.1rem;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.social-icons a:hover {
  background-color: #f59e0b;
  color: #1d3d8c !important;
  transform: scale(1.1);
}

/* ==========================================================================
   RIGHT COLUMN: Media, Call-to-actions, Testimonials
   ========================================================================== */
.agency-slider {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.agency-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.agency-slide {
  flex: 0 0 100%;
  height: 340px;
  background-size: cover;
  background-position: center;
}

.agency-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0f172a;
  font-size: 0.95rem;
  transition: background-color 0.2s;
  z-index: 5;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.agency-slider-arrow:hover {
  background-color: #ffffff;
}

.agency-slider-prev { left: 16px; }
.agency-slider-next { right: 16px; }

.btn-contact-agency {
  display: inline-block;
  padding: 14px 32px;
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: background-color 0.2s, transform 0.2s;
  margin-bottom: 50px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-contact-agency:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

/* Modern Cards Grid for Testimonials */
.agency-testimonials {
  margin-bottom: 50px;
}

.agency-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background-color: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d3d8c;
  font-size: 1.1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

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

.testimonial-meta strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
}

.testimonial-location {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2px;
}

.testimonial-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
  font-style: italic;
  margin: 0;
}

.testimonial-card.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
}

/* Corporate Ethics Sections */
.ethics-title {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  margin-top: 10px;
}

.ethics-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

.ethics-text a,
.ethics-text .hl {
  font-weight: 700;
  color: #1d3d8c;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 61, 140, 0.2);
}

.ethics-text a:hover,
.ethics-text .hl:hover {
  color: #2563eb;
}

.ethics-text .hl-bold {
  font-weight: 700;
  color: #0f172a;
}

.ethics-text .closing {
  font-weight: 700;
  color: #1d3d8c;
  display: block;
  padding: 16px;
  background-color: #eff6ff;
  border-left: 4px solid #1d3d8c;
  border-radius: 0 8px 8px 0;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 960px) {
  .page-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .page-hero {
    height: 200px;
  }
  .info-box {
    padding: 24px 20px;
  }
  .trek-links {
    grid-template-columns: 1fr;
  }
}