.safe-updates-section {
  background: #f6f9ff;
  padding: 90px 20px;
}

.safe-container {
  max-width: 1200px;
  margin: 0 auto;
}

.safe-section-header {
  max-width: 780px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.safe-eyebrow {
  display: inline-block;
  color: #34ccff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.safe-section-header h2 {
  color: #001d67;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 700;
}

.safe-section-header p {
  color: #51627c;
  font-size: 18px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

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

.safe-update-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 45px rgba(0, 29, 103, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.safe-update-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 29, 103, 0.14);
}

.safe-update-image {
  height: 230px;
  overflow: hidden;
}

.safe-update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.safe-update-content {
  padding: 28px;
  flex-grow: 1;
}

.safe-update-tag {
  display: inline-block;
  background: rgba(52, 204, 255, 0.12);
  color: #001d67;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.safe-update-content h3 {
  color: #001d67;
  font-size: 25px;
  line-height: 1.2;
  margin: 0 0 14px;
  font-weight: 700;
}

.safe-update-content p {
  color: #52627a;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.safe-update-link {
  color: #d00c27;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.safe-update-link:hover {
  color: #001d67;
}

.safe-update-featured {
  background: linear-gradient(135deg, #001d67 0%, #001447 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.safe-update-featured .safe-update-content {
  padding: 40px 32px;
}

.safe-update-featured .safe-update-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.safe-update-featured h3,
.safe-update-featured p {
  color: #ffffff;
}

.safe-update-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 24px;
  align-items: center;
}

.safe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.safe-btn-primary {
  background: #d00c27;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(208, 12, 39, 0.22);
}

.safe-btn-primary:hover {
  background: #ffffff;
  color: #001d67;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.20);
}

.safe-btn-secondary {
  background: transparent;
  color: #34ccff;
  border: 2px solid #34ccff;
}

.safe-btn-secondary:hover {
  background: #34ccff;
  color: #001d67;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(52, 204, 255, 0.25);
}

@media (max-width: 992px) {
  .safe-updates-grid {
    grid-template-columns: 1fr 1fr;
  }

  .safe-update-featured {
    grid-column: span 2;
  }

  .safe-update-actions {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .safe-updates-section {
    padding: 65px 18px;
  }

  .safe-section-header {
    margin-bottom: 42px;
  }

  .safe-section-header h2 {
    font-size: 38px;
  }

  .safe-section-header p {
    font-size: 16px;
  }

  .safe-updates-grid {
    grid-template-columns: 1fr;
  }

  .safe-update-featured {
    grid-column: span 1;
  }

  .safe-update-image {
    height: 210px;
  }

  .safe-update-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .safe-btn {
    width: 100%;
  }
}

.safe-services-section {
  background: #ffffff;
  padding: 100px 20px;
}

.safe-services-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.safe-services-content h2 {
  color: #001d67;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 24px;
  font-weight: 700;
}

.safe-services-content p {
  color: #52627a;
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.safe-services-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.safe-btn-secondary-dark {
  background: transparent;
  color: #001d67;
  border: 2px solid #34ccff;
}

.safe-btn-secondary-dark:hover {
  background: #34ccff;
  color: #001d67;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(52, 204, 255, 0.25);
}

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

.safe-service-card {
  background: #f6f9ff;
  border-radius: 22px;
  padding: 34px 30px;
  min-height: 280px;
  box-shadow: 0 18px 45px rgba(0, 29, 103, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.safe-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 29, 103, 0.13);
  background: #ffffff;
}

.safe-service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(52, 204, 255, 0.14);
  color: #34ccff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.safe-service-card h3 {
  color: #001d67;
  font-size: 25px;
  line-height: 1.2;
  margin: 0 0 14px;
  font-weight: 700;
}

.safe-service-card p {
  color: #52627a;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.safe-service-card a {
  color: #d00c27;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.safe-service-card a:hover {
  color: #001d67;
}

.safe-service-card-featured {
  background: linear-gradient(135deg, #001d67 0%, #001447 100%);
}

.safe-service-card-featured h3,
.safe-service-card-featured p {
  color: #ffffff;
}

.safe-service-card-featured .safe-service-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #34ccff;
}

.safe-service-card-featured a {
  color: #34ccff;
}

.safe-service-card-featured a:hover {
  color: #ffffff;
}

@media (max-width: 992px) {
  .safe-services-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .safe-services-content {
    text-align: center;
  }

  .safe-services-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .safe-services-section {
    padding: 70px 18px;
  }

  .safe-services-grid {
    grid-template-columns: 1fr;
  }

  .safe-services-actions {
    flex-direction: column;
  }

  .safe-service-card {
    min-height: auto;
  }
}

.safe-how-section {
  background: #f6f9ff;
  padding: 100px 20px;
}

.safe-how-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.safe-how-content h2 {
  color: #001d67;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  margin: 0 0 22px;
  font-weight: 700;
}

.safe-how-intro {
  color: #52627a;
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 42px;
}

.safe-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.safe-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: flex-start;
  position: relative;
}

.safe-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 72px;
  width: 2px;
  height: calc(100% + 28px);
  background: rgba(52, 204, 255, 0.25);
}

.safe-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #34ccff;
  color: #ffffff;
  border: 8px solid rgba(52, 204, 255, 0.18);
  box-shadow: 0 12px 28px rgba(52, 204, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.safe-step h3 {
  color: #001d67;
  font-size: 25px;
  line-height: 1.2;
  margin: 0 0 10px;
  font-weight: 700;
}

.safe-step p {
  color: #52627a;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.safe-register-card {
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(0, 29, 103, 0.12);
}

.safe-register-image {
  height: 270px;
  overflow: hidden;
}

.safe-register-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.safe-register-content {
  padding: 36px;
}

.safe-register-content h3 {
  color: #001d67;
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 700;
}

.safe-register-content p {
  color: #52627a;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 26px;
}

@media (max-width: 992px) {
  .safe-how-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .safe-how-content {
    text-align: center;
  }

  .safe-how-intro {
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 640px) {
  .safe-how-section {
    padding: 70px 18px;
  }

  .safe-step {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .safe-step-number {
    width: 58px;
    height: 58px;
    border-width: 6px;
    font-size: 14px;
  }

  .safe-step:not(:last-child)::after {
    left: 28px;
    top: 58px;
  }

  .safe-register-image {
    height: 210px;
  }

  .safe-register-content {
    padding: 28px;
  }

  .safe-register-content h3 {
    font-size: 28px;
  }
}

.safe-locations-section {
  background: #ffffff;
  padding: 100px 20px;
}

.safe-locations-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.safe-video-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(0, 29, 103, 0.14);
}

.safe-video-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.safe-video-button {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #d00c27;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(208, 12, 39, 0.35);
  transition: all 0.25s ease;
}

.safe-video-button:hover {
  background: #34ccff;
  color: #001d67;
  transform: translateX(-50%) scale(1.06);
}

.safe-locations-content h2 {
  color: #001d67;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  margin: 0 0 22px;
  font-weight: 700;
}

.safe-locations-content > p {
  color: #52627a;
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 30px;
}

.safe-location-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 32px 0;
}

.safe-location-card {
  background: #f6f9ff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 14px 35px rgba(0, 29, 103, 0.07);
}

.safe-location-card h3 {
  color: #001d67;
  font-size: 23px;
  margin: 0 0 12px;
  font-weight: 700;
}

.safe-location-card p {
  color: #52627a;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.safe-location-card a {
  color: #d00c27;
  font-weight: 700;
  text-decoration: none;
}

.safe-location-card a:hover {
  color: #001d67;
}

.safe-partners-section {
  background: #f6f9ff;
  padding: 90px 20px 100px;
}

.safe-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: center;
}

.safe-partner-card {
  background: #ffffff;
  border-radius: 22px;
  min-height: 170px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(0, 29, 103, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.safe-partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 29, 103, 0.14);
}

.safe-partner-card img {
  max-width: 100%;
  max-height: 95px;
  object-fit: contain;
  display: block;
}

@media (max-width: 992px) {
  .safe-locations-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .safe-locations-content {
    text-align: center;
  }

  .safe-location-cards {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .safe-partners-grid {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 640px) {
  .safe-locations-section,
  .safe-partners-section {
    padding: 70px 18px;
  }

  .safe-video-card img {
    height: 360px;
  }

  .safe-video-button {
    width: 76px;
    height: 76px;
    font-size: 24px;
  }

  .safe-location-cards {
    grid-template-columns: 1fr;
  }

  .safe-partner-card {
    min-height: 140px;
    padding: 28px;
  }
}

/* ===== FORCE MOBILE HEADER STACK ===== */

/* ===== SAFE HEADER MOBILE CLEAN VIEW ===== */

@media (max-width: 767px) {

    .header-top-area {
        padding: 12px 16px 8px !important;
    }

    .header-top-area .col-lg-12 {
        display: block !important;
    }

    .header3-top-left-area,
    .header-top-right {
        display: block !important;
        width: 100% !important;
        float: none !important;
        text-align: left !important;
    }

    .header-top-link ul {
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .header-top-link ul li {
        display: block !important;
        margin: 0 0 8px 0 !important;
    }

    .header-top-link ul li a,
    .header-social a {
        display: flex !important;
        align-items: left !important;
        gap: 7px !important;
        color: #ffffff !important;
        font-size: 14px !important;
        line-height: 20px !important;
        font-weight: 600 !important;
    }

    .header-social {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        margin: 0 0 8px 0 !important;
    }

    .header-social a i,
    .header-top-link ul li a i {
        width: 18px !important;
        text-align: left !important;
    }

    .header-top-area::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(255,255,255,0.25);
        margin-top: 8px;
    }
		
}
/* =====================================
   Safe Cargo CTA Menu Item
===================================== */

/* ==========================================
   SAFE CARGO - HOW TO SIGN UP MENU BUTTON
========================================== */

.menu-item-signup > a {

    display: inline-flex !important;
    align-items: center;
    gap: 8px;

    padding: 10px 18px !important;

    border-radius: 30px;

    border: 1px solid rgba(86,198,242,.60);

    background: rgba(86,198,242,.10);

    color: #56c6f2 !important;

    font-weight: 700;

    transition: all .30s ease;

}

/* Icono */

.menu-item-signup > a:before {

    content: "\f234";

    font-family: "Font Awesome 5 Pro";

    font-weight: 300;

    font-size: 14px;

}

/* Hover */

.menu-item-signup > a:hover {

    background: #56c6f2;

    color: #ffffff !important;

    border-color: #56c6f2;

    transform: translateY(-2px);

}

/* Sticky Header */

.header3.sticky-header .menu-item-signup > a {

    background: rgba(86,198,242,.10);

    color: #56c6f2 !important;

    border: 1px solid rgba(86,198,242,.60);

}

.header3.sticky-header .menu-item-signup > a:hover {

    background: #56c6f2;

    color: #ffffff !important;

}

/* Mobile Menu */

.mean-container .mean-nav ul li.menu-item-signup > a {

    background: rgba(86,198,242,.10) !important;

    color: #56c6f2 !important;

    border-left: 3px solid #56c6f2 !important;

    font-weight: 700 !important;

}