:root {
  --primary: #ab0b07;
  --secondary: #173154;
  --light-bg: #f5f7fa;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}


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

a {
  text-decoration: none;
  transition: 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.topbar {
  background: #002147;
  width: 100%;
  color: #ffffff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  text-align: center;
}

.topbar-left a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.topbar-left i {
  font-size: 15px;
  color: #ffffff;
}

.topbar-right span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-right a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.topbar-right i {
  font-size: 17px;
  color: #ffffff;
}

.topbar-right a span {
  display: inline;
}

.topbar-left a:hover,
.topbar-right a:hover {
  color: #ff3b3b;
  transform: translateY(-1px);
}

@media (min-width: 992px) {

  .topbar {
    font-size: 14px;
  }

  .topbar-flex {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 0;
    text-align: left;
  }

  .topbar-left {
    max-width: 75%;
  }
}

.main-header {
  background: #173154;
  border-bottom: 1px solid #173154;
  position: relative;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 70px;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-menu a {
  color: #fff;
  font-weight: 700;
  position: relative;
  transition: 0.3s ease;
  font-size: 14px;
}

.desktop-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff2e2e;
  border-radius: 2px;
  transition: width 0.50s ease;
}

.desktop-menu a:hover {
  color: #ff2e2e;
}

.desktop-menu a:hover::after {
  width: 100%;
}

.quote-btn {
  background: linear-gradient(135deg,#ab0b07,#c40000);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(171,11,7,0.3);
  transition: 0.3s ease;
}

.quote-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(171,11,7,0.45);
}

.desktop-menu a.active,
.desktop-menu .dropdown-toggle.active {
  color: #ff2e2e;
  font-weight: 700;
}

.desktop-menu a.active::after,
.desktop-menu .dropdown-toggle.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #ff2e2e;
  border-radius: 2px;
}

.desktop-dropdown {
  position: relative;
  flex-shrink: 0;
}

.desktop-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.desktop-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 340px;
  background: #173154;
  border-radius: 12px;
  padding: 12px 16px;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  z-index: 999;
}

.desktop-dropdown:hover .dropdown-menu {
  display: flex;
}

.desktop-dropdown .dropdown-menu a {
  font-size: 13px;
  padding: 6px 0;
  line-height: 1.4;
  color: #ffffff;
  display: inline-block;
  width: fit-content;
  position: relative;
  transition: color 0.3s ease;
}

.desktop-dropdown .dropdown-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ff2e2e;
  transition: width 0.3s ease;
}

.desktop-dropdown .dropdown-menu a:hover {
  color: #ff2e2e;
}

.desktop-dropdown .dropdown-menu a:hover::after {
  width: 100%;
}

.desktop-dropdown .dropdown-menu a.active{
color:#ff2e2e;
font-weight:700;
}

.desktop-dropdown .dropdown-menu a.active::after{
width:100%;
}

.desktop-dropdown .dropdown-toggle {
  position: relative;
  padding-bottom: 6px;
}

.desktop-dropdown .dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ff2e2e;
  border-radius: 2px;
  transition: width 0.50s ease;
}

.desktop-dropdown:hover .dropdown-toggle::after {
  width: 100%;
}

.desktop-menu .dropdown-toggle:hover {
  padding-left: 0;
}

@media (min-width: 992px) {

  .desktop-dropdown .dropdown-toggle {
    padding: 0px;
  }

  .desktop-dropdown .dropdown-menu {
    top: 100%;
  }

}
.hamburger {
  width: 38px;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: none;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  left: 0;
  transition: 0.3s;
}

.hamburger span:nth-child(1){ top:0; }
.hamburger span:nth-child(2){ top:9px; }
.hamburger span:nth-child(3){ bottom:0; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;

  height: 100vh;
  background: linear-gradient(135deg,#173154,#0f2b4f);
  padding: 30px 20px;

  transition: 0.4s ease;
  z-index: 1100;

  display: flex;
  flex-direction: column;

  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-top img {
  height: 85px;
}

.close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
}

.close-btn:hover {
  background: #ab0b07;
}

.close-btn span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  top: 17px;
  left: 7px;
}

.close-btn span:first-child {
  transform: rotate(45deg);
}

.close-btn span:last-child {
  transform: rotate(-45deg);
}

.mobile-links a,
.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  gap: 7px;
  font-size: 14px;
}

.mobile-links a:hover,
.dropdown-toggle:hover {
  color: #ff3b3b;
  padding-left: 8px;
}

.mobile-links a.active{
color:#ff3b3b;
}

.mobile-dropdown.active i {
  transform: rotate(180deg);
  transition: 0.3s ease;
}

.mobile-dropdown .dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 10px;
}

.mobile-dropdown.active .dropdown-menu {
  display: flex;
}

.mobile-dropdown .dropdown-menu a {
  font-size: 12px;
  padding: 8px 0;
  border-bottom: none;
  opacity: 0.85;
}

.mobile-dropdown .dropdown-menu a:hover {
  color: #ff3b3b;
}

.mobile-quote {
  margin-top: 25px;
  background: linear-gradient(135deg,#ff2a2a,#c40000);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(196,0,0,0.4);
  transition: 0.3s ease;
}

.mobile-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255,0,0,0.6);
}

.mobile-contact {
  margin-top: 25px;
}

.mobile-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.mobile-contact i {
  color: #fff;
  font-size: 14px;
}

.mobile-contact a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.mobile-contact a:hover {
  color: #ff3b3b;
}

.mobile-social {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.mobile-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.mobile-social a:hover {
  background: #ff2a2a;
  transform: translateY(-3px);
}

@media (max-width: 991px) {

  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

.hero-main {
  position: relative;
  background-image: url("/assets/images/heroimagen.png");
  background-size: cover;
  background-position: center bottom;
  color: #fff;
  padding: 10px 15px;
  min-height: 25vh;
overflow: hidden;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.35));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-inner h1 {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 5px;
}

.hero-inner h1 span {
  color: #ff3b3b;
}

.hero-subtext {
  font-size: 11px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 10px;
}

.hero-title .highlight {
  color: #ff2e2e;
}

.hero-rating {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-rating .stars {
  color: #fbbc04;
  letter-spacing: 1px;
}

.floating-call {
  position: relative;
  margin-top: -30px;
  display: flex;
  justify-content: center;
  z-index: 20;
}

.floating-call img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  background: #d60000;
}

@media (min-width: 992px) {
  .hero-main {
    min-height: 600px;
    padding: 60px 60px 40px;
    background-position: center bottom;
  }

  .hero-inner {
    max-width: 1000px;
  }

  .hero-inner h1 {
    font-size: 50px;
    line-height: 1.1;
  }

  .hero-subtext {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-rating {
    font-size: 20px;
    margin-bottom: 14px;
  }
  
  .floating-call { 
  margin-top: -150px; 
  } 
  .floating-call img { 
  max-width: 800px; 
      
  } 
    
}

.about-premium {
  background: #f5f7fa;
  padding: 30px 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  align-items: center;
}

.about-media {
  width: 100%;
}

.about-media img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  height: auto;
  display: block;
  aspect-ratio: 1976 / 1014;
}

.about-info {
  max-width: 600px;
}

.about-info h2 {
  font-size: 20px;
  line-height: 1.3;
  color: #173154;
  margin-bottom: 12px;
}

.about-info h2 span {
  color: #ab0b07;
}

.about-lead {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #333;
  text-align: justify;
}

.about-info p {
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 12px;
  text-align: justify;
}

.about-cta {
  display: inline-block;
  background: linear-gradient(135deg,#173154,#0f2b4f);
  color: #fff;
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-cta:hover {
  background: #ab0b07;
  transform: translateY(-2px);
}

@media (min-width: 992px) {

  .about-premium {
    padding: 50px 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
  }

  .about-info h2 {
    font-size: 30px;
  }

  .about-info p,
  .about-lead {
    font-size: 16px;
  }

}

.why-us {
  padding: 10px 0;
  background: #ffffff;
}
.why-us-header {
  text-align: center;
  padding: 0 1px;
  margin-bottom: 20px;
}

.why-us-header h2 {
  font-size: 22px;
  color: #0f2a44;
  line-height: 1.3;
  margin-bottom: 12px;
}

.why-us-header h2 span {
  color: #d60000;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 0 10px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid #eee;
}

.why-icon {
  font-size: 26px;
  color: #d60000;
  min-width: 30px;
  margin-top: 4px;
}

.why-text h3 {
  font-size: 16px;
  color: #0f2a44;
  margin-bottom: 4px;
}

.why-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (min-width: 992px) {

  .why-us-header {
    max-width: 900px;
    margin: 0 auto 40px;
  }

  .why-us-header h2 {
    font-size: 36px;
  }

  .why-subtitle {
    font-size: 16px;
  }

  .why-list {
    grid-template-columns: 1fr 1fr;
    gap: 36px 70px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .why-item {
    padding-bottom: 18px;
  }

  .why-icon {
    font-size: 22px;
  }

  .why-text h4 {
    font-size: 18px;
  }

  .why-text p {
    font-size: 15px;
  }
}

.services-section {
  padding: 36px 0;
  background: #f7f9fc;
}

.services-head {
  text-align: center;
  margin-bottom: 28px;
}

.services-head h2 {
  font-size: 17px;
  line-height: 1.3;
  color: #173154;
}

.services-head h2 span {
  color: #AB0B07;
}

.services-head p {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.service-title-link {
  color: #173154;
  text-decoration: none;
}

.service-title-link:hover {
  text-decoration: underline;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
  text-align: justify;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #173154;
  text-decoration: none;
}

.service-link span {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.service-link:hover {
  text-decoration: underline;
  color: #AB0B07;
}

.service-link:hover span {
  transform: translateX(4px);
}

.services-cta {
  margin-top: 32px;
  text-align: center;
}

.explore-btn {
  display: inline-block;
  width: 100%;
  max-width: 520px;
  padding: 16px 22px;
  background: #173154;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
  text-decoration: none;
}

.explore-btn:hover {
  background: #AB0B07;
}

@media (min-width: 768px) {
  .services-head h2 {
    font-size: 32px;
  }

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

  .service-card img {
    height: 200px;
  }
}

.servtick-features{
list-style:none;
padding:0;
margin:15px 0;
}

.servtick-features li{
font-size:14px;
margin-bottom:6px;
padding-left:18px;
position:relative;
}

.servtick-features li::before{
content:"✓";
position:absolute;
left:0;
color:#e60023;
font-weight:700;
}

.gbp-reviews {
  padding: 30px 0;
  background: #f8f9fb;
}

.gbp-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #173154;
  margin-bottom: 6px;
}

.gbp-title span {
  color: #c40000;
}

.gbp-subtitle {
  text-align: center;
  font-size: 14px;
  color: #555;
}

/* ===== GBP SLIDER FINAL FIX ===== */

.gbpSwiper {
  margin-top: 45px;
  overflow: hidden;
  position: relative;
  padding: 0 10px 40px;
}

.gbpSwiper .swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  gap: 20px;
}

.gbpSwiper .swiper-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
}

/* ===== DESKTOP ONLY (992px) ===== */

@media (min-width: 992px) {

  .gbpSwiper .swiper-slide {
    flex: 0 0 calc((100% - 40px) / 3);
  }

  .gbp-reviews {
    padding: 40px 0 30px 0;
  }

  .gbp-title {
    font-size: 32px;
  }

  .gbp-subtitle {
    font-size: 16px;
  }

  .gbpSwiper {
    margin-top: 60px;
  }

  .gbp-card {
    padding: 32px;
  }

  .gbp-card p {
    font-size: 15px;
  }
}

/* ===== CARD ===== */

.gbp-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  position: relative;
  border: 1px solid rgba(23,49,84,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.gbp-card::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 60px;
  color: rgba(23,49,84,0.06);
  font-family: serif;
}

.gbp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

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

.gbp-top img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

.google-icon {
  width: 20px !important;
  height: 20px !important;
  margin-left: auto;
}

.gbp-card h3 {
  margin: 0;
  font-size: 16px;
  color: #173154;
  font-weight: 600;
}

.gbp-stars {
  color: #fbbc04;
  font-size: 14px;
}

.gbp-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #333;
  margin: 16px 0;
}

.gbp-date {
  font-size: 12px;
  color: #444;
}

.gbp-btn {
  margin-top: 16px;
  font-weight: 600;
  color: #173154;
  font-size: 14px;
}

.gbp-btn:hover {
  text-decoration: underline;
  color: #AB0B07;
}

/* ===== DOTS ===== */

.custom-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
}

.custom-dot {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-dot.active {
  width: 26px;
  height: 8px;
  border-radius: 10px;
  background: #173154;
}

.service-areas {
  padding: 20px 0;
  background: #ffffff;
}

.areas-header {
  text-align: center;
  margin: 0 auto 24px;
}

.areas-header h2 {
  font-size: 20px;
  color: #173154;
  margin-bottom: 6px;
}

.areas-header h2 span {
  color: #c40000;
}

.areas-header p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.areas-box {
  display: grid;
  grid-template-columns: 1fr;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;
}

.areas-box::-webkit-scrollbar {
  width: 4px;
}

.areas-box::-webkit-scrollbar-track {
  background: transparent;
}

.areas-box::-webkit-scrollbar-thumb {
  background: #173154;
  border-radius: 8px;
}

.area-link {
  font-size: 14px;
  font-weight: 500;
  color: #173154;
  text-decoration: none;
  position: relative;
  padding: 8px 0 8px 16px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.2s ease, transform 0.2s ease;
}

.area-link:last-child {
  border-bottom: none;
}

.area-link::before{
content:"›";
position:absolute;
left:2px;
color:#c40000;
font-weight:700;
}

.area-link:hover {
  color: #c40000;
  transform: translateX(3px);
}

@media (min-width: 768px) {

  .service-areas {
    padding: 0 0 30px 0;
  }

  .areas-header h2 {
    font-size: 32px;
  }
  
  .areas-header p {
    font-size: 16px;
  }

  .areas-box {
    max-height: none;
    overflow: visible;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 2px;
    padding-right: 0;
  }

  .area-link {
    font-size: 14.5px;
    border-bottom: none;
    padding: 0 0 0 14px;
  }
}

.cta-premium {
  position: relative;
  padding: 24px 0;
  background: linear-gradient(135deg, #0f2a47, #173154);
  color: #fff;
  overflow: hidden;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-left {
  text-align: center;
}

.cta-badge {
  background: rgba(255,255,255,0.12);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  display: inline-block;
  margin-bottom: 6px;
}

.cta-left h2 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.cta-left h2 span {
  color: #fff;
}

.cta-left p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #c40000, #ff2a2a);
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 0 25px rgba(196,0,0,0.6);
  width: 100%;
  max-width: 280px;
  text-align: center;
}

.cta-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(255,0,0,0.9);
}

.cta-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  width: 100%;
  max-width: 280px;
  text-align: center;
}

.cta-btn-outline:hover {
  background: #fff;
  color: #173154;
}

.cta-right {
  display: grid;
  gap: 14px;
}

.cta-feature {
  background: rgba(255,255,255,0.12);
  padding: 10px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.cta-feature:hover {
  transform: translateY(-6px);
}

.cta-feature h3 {
  margin-bottom: 6px;
  text-align: center;
  font-size: 15px;
}

.cta-feature p {
  font-size: 14px;
  opacity: 0.85;
  text-align: center;
}

@media (min-width: 992px) {

  .cta-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
  }

  .cta-left {
    text-align: left;
  }

  .cta-left h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .cta-left p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: row;
    align-items: center;
  }

  .cta-btn-primary,
  .cta-btn-outline {
    width: auto;
    max-width: none;
  }

  .cta-right {
    display: block;
  }

  .cta-feature {
    margin-bottom: 20px;
  }
}

.premium-faq-section {
    background: linear-gradient(to bottom, #f9fbff, #ffffff);
    margin-bottom: 20px;
    margin-top: 20px;
}

.faq-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 22px;
    color: #173154;
    margin-bottom: 12px;
    line-height: 1.3;
}

.faq-header h2 span {
    color: #c40000;
}

.faq-header p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(23,49,84,0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    color: #173154;
    margin: 0;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #AB0B07;
    transition: 0.3s ease;
}

.faq-icon::before {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.faq-icon::after {
    width: 2px;
    height: 20px;
    left: 9px;
    top: 0;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 10px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

@media (min-width: 992px) {

    .faq-header {
        margin-bottom: 60px;
    }

    .faq-header h2 {
        font-size: 34px;
    }

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

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

}
.pm-footer {
  background: #173154;
  color: #dbe5f4;
  padding: 40px 0 0;
  font-family: system-ui, sans-serif;
}

.pm-footer-inner {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.brand-logo {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-logo {
  width: 72px;
  height: auto;
}

.brand-logo h3 {
  margin: 0;
  font-size: 25px;
  line-height: 30px;
  color: #fff;
}

.brand-logo small {
  opacity: 0.75;
}

.brand-text {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.7;
font-weight: 800;
text-align: justify;
}


.pm-col h4 {
  margin-bottom: 16px;
  font-size: 25px;
  color: #fff;
}

.pm-col h4 em {
  color: #ff2e2e;
  font-style: normal;
}

.pm-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 800;
}

.pm-col ul li {
  margin-bottom: 10px;
}

.pm-col > ul > li > a {
  font-size: 14px;
  color: #dbe5f4;
  display: block;
  font-weight: 800;
  transition: 0.3s ease;
  line-height: 2;
  letter-spacing: 0.5px;
}

.pm-col > ul > li > a:hover {
  color: #ff2e2e;
  transform: translateX(4px);
}

.footer-dropdown {
  margin-bottom: 6px;
}

.footer-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  color: #dbe5f4;
  font-weight: 800;
  transition: 0.3s ease;
  letter-spacing: 0.5px;
}

.footer-toggle:hover {
  color: #ff2e2e;
}

.footer-toggle span {
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s ease;
}

.footer-submenu {
  display: none;
  margin-top: 6px;
  padding-left: 14px;
}

.footer-submenu li {
  margin-bottom: 2px;
}

.footer-submenu li a {
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  display: block;
  transition: 0.3s ease;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.footer-submenu li a:hover {
  color: #ff2e2e;
  padding-left: 4px;
}

.footer-dropdown.active .footer-submenu {
  display: block;
}

.footer-dropdown.active .footer-toggle span {
  transform: rotate(45deg);
}

.address,
.email,
.phones {
  display: flex;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  color: #dbe5f4;
  margin-bottom: 20px;
  transition: 0.3s ease;
  letter-spacing: 0.5px;
}

.address:hover,
.email:hover,
.phones:hover {
  color: #ff2e2e;
}

.address i,
.email i,
.phones i {
  min-width: 18px;
  font-size: 16px;
  margin-top: 3px;
}

.social {
  display: flex;
  gap: 14px;
  margin: 22px 0;
}

.social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 16px;

  box-shadow: 0 0 16px rgba(255,46,46,0.55);
  transition: 0.3s ease;
}

.social a:hover {
  background: #ff2e2e;
  border-color: #ff2e2e;
  transform: translateY(-5px) scale(1.05);
}

.map {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  border: none;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.pm-bottom {
  margin-top: 20px;
  padding: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 12px;
  line-height: 2;
}

.pm-bottom a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.pm-bottom a:hover {
  color: #ff4d4d;
}


@media (min-width: 992px) {

  .pm-footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 30px;
  }

  .brand-logo h3 {
    font-size: 24px;
  }

  .pm-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 100px;
    text-align: left;
    font-size: 15px;
  }
}

.about-intro {
  background: #f7f9fc;
  padding: 20px 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.about-eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 10px;
  display: inline-block;
}

.about-intro-text h2 span {
  color: var(--primary);
}

.about-intro-text h2 {
  font-size: 25px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #0f2a44;
}

.about-intro-text p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.about-intro-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px 15px;
}

.vm-new-card {
  background: #173154;
  color: #ffffff;
  padding: 28px 26px 30px;
  border-radius: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vm-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.vm-icon i {
  color: #AB0B07;
  font-size: 18px;
}

.vm-new-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.vm-new-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.trust-strip {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  grid-column: 1 / -1;
}

.trust-item { text-align: center; }

.trust-number {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #173154;
  line-height: 1.2;
}

.trust-text {
  font-size: 12px;
  color: #555;
  margin-top: 4px;
}

.about-principles {
  padding: 30px 0;
  background: #ffffff;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.principles-left h2 {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #0f2a44;
}

.principles-left h2 span { color: var(--primary); }

.principles-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 22px;
}

.principles-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.principles-image-wrap img {
  width: 100%;
  display: block;
}

.principles-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.principle-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(23,49,84,0.2);
}

.icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(171,11,7,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.icon-wrap i {
  font-size: 18px;
  color: var(--primary);
}

.principle-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0f2a44;
}

.principle-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

.about-numbers {
  background: #f7f9fc;
  padding: 30px 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.numbers-text { order: 1; }
.numbers-cards {
  order: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  position: relative;
  padding-bottom: 26px;
}

.number-card {
  background: #173154;
  color: #ffffff;
  border-radius: 20px;
  padding: 24px 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(23,49,84,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.number-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(23,49,84,0.45);
}

.number-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d60000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.number-icon i {
  color: #ff2e2e;
  font-size: 24px;
}

.number-value {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.number-card span {
  font-size: 18px;
  opacity: 0.9;
}

.numbers-text {
  max-width: 560px;
}

.numbers-text h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.numbers-lead {
  font-size: 17px;
  font-weight: 600;
  color: #173154;
  margin-bottom: 14px;
  position: relative;
  padding-left: 14px;
}

.numbers-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 80%;
  background: #d60000;
  border-radius: 4px;
}

.numbers-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
text-align: justify;
}

.numbers-cards::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, transparent, #d60000, transparent);
  border-radius: 2px;
  opacity: 0.9;
}

.risk-section{
background:#f7f9fc;
}

.number-text{
font-size:40px;
font-weight:800;
line-height:1.1;
margin-bottom:6px;
color:#fff;
letter-spacing: 2px;
}

@media (min-width: 576px) {
  .numbers-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {

  .about-intro {
    padding: 30px 0;
  }

  .about-intro-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
  }

  .about-intro-cards {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }

  .trust-number { font-size: 24px; }

  .principles-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

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

  .numbers-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
  }

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

  .numbers-text {
    max-width: 600px;
    order: 2;
  }

  .numbers-cards::after {
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
  }
  
  
}

.how-work {
  padding: 30px 0;
  background: #ffffff;
}

.how-work-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.how-work-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.how-work-header h2 span {
  color: #d60000;
}

.how-work-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.work-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}

.work-step {
  position: relative;
  padding-left: 110px;
}

.step-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  display: flex;
  align-items: flex-start;
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: rgba(23,49,84,0.65);
  width: 28px;
  text-align: right;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #173154;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.step-icon i {
  color: #ff2e2e;
  font-size: 22px;
}
.step-icon::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 42px);
  background: linear-gradient(
    to bottom,
    #d60000,
    rgba(214,0,0,0.25)
  );
}
.work-step:last-child .step-icon::after {
  display: none;
}

.work-step h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #0f2a44;
}

.work-step p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

@media (min-width: 992px) {

  .work-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: auto;
  }
  .work-timeline::before {
    content: "";
    position: absolute;
    top: 56px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: linear-gradient(
      to right,
      rgba(214,0,0,0.25),
      #d60000,
      rgba(214,0,0,0.25)
    );
  }

  .work-step {
    padding-left: 0;
    text-align: center;
  }

  .step-top {
    position: static;
    width: auto;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
  }

  .step-number {
    width: auto;
    text-align: center;
    font-size: 13px;
  }

  .step-icon::after {
    display: none;
  }
}
.why-hero {
  position: relative;
  width: 100%;
  height: 110px;
  background: url('/assets/images/bpmbanner.jpg') 80% center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.why-hero .container {
  text-align: left !important;
}

.why-content {
  color: #ffffff;
  padding-left: 16px;
  max-width: 70%;
  width: 100%;
  margin: 0;
  text-align: left !important;
}

.why-eyebrow {
  font-size: 11px;
  line-height: 1.3;
  display: block;
  margin-bottom: 4px;
}

.why-content h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-underline {
  width: 60px;
  height: 3px;
  background: #ff2e2e;
  margin-bottom: 6px;
}

.why-desc {
  display: none;
}

.why-breadcrumb {
  background: #efefef;
  padding: 17px 0 0;
  font-size: 14px;
  height: 60px;
}

.why-breadcrumb .container {
  text-align: left;
  padding: 0 0 0 15px;
  font-size: 13px;
}

.why-breadcrumb a {
  color: #173154;
  font-weight: 600;
  text-decoration: none;
}

.why-breadcrumb a:hover {
  color: #ab0b07;
}

@media (min-width: 992px) {

  .why-hero {
    height: 300px;
  }

  .why-content {
    max-width: 800px;
    padding-left: 50px;
  }

  .why-content h1 {
    font-size: 36px;
  }

  .why-desc {
    display: block;
    font-size: 15px;
    margin-top: 20px;
  }

  .why-breadcrumb {
    padding: 18px;
    font-size: 14px;
  }

  .why-eyebrow {
    font-size: 22px;
  }
}

.premium-compare-section{
padding:30px 0;
background:#ffffff;
}

.premium-grid{
display:grid;
align-items:center;
gap: 20px;
}

.premium-left h2{
font-size:22px;
font-weight:700;
line-height:1.3;
margin-bottom:30px;
color:#173154;
}

.premium-highlight-line{
border-left:6px solid #ff3b3b;
padding-left:20px;
margin-bottom:25px;
}

.premium-highlight-line p{
font-size:14px;
color:#173154;
text-align: justify;
}

.premium-desc{
color:#173154;
line-height:1.7;
margin-bottom: 7px;
font-size: 14px;
text-align: justify;
}

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

.premium-right img{
width:115%;
max-width:none;
margin-left:-8.5%;
}

@media (min-width:992px){

.premium-left h2{
font-size:27px;
}

.premium-highlight-line p{
font-size:20px;
}

.premium-grid{
grid-template-columns:45% 55%;
}

.premium-right{
text-align:right;
margin-top:0;
}

.premium-right img{
width:90%;
margin-left:0;
}

}

.trusted-packers{
padding:30px 0;
background:#f6f8fb;
}

.trusted-grid{
display:grid;
gap:50px;
align-items:center;
}

.trusted-content h2{
font-size:22px;
font-weight:700;
color:#173154;
line-height:1.3;
margin-bottom:12px;
}

.trusted-content span{
color:#e11b22;
}

.trusted-intro{
font-weight:600;
color:#173154;
margin-bottom:14px;
}

.trusted-content p{
color:#4b5563;
line-height:1.8;
margin-bottom:16px;
text-align: justify;
}

.trusted-areas{
display:flex;
flex-wrap:wrap;
gap:5px;
margin-top:20px;
justify-content: center;
}

.trusted-areas span{
background:#ffffff;
padding:8px 10px;
border-radius:6px;
font-size:13px;
font-weight:500;
color:#173154;
border:1px solid #e4e7ec;
transition:all .3s;
}

.trusted-areas span:hover{
background:#173154;
color:#fff;
}

.trusted-image{
position:relative;
}

.trusted-image img{
width:100%;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

@media (min-width:992px){
    
.trusted-content h2{
font-size:36px;
}

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

.trusted-image img{
height:600px;
width:100%;
object-fit:cover;
}

}

.customer-experience{
padding:50px 0;
background:linear-gradient(180deg,#f7f9fc,#eef2f7);
position:relative;
}

.experience-header{
text-align:center;
margin-bottom:80px;
max-width:700px;
margin-left:auto;
margin-right:auto;
}

.experience-header h2{
font-size:38px;
font-weight:700;
color:#173154;
line-height:1.3;
}

.experience-header span{
color:#e11b22;
}

.experience-header p{
margin-top:15px;
color:#6b7280;
font-size:16px;
}

.experience-grid{
display:flex;
flex-direction:column;
gap:60px;
}

.experience-card{
display:grid;
grid-template-columns:1fr;
background:#ffffff;
border-radius:20px;
overflow:hidden;
align-items:center;
padding:25px;
position:relative;

box-shadow:
0 10px 30px rgba(0,0,0,0.06),
0 20px 60px rgba(0,0,0,0.08);

transition:all .35s ease;
}

.experience-card:hover{
transform:translateY(-8px);
box-shadow:
0 20px 50px rgba(0,0,0,0.10),
0 40px 90px rgba(0,0,0,0.12);
}

.experience-image{
display:flex;
align-items:center;
justify-content:center;
background:#f4f6fa;
border-radius:16px;
padding:10px;
position:relative;
}

.experience-image:before{
content:"";
position:absolute;
inset:0;
border-radius:16px;
box-shadow:inset 0 0 0 1px #e5e7eb;
pointer-events:none;
}

.experience-image img{
max-width:100%;
max-height:100%;
height:auto;
width:auto;
object-fit:contain;
border-radius:12px;
transition:transform .5s ease;
}

.experience-card:hover img{
transform:scale(1.04);
}

.experience-content{
padding:10px;
}

.review-top{
display:flex;
justify-content:flex-start;
align-items:center;
margin-bottom:18px;
}

.customer{
display:flex;
align-items:center;
gap:12px;
}

.avatar{
width:42px;
height:42px;
border-radius:50%;
background:#173154;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
font-weight:600;
letter-spacing:1px;
}

.customer-info{
display:flex;
flex-direction:column;
}

.customer-info strong{
font-size:18px;
color:#173154;
}

.customer-location{
font-size:14px;
color:#6b7280;
}

.stars{
color:#ffb400;
font-size:16px;
letter-spacing:2px;
}

.review-text{
color:#4b5563;
line-height:1.8;
font-size:15px;
margin-bottom:25px;
text-align:justify;
}

.review-meta{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:10px;
border-top:1px solid #e5e7eb;
padding-top:18px;
}

.review-meta strong{
background:#173154;
color:#fff;
padding:6px 12px;
font-size:13px;
border-radius:6px;
font-weight:600;
}

.review-meta span{
font-size:13px;
font-weight:600;
color:#173154;
background:#eef2f7;
padding:6px 12px;
border-radius:6px;
}

@media (min-width:992px){

.experience-card{
grid-template-columns:1fr 1fr;
padding:40px;
}

.experience-image{
height:340px;
}

.experience-card.reverse .experience-image{
order:2;
}

.experience-card.reverse .experience-content{
order:1;
}

}

@media (min-width:992px){

.why-safety-section .principles-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
}

.why-safety-section .principles-right{
order:1;
}

.why-safety-section .principles-left{
order:2;
padding-left:40px;
}

}

.contact-hi {
font-size: 17px;
font-weight: 600;
margin-bottom: 6px;
}

.contact-hero{
background:#f5f7fa;
padding:30px 0;
text-align:center;
}

.contact-hero h1{
font-size:24px;
color:#173154;
margin-bottom:8px;
}

.contact-hero p{
font-size:14px;
color:#555;
max-width:720px;
margin:auto;
line-height:1.7;
}

.contact-wrap{
padding:0 0 50px;
background:#f5f7fa;
}

.contact-grid{
display:grid;
grid-template-columns:1fr;
gap:45px;
}

.contact-form-box{
background:#fff;
padding:28px;
border-radius:22px;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.contact-form-box h2{
font-size:30px;
color:#173154;
margin-bottom:8px;
}

.contact-desc{
font-size:15px;
color:#666;
margin-bottom:30px;
}

.contact-trust{
display:flex;
flex-wrap:wrap;
gap:8px;
font-size:11px;
font-weight:700;
color:#173154;
margin: 12px -30px 20px;
justify-content: center;
}

.contact-trust .contact-form-box{
padding:0 10px;
}

.contact-trust span{
background:#f3f5f8;
padding:6px 12px;
border-radius:20px;
}

.contact-row{
display:grid;
grid-template-columns:1fr;
gap:18px;
margin-bottom:18px;
}

.contact-field label{
font-weight:800;
font-size:15px;
display:block;
margin-bottom:7px;
color:#333;
}

.contact-field input,
.contact-field textarea{
width:100%;
padding:14px 20px 14px 40px;
border:1px solid #ddd;
border-radius:10px;
font-size:15px;
transition:.25s;
box-sizing:border-box;
font-weight: 600;
}

.contact-field textarea{
border-radius:18px;
min-height:110px;
resize:none;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus{
border-color:#173154;
outline:none;
}

.contact-field select{
width: 100%;
padding: 14px 40px;
border: 1px solid #ddd;
border-radius: 10px;
font-size: 15px;
font-weight: 600;
transition: .25s;
box-sizing: border-box;
appearance:none;
-webkit-appearance:none;
-moz-appearance:none;
background-color:#fff;
background-image:none;
}

.contact-field{
position:relative;
}

.form-icon{
position:absolute;
left:14px;
top:70%;
transform:translateY(-50%);
font-size:16px;
color:#173154;
}

.textarea-icon{
top:48px;
transform:none;
}

.area-field:has(select),
.area-field:has(input[type="date"]){
position:relative;
}

.area-field:has(select)::after,
.area-field:has(input[type="date"])::after{
content:"";
position:absolute;
right:20px;
top:70%;
width:8px;
height:8px;
border-right:2px solid #555;
border-bottom:2px solid #555;
transform:translateY(-60%) rotate(45deg);
pointer-events:none;
}

.area-field select,
.area-field input[type="date"]{
appearance:none;
-webkit-appearance:none;
-moz-appearance:none;
background-image:none;
}

input[type="date"]::-webkit-calendar-picker-indicator{
opacity:0;
position:absolute;
right:0;
width:100%;
height:100%;
cursor:pointer;
}

.contact-submit{
display:flex;
justify-content:center;
margin-top:15px;
}

.contact-submit button{
background:#173154;
color:#fff;
border:none;
padding:16px 40px;
font-size:15px;
border-radius:40px;
font-weight:600;
cursor:pointer;
transition:.3s;
box-shadow:0 8px 25px rgba(0,0,0,0.2);
}

.contact-submit button:hover{
background:#ab0b07;
transform:translateY(-2px);
}

.captcha-box{
display:flex;
gap:5px;
align-items:center;
flex-wrap:nowrap;
}

.captcha-code{
background:#173154;
color:#fff;
padding:5px 5px;
border-radius:6px;
font-weight:700;
letter-spacing:2px;
font-size:16px;
display:flex;
align-items:center;
justify-content:center;
min-width:70px;
}

.form-trust{
display:flex;
align-items:center;
justify-content:center;
gap:8px;
font-size:16px;
color:#444;
margin-top:20px;
}

.form-trust i{
color:#16a34a;
font-size:20px;
}

.captcha-field .area-icon{
top:47px;
left: 1px;
}

.captcha-refresh{
display:flex;
align-items:center;
justify-content:center;
width:26px;
height:26px;
border-radius:6px;
border:none;
background:#f1f5f9;
color:#173154;
cursor:pointer;
transition:all 0.25s ease;
}

.captcha-refresh:hover{
background:#173154;
color:#fff;
transform:rotate(180deg);
}

.area-form-box .area-captcha-box{
margin-left:-10px;
margin-right:-10px;
}

.contact-form-box .area-captcha-box{
margin-left:-10px;
margin-right:-10px;
}

.contact-side{
background:#173154;
padding:35px 25px;
border-radius:22px;
color:#fff;
overflow:hidden;
}

.contact-side h3{
font-size:22px;
margin-bottom:30px;
}

.contact-info{
display:flex;
align-items:center;
gap:16px;
background:rgba(255,255,255,0.18);
padding:10px 18px;
border-radius:14px;
margin-bottom:22px;
transition:.3s;
}

.contact-info:hover{
transform:scale(1.03);
box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.contact-info i{
font-size:25px;
}

.contact-info span{
font-size: 14px;
display: block;
font-weight: 800;
letter-spacing: 0.9px;
margin-bottom: 3px;
}

.contact-info p{
margin:0;
font-size:14px;
}

.contact-info a{
color:#fff;
text-decoration:none;
letter-spacing: 0.5px;
font-weight: 500;
}

.direction-btn{
display:inline-block;
margin-top:8px;
font-size:13px;
font-weight:600;
color:#fff;
background:#173154;
padding:6px 12px;
border-radius:6px;
transition:0.3s;
}

.direction-btn:hover{
background:#002147;
text-decoration: underline;
transform:translateY(-2px);
}

.connect-title{
margin:20px 0 12px;
font-size: 20px;
font-weight: 700;
}

.contact-social{
display:flex;
gap:25px;
margin-top:10px;
}

.contact-social a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(255,255,255,0.15);
font-size:18px;
color:#fff;
transition:.3s;
}

.contact-social a:hover{
background:#ab0b07;
transform:scale(1.1);
}

.map-header{
padding: 0 20px;
max-width:1200px;
margin:auto;
}

.map-header h2 {
font-size: 22px;
line-height: 1.3;
color: #173154;
margin-bottom: 15px;
text-align: center;
margin-top: 30px;
}

.map-header span{
color:#ab0b07;
}

.contact-map iframe{
width:100%;
height:500px;
border:none;
}

.contact-side hr{
margin-top:50px;
}

@media(min-width:992px){
    
.contact-hero h1{
font-size:34px;
}

.contact-hi {
font-size: 22px;
}

.map-header h2 {
font-size: 34px;
}

.contact-submit{
justify-content:flex-end;
}

.contact-grid{
grid-template-columns:1.3fr .7fr;
}

.contact-row{
grid-template-columns:1fr 1fr;
}

.contact-row{
margin-bottom: 0px;
}
.contact-submit{
margin-top: 0px;
}
}

.contact-wrap .container{
padding:0 10px;
}

.hero-call-banner{
position:relative;
margin:20px auto 30px;
text-align:center;
}

.hero-call-banner img{
width:92%;
max-width:480px;
height:auto;
display:block;
margin:auto;
border-radius:10px;
}

.service-content h1{
color:#ed1c24;
font-size:24px;
margin-bottom:20px;
}

.service-content p{
color: #4b5563;
font-size:14px;
line-height: 1.8;
margin-bottom: 16px;
text-align: justify;
}

.service-bullets{
color: #4b5563;
font-size:14px;
margin-top:20px;
margin-bottom: 16px;
padding-left:20px;
line-height:2;
}

.service-content a{
color:#4b5563;
text-decoration:none;
font-weight:500;
}

.service-content a:hover{
text-decoration:underline;
}

.how-work-header .process-title{
font-size: 24px;
margin-bottom: 12px;
}

.moving-checklist{
padding:70px 0;
background:#f8fafc;
}

.moving-checklist h2{
text-align:center;
font-size:26px;
margin-bottom:10px;
}

.checklist-desc{
text-align:center;
max-width:650px;
margin:0 auto 50px;
font-size:14px;
color:#4b5563;
line-height:1.7;
}

.checklist-timeline{
display:grid;
grid-template-columns:1fr;
gap:25px;
}

.timeline-card{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 8px 30px rgba(0,0,0,0.06);
position:relative;
transition:.3s;
}

.timeline-number{
position:absolute;
top:-15px;
left:20px;
background:#ed1c24;
color:#fff;
font-size:14px;
font-weight:700;
padding:6px 12px;
border-radius:6px;
}

.timeline-card h4{
font-size:18px;
margin-bottom:8px;
}

.timeline-card p{
font-size:14px;
color:#4b5563;
line-height:1.7;
text-align: justify;
}

.timeline-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 35px rgba(0,0,0,0.1);
}

@media (min-width:992px){

.checklist-timeline{
grid-template-columns:repeat(3,1fr);
gap:35px;
}

.moving-checklist h2{
font-size:32px;
}

}

.service-split{
padding:50px 0;
}

.split-grid{
display:flex;
flex-direction:column;
gap:30px;
}

.split-image{
flex:1;
order:-1;
}

.split-text{
flex:1;
order:1;
}

.split-text{
flex:1;
}

.split-text h2{
color:#173154;
font-size:24px;
margin-bottom:20px;
}

.split-text span{
color:#ed1c24;
}

.split-text p{
color: #4b5563;
font-size:14px;
line-height: 1.8;
margin-bottom: 16px;
text-align: justify;
}

.split-image{
flex:1;
}

.split-image img{
width:100%;
border-radius:12px;
object-fit:cover;
}

.portrait-img{
max-width:300px;
margin:auto;
display:block;
}

@media (min-width:992px){
    
.service-content h1 {
font-size: 34px;
}

.split-text h2 {
font-size: 29px;

}

.hero-main{
position:relative;
}

.service-content{
padding:80px 0 0 10px;
}

.hero-call-banner{
position:absolute;
right:8%;
top:380px;
z-index:99;
margin:0;
}

.hero-call-banner img{
width:480px;
}

.how-work-header .process-title{
font-size: 36px;
}

.split-grid{
flex-direction:row;
align-items:center;
gap:60px;
}

.split-image{
order:2;
}

.split-text{
order:1;
}

.split-image{
max-width:520px;
}

.split-text{
max-width:600px;
}

.split-grid.reverse{
flex-direction:row-reverse;
}

.portrait-img{
max-width:350px;
}
 }

.why-local-shifting{
padding:30px 0;
}

.car-safety{
padding:30px 0;
background:#f8f9fb;
}

.why-title{
color:#173154;
font-size:24px;
text-align:center;
}

.why-title span{
color:#ED1C24;
}

.section-desc{
max-width:750px;
margin:10px auto 0;
text-align:center;
font-size:14px;
line-height:1.6;
color:#555;
}

.why-grid{
display:grid;
grid-template-columns:1fr;
gap:20px;
margin-top:35px;
}

.why-card{
background:#fff;
padding:26px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.15);
text-align:center;
transition:.3s;
display:flex;
flex-direction:column;
justify-content:flex-start;
border:1px solid #eee;
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 35px rgba(0,0,0,0.1);
}

.why-card i{
font-size:20px;
color:#fff;
background:#ED1C24;
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin:0 auto 12px;
}

.why-card h4{
font-size:17px;
margin-bottom:8px;
color:#173154;
}

.why-card p{
font-size:14px;
line-height:1.6;
color:#555;
}

@media (min-width:992px){

.why-title{
font-size:36px;
}

.section-desc{
font-size:16px;
}

.why-local-shifting .why-grid{
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.car-safety .why-grid{
grid-template-columns:repeat(3,1fr);
gap:25px;
}
}

.area-contact-premium{

padding:40px 0;
background:#f7f9fc;

}


.area-contact-header{

text-align:center;
margin-bottom:35px;

}

.area-contact-header h2{

font-size:32px;
color:#173154;
margin-bottom:6px;

}

.area-contact-header span{
color:#e11b22;
}

.area-contact-header p{

font-size:15px;
color:#666;

}

.area-contact-grid{

display:grid;
grid-template-columns:1fr;
gap:25px;

}

.area-form-box{

background:#fff;
padding:28px;
border-radius:18px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);

}

.area-row{

display:grid;
grid-template-columns:1fr;
gap:18px;
margin-bottom:18px;

}

.area-field{

position:relative;

}

.area-field label{

font-weight:800;
font-size:15px;
display:block;
margin-bottom:6px;
color:#333;

}

.area-field input,
.area-field select,
.area-field textarea{

width:100%;
padding:14px 20px 14px 40px;
border:1px solid #ddd;
border-radius:10px;
font-size:14px;
font-weight:600;

}

.area-field textarea{

min-height:100px;
resize:none;
border-radius:14px;

}

.captcha-field input{
padding:14px 0 14px 35px;
}

.area-icon{

position:absolute;
left:14px;
top:46px;
color:#173154;
font-size:15px;
}

.area-text-icon{
top:47px;
}

.captcha-field .area-icon{
left:5px;
}

.area-submit{

margin-top:10px;
background:#173154;
color:#fff;
border:none;
padding:14px 28px;
border-radius:40px;
font-weight:700;
cursor:pointer;
transition:.3s;

}

.area-submit:hover{

background:#ab0b07;

}

.area-map-box{

background:#fff;
padding:20px;
border-radius:18px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);

}

.area-map-box h3{

font-size:25px;
margin-bottom:35px;
color:#173154;
text-align: center;

}

.area-map-box span{

color:#ed1c24;

}

.area-map-box iframe{

width:100%;
height:500px;
border:0;
border-radius:14px;

}

@media(min-width:992px){

.area-contact-grid{

grid-template-columns:1.2fr .8fr;

}

.area-row{

grid-template-columns:1fr 1fr;

}

}

.area-captcha-box{

display:flex;
gap:8px;
align-items:center;

}

.area-captcha-code{

background:#173154;
color:#fff;
padding:12px 18px;
border-radius:8px;
font-weight:700;
letter-spacing:2px;

}

.area-submit-wrap{

display:flex;
justify-content:flex-end;
margin-top:10px;

}

.area-form-trust{

margin-top:15px;
font-size:14px;
color:#555;
display:flex;
align-items:center;
gap:6px;

}

.area-form-trust i{
color:#16a34a;
}

.scroll-top-btn{
position:fixed;
right:32px;
bottom:90px;
width:30px;
height:30px;
background:#173154;
border:none;
border-radius:6px;
cursor:pointer;
display:none;
align-items:center;
justify-content:center;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:9999;
}

.scroll-top-btn svg{
width:22px;
height:22px;
}

.call-float{
position:fixed;
right:20px;
bottom:20px;
width:55px;
height:55px;
background:#173154;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:9999;
}

.call-float svg{
width:26px;
height:26px;
}

.gallery-grid{
  column-count:1;
  column-gap:10px;
}

.gallery-item{
  break-inside:avoid;
  margin-bottom:10px;
}

.gallery-item img{
  width:100%;
  height:auto; /* IMPORTANT - no crop */
  border-radius:10px;
  cursor:pointer;
  transition:0.3s ease;
}

.gallery-item img:hover{
  transform:scale(1.03);
}

@media(min-width:992px){
  .gallery-grid{
    column-count:3;
  }
}

/* LIGHTBOX */
#lightbox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

#lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:10px;
}