/* ===========================
   VIA FORWARDING – Site CSS
   (replaces WP-generated inline styles + adds carousel/interactive logic)
   =========================== */

/* Google Fonts – self-hosted via browser cache */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  color: #2e353e;
  background: #fff;
}
a { color: #61142e; text-decoration: none; }
a:hover { color: #4e6491; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 { margin-top: 0; }

/* ---------- Hero Slider ---------- */
#hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 420px;
  overflow: hidden;
  background: #1d2127;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
}
.slide-caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 15%;
  color: #fff !important;
  margin: 0;
}
.slide-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 50px;
}
.slide-icon {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
}
.slide-icon img {
  max-width: 250px;
  height: auto;
}
.slide-text {
  flex: 0 0 50%;
  text-align: left;
}
.slide-caption h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #fff !important;
}
.slide-caption p {
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
  color: #fff !important;
}

/* Slider arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 0;
  font-size: 1.3rem;
  color: #2e353e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover { background: #fff; }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }
.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.slider-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.slider-dots button.active { background: #fff; }

/* ---------- Header ---------- */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px;
}
.logo img { max-width: 80px; max-height: 60px; width: auto; height: auto; }
.logo a { display: block; }

/* Nav */
#main-menu ul {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
}
#main-menu ul li a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #2e353e;
  transition: color 0.2s;
  white-space: nowrap;
}
#main-menu ul li a:hover { color: #61142e; }
#main-menu ul li.phone-link a {
  color: #6a80a9;
  font-weight: 700;
}
#main-menu ul li.phone-link a i { margin-right: 5px; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2e353e;
  padding: 4px 8px;
}

/* Mobile nav panel */
#nav-panel {
  display: none;
  position: fixed;
  top: 70px; right: 0;
  width: 260px;
  background: #fff;
  z-index: 999;
  box-shadow: -4px 4px 16px rgba(0,0,0,0.12);
  padding: 20px 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
#nav-panel.open {
  display: block;
  transform: translateX(0);
}
#nav-panel ul { padding: 0; }
#nav-panel ul li a {
  display: block;
  padding: 12px 24px;
  color: #2e353e;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
}
#nav-panel ul li a:hover { color: #61142e; background: #f8f9fb; }

/* ---------- Intro Bar ---------- */
.home-intro {
  background: #25272c;
  padding: 18px 0;
}
.home-intro .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.home-intro p {
  color: #c6d4ee;
  margin: 0;
  font-size: 0.95rem;
}
.btn-primary-custom {
  display: inline-block;
  padding: 12px 24px;
  background: #61142e;
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  border-radius: 2px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-primary-custom:hover { background: #5b6f98; color: #fff !important; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) { .container { max-width: 750px; } }
@media (min-width: 992px) { .container { max-width: 970px; } }
@media (min-width: 1200px) { .container { max-width: 1170px; } }

/* ---------- Row / Columns ---------- */
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
[class*="col-"] { padding: 0 15px; }
.col-md-12 { width: 100%; }
.col-md-6 { width: 50%; }
.col-md-4 { width: 33.333%; }
.col-md-3 { width: 25%; }
.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333%; }
.col-lg-6 { width: 50%; }
@media (max-width: 991px) {
  .col-md-6, .col-lg-6 { width: 100%; }
  .col-md-4 { width: 100%; }
  .col-md-3 { width: 50%; }
  .col-lg-3, .col-lg-4 { width: 100%; }
}
@media (max-width: 575px) {
  .col-md-3 { width: 100%; }
}

/* ---------- Sections ---------- */
section { padding: 60px 0; }
section.bg-light { background: #f4f4f4; }
section.bg-primary-color { background: #61142e; }
section.bg-dark { background: #25272c; }
.section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2e353e;
}
.section-subtitle {
  text-align: justify;
  max-width: 860px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Parallax Sections ---------- */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.parallax-overlay {
  background: rgba(255,255,255,0.88);
  padding: 60px 0;
}
.parallax-overlay.dark { background: rgba(29,33,39,0.88); }

/* ---------- Who We Are / Split sections ---------- */
.split-section {
  display: flex;
  flex-wrap: wrap;
}
.split-section .split-content {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-section .split-image {
  background-size: cover;
  background-position: center;
  min-height: 315px;
}
.split-content h2 {
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.split-content p { line-height: 1.8; text-align: justify; }

/* ---------- Stats ---------- */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  background: #61142e;
  padding: 50px 0;
}
.stat-item {
  flex: 1 1 25%;
  text-align: center;
  color: #fff;
  padding: 20px;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: #fff;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .stat-item { flex: 1 1 50%; }
}

/* ---------- Services ---------- */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.service-box {
  flex: 1 1 calc(33.333% - 30px);
  padding: 30px 20px;
  text-align: center;
}
.service-box i {
  font-size: 2rem;
  color: #333;
  margin-bottom: 14px;
  display: block;
}
.service-box h3 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-box p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  text-align: justify;
}
@media (max-width: 767px) {
  .service-box { flex: 1 1 100%; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-box { flex: 1 1 50%; }
}

/* ---------- Checklist Section ---------- */
.checklist-section {
  background: url('../images/parallax-6.jpg') center/cover fixed;
}
.checklist-inner {
  background: rgba(0,0,0,0.88);
  padding: 60px 0;
}
.checklist-inner h2 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.info-list { padding: 0; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.info-list li i {
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Contact / Directory ---------- */
.contact-row {
  display: flex;
  flex-wrap: wrap;
}
.contact-col {
  flex: 1 1 50%;
  padding: 60px 40px;
}
.contact-col.bg-primary { background: #61142e; }
.contact-col.bg-secondary { background: #4e6491; }
.contact-col h2 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-col p { color: #c6d4ee; font-size: 0.9rem; line-height: 1.7; }
.contact-col a { color: #fff; }
.contact-col a:hover { color: #c6d4ee; }
@media (max-width: 767px) {
  .contact-col { flex: 1 1 100%; padding: 40px 20px; }
}

/* Contact Form */
.contact-form .form-group { position: relative; margin-bottom: 14px; }
.contact-form .form-group i {
  position: absolute;
  top: 10px;
  left: 0;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 8px 10px 8px 26px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: rgba(255,255,255,0.8); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #c6d4ee; }
.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-form button[type="submit"] {
  margin-top: 18px;
  padding: 13px 35px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 2px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.contact-form button[type="submit"]:hover { background: rgba(255,255,255,0.3); }
.form-message {
  display: none;
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
  font-size: 13px;
}
.form-message.success { background: rgba(255,255,255,0.15); color: #fff; display: block; }
.form-message.error { background: rgba(220,53,69,0.3); color: #fff; display: block; }

/* Directory */
.directory-entry { margin-bottom: 24px; }
.directory-entry strong { color: #c6d4ee; display: block; margin-bottom: 4px; }

/* ---------- Footer ---------- */
#footer { background: #2e353e; color: #999; }
.footer-main { padding: 40px 0 20px; }
.footer-widget { margin-bottom: 20px; }
.footer-widget h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-widget p, .footer-widget address {
  font-size: 13px;
  line-height: 1.8;
  font-style: normal;
  color: #999;
}
.footer-widget ul li a { color: #999; font-size: 13px; }
.footer-widget ul li a:hover { color: #fff; }
.footer-widget img { max-width: 100px; }
.footer-bottom {
  border-top: 1px solid #3e4550;
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: #666;
}

/* ---------- Scroll-to-top ---------- */
#scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 42px;
  height: 42px;
  background: #61142e;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s, opacity 0.3s;
}
#scroll-top:hover { background: #5b6f98; }
#scroll-top.visible { display: flex; }

/* ---------- Page: Aviso Legal ---------- */
.page-content-wrapper {
  padding-top: 100px;
  min-height: calc(100vh - 180px);
}
.page-content-wrapper .container { padding: 40px 15px; }
.page-content-wrapper h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-content-wrapper p {
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 16px;
  color: #555;
}

/* ---------- Utilities ---------- */
.text-color-light { color: #c6d4ee; }
.text-color-dark { color: #2e353e; }
.text-uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }
.m-b-md { margin-bottom: 24px; }
.m-b-lg { margin-bottom: 32px; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

/* ---------- Mobile ---------- */
@media (max-width: 991px) {
  #main-menu { display: none; }
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .split-section .split-content,
  .split-section .split-image { width: 100%; }
  .split-section .split-image { min-height: 200px; }
}
@media (max-width: 767px) {
  #hero-slider { height: 60vh; min-height: 320px; }
  .slide-caption { padding: 0 8% 0 8%; }
  .slide-content { flex-direction: column; gap: 20px; }
  .slide-icon, .slide-text { flex: 0 0 100%; text-align: center; justify-content: center; }
  .slide-icon img { max-width: 150px; }
  .slide-caption h2 { font-size: 1.2rem; }
  .slide:nth-child(odd) .slide-caption,
  .slide:nth-child(even) .slide-caption { margin: 0 auto; text-align: center; }
  .home-intro .container { flex-direction: column; text-align: center; }
  .contact-col { padding: 40px 20px; }
  .stats-grid { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; }
}
@media (max-width: 480px) {
  .stat-item { flex: 1 1 100%; }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
