@import url('https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* Custom Font Faces */
@font-face {
  font-family: 'Carter Sans Pro';
  src: url('../fonts/CarterSansPro-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Seven One Eight';
  src: url('../fonts/SevenOneEight-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Seven One Eight';
  src: url('../fonts/SevenOneEight-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Variables de colores y fuentes */
:root {
  --blue: #04233B;
  --dark-blue: #011331;
  --red: #C72627;
  --light-gold: #EECDAF;
  --gradient-light: #C7DEEE;
  --gradient-dark: #89C5EE;
  --heading-font: 'Carter Sans Pro', sans-serif;
  --content-font: 'Seven One Eight', sans-serif;
  --button-font: 'Inter', sans-serif;
  --extra-font: 'Geologica', sans-serif;
}

/* Animaciones */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

body{
	font-family: var(--content-font);
	background-image: url('/wp-content/uploads/2025/11/Rectangle-491.png');
	background-repeat: repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}

.phone_mobile, .header-cta-mobile, .mobile-inner-cont{
	display: none;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a:hover, a:focus{
	color: var(--blue);
}

/* Clase CTA Primary */
.cta-primary {
  position: relative;
  background: linear-gradient(180deg, #EBAA3F 0%, #FFAD27 100%);
  color: var(--blue);
  border-radius: 32px;
  border: 1px solid #fff;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
  font-weight: 900;
  font-size: 17px;
  font-family: var(--button-font);
  text-transform: uppercase;
  padding: 12px 24px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  overflow: hidden;
  z-index: 0;
}

.cta-primary-red {
  background: var(--red);
  color: white;
  border: 2px solid #EBAA3F;
  border-radius: 32px;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
}

.cta-primary-red > * {
  position: relative;
  z-index: 1;
}

.cta-primary-red::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #A01D1E 0%, #8B1819 100%);
  border-radius: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.cta-primary-red:hover::before,
.cta-primary.cta-primary-red:hover::before {
  opacity: 1;
}

.cta-primary-red:hover,
.cta-primary.cta-primary-red:hover {
  color: white;
  box-shadow: 0 2px 10px 0 rgba(156, 156, 156, 0.75);
}


.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #D19635 0%, #E89B1F 100%);
  border-radius: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.cta-primary:hover::before {
  opacity: 1;
}

.cta-primary.cta-primary-red::before,
.cta-primary.cta-primary-red:hover::before {
  display: none;
}

.cta-primary:hover {
  box-shadow: 0 2px 10px 0 rgba(156, 156, 156, 0.75);
}

/* Slick Slider Global Styles */
.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: auto !important;
  height: auto !important;
  border-radius: 4px;
  background: linear-gradient(180deg, #EBAA3F 0%, #FFAD27 100%) !important;
  border: none;
  padding: 15px;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
}

.slick-arrow:hover {
  opacity: 0.8 !important;
  background: linear-gradient(180deg, #EBAA3F 0%, #FFAD27 100%) !important;
}

.slick-arrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('/wp-content/uploads/2025/11/SVG.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.slick-prev {
  left: 22px;
}

.slick-prev::before {
  transform: scaleX(-1);
}

.slick-next {
  right: 22px;
}

/* Mobile elements hidden in desktop */
.cta-mobile-container,
.img-mobile-logo {
  display: none;
}

.cta-mobile-button {
  background: linear-gradient(180deg, #EBAA3F 0%, #FFAD27 100%);
  color: var(--blue);
  font-weight: 900;
  font-size: 15px;
  font-family: var(--button-font);
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid white;
  transition: all 0.3s ease;
}

.cta-mobile-button:hover {
  background: linear-gradient(180deg, #D19635 0%, #E89B1F 100%);
  color: var(--blue);
}

.cta-mobile-button svg {
  flex-shrink: 0;
}

/* Header Styles */
header {
  background: var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Hello Bar Styles */
.hello-bar {
  background: var(--blue);
  padding: 12px 0;
}

.hello-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.hello-bar-text,
.hello-bar-link {
  font-family: var(--heading-font);
  color: #fff;
  margin: 0;
}

.hello-bar-text {
  font-size: 16px;
}

.hello-bar-link {
  font-size: 16px;
  text-decoration: underline;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.hello-bar-link:hover {
  opacity: 0.8;
  color: #fff;
}

.header-nav {
  background: var(--red);
  padding: 0 !important;
  min-height: 80px;
}

.header-nav.navbar {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.header-nav .container {
  min-height: 80px;
  display: flex;
  align-items: stretch;
}

.navbar-brand {
  padding: 15px 0;
  margin-right: 0;
  align-self: center;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Collapse Flex Layout */
.navbar-collapse {
  display: flex;
  justify-content: center;
  width: auto;
  align-items: stretch;
}

/* Main Menu Styles */
.navbar-nav {
  gap: 20px;
  display: flex;
  align-items: stretch;
}

.navbar-nav .nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.navbar-nav .nav-link {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 16px;
  padding: 0 15px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  align-self: stretch;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--blue);
}

.navbar-nav .nav-item:hover {
  background: linear-gradient(180deg, #EBAA3F 0%, #FFAD27 100%);
}

.navbar-nav .nav-item:hover .nav-link {
  color: var(--blue);
}

/* Dropdown Styles - Desktop */
.navbar-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 97%;
  left: 0;
  width: 360px;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: 0 4px 36px 0 rgba(61, 61, 61, 0.25);
  z-index: 1000;
  margin-top: 0;
}

/* Hover solo en desktop (>992px) - en mobile se controla por JS */
@media (min-width: 993px) {
  .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 8px;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* Mobile dropdown arrow toggle button */
.dropdown-arrow-toggle {
  display: none;
}

@media (max-width: 992px) {
  .dropdown-arrow-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    cursor: pointer;
    z-index: 10;
  }

  .dropdown-arrow-toggle::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 0.4em solid;
    border-right: 0.4em solid transparent;
    border-bottom: 0;
    border-left: 0.4em solid transparent;
    transition: transform 0.3s ease;
  }

  .nav-item.dropdown.show .dropdown-arrow-toggle::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .nav-item.dropdown {
    position: relative;
  }

  .navbar-nav .dropdown-toggle::after {
    display: none;
  }
}

.navbar-nav .dropdown-item {
  padding: 25px 40px;
  font-family: var(--button-font);
  font-size: 16px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
  background: var(--blue);
  color: #fff;
}

/* CTA Header Styles */
.header-nav .cta-primary {
  align-self: center;
}

/* Home Hero Styles */
.home-hero {
  padding: 0;
}

body.home .home-hero {
  padding: 0 0 360px 0;
}

.hero-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.hero-left {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.hero-left .left-content{
  padding: 0 50px 0 120px;
}

.hero-left img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  animation: slideInFromLeft 1.5s ease-out;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cta-phone-number {
  color: var(--blue);
  border-radius: 32px;
  border: 1px solid var(--blue);
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
  font-weight: 700;
  font-size: 22px;
  font-family: var(--button-font);
  text-transform: uppercase;
  padding: 12px 24px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.cta-phone-number:hover {
  box-shadow: 0 2px 10px 0 rgba(156, 156, 156, 0.75);
  background: #f5f5f5;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}

.review-logos {
  display: flex;
  background-image: url('/wp-content/uploads/2025/11/Rectangle-489.png');
  background-size: cover;
  padding: 14px;
  gap: 30px;
  align-items: center;
}

.review-logos img {
  max-width: 120px;
  height: auto;
}

.coupons-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 20px;
}

.coupon-hero-item {
  border: 2px dashed var(--blue);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  background: #EFEFEF;
  gap: 10px;
  text-align: center;
  align-items: center;
  max-width: 433px;
}

.coupon-hero-title {
  font-family: var(--heading-font);
  font-size: 52px;
  font-weight: bold;
  color: var(--blue);
  margin: 0;
}

.coupon-hero-content {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  color: var(--blue);
}

.coupon-hero-content strong {
  font-size: 18px;
  font-family: var(--heading-font);
}

.coupon-hero-content p {
  margin-bottom: 10px;
}

.coupon-hero-content p:last-child {
  margin-bottom: 0;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: bold;
  color: var(--blue);
  line-height: 69px;
  margin: 0;
}

.hero-content-text {
  font-size: 16px;
  line-height: 29px;
  color: var(--blue);
  padding-bottom: 15px;
}

.hero-content-text p {
  margin-bottom: 15px;
}

.hero-content-text p:last-child {
  margin-bottom: 0;
}


/* Services Section Styles */
.services-section {
  padding: 80px 0;
  color: var(--blue);
}

/* Margin negativo solo cuando viene después de home-hero */
.home-hero + .services-section {
  margin-top: -330px;
}

.services-title {
  font-family: var(--heading-font);
  font-size: 52px;
  font-weight: bold;
  color: var(--blue);
  text-align: center;
}

.services-content {
  text-align: center;
  font-size: 16px;
  line-height: 29px;
}

.services-content p {
  margin-bottom: 15px;
}

.services-content p:last-child {
  margin-bottom: 0;
}

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

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 370px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-card:hover {
  border: 2px solid #EBAA3F;
}

.service-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #04233B 0%, rgba(4, 35, 59, 0.00) 100%);
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  opacity: 0;
  z-index: 4;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 0.89;
}

.service-card:hover .service-overlay {
  opacity: 0;
}

.service-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 20px;
  gap: 15px;
  transition: justify-content 0.3s ease;
}

.service-card:hover .service-content {
  justify-content: center;
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-title {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.service-cta {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.service-card:hover .service-cta {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* About Us Section Styles */
.about-us-section {
  padding: 70px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
  background-image: url('/wp-content/uploads/2025/11/shutterstock_723456373-24.png');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  border-radius: 60px 8px 200px 365px;
  padding-right: 70px;
}

.about-left {
  flex: 1;
}

.about-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.about-title {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: bold;
  color: white;
  line-height: 44px;
  margin: 0;
}

.about-content-text {
  font-size: 16px;
  line-height: 29px;
  color: white;
}

.about-content-text p {
  margin-bottom: 15px;
}

.about-content-text p:last-child {
  margin-bottom: 0;
}


/* Logo Grid Section Styles */
.logo-grid-section {
  padding: 60px 0;
}

.logo-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-grid img {
  max-height: 80px;
  width: auto;
}


/* Financing Section Styles */
#financing {
  padding: 70px 0;
}

.financing-section {
  background-image: url('/wp-content/uploads/2025/11/shutterstock_723456373-24.png');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  padding: 50px;
  border-radius: 16px;
}

.financing-content {
  display: flex;
  gap: 60px;
}

.financing-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.financing-right {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 27px;
}

.financing-right img {
  background-color: var(--red);
  padding: 30px 90px;
  border: 3px solid white;
  border-radius: 8px; 
  width:100%;
  height:100%;
}


.financing-title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: bold;
  color: white;
  text-transform: none;
  line-height: 44px;
  margin: 0;
}

.financing-content-text {
  font-size: 16px;
  line-height: 29px;
  color: white;
  max-width: 590px;
}

.financing-content-text p {
  margin-bottom: 15px;
}

.financing-content-text p:last-child {
  margin-bottom: 0;
}


/* Coupons Section Styles */
.coupons-section {
  padding: 80px 0;
}

.coupons-title {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: bold;
  text-transform: none;
  color: var(--blue);
  text-align: center;
  margin: 0 0 10px 0;
}

.coupons-content {
  text-align: center;
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 22px;
}

.coupons-content p {
  margin-bottom: 15px;
}

.coupons-content p:last-child {
  margin-bottom: 0;
}

.coupons-slider {
  margin-top: 40px;
  position: relative;
  padding: 0 60px;
}

.coupon-slide {
  padding: 0 12px;
}

.coupon-card {
  position: relative;
  background-image: url('/wp-content/uploads/2025/11/shutterstock_723456373-24.svg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  color: white;
  border: 2px solid white;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
  z-index: 0;
}

.coupon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--red);
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.coupon-card:hover::before {
  opacity: 1;
}

.coupon-card-inner {
  position: relative;
  padding: 20px;
  border-radius: 8px;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, white, white 12px, transparent 12px, transparent 24px),
    repeating-linear-gradient(90deg, white, white 12px, transparent 12px, transparent 24px),
    repeating-linear-gradient(180deg, white, white 12px, transparent 12px, transparent 24px),
    repeating-linear-gradient(270deg, white, white 12px, transparent 12px, transparent 24px);
  background-size: 2px 100%, 100% 2px, 2px 100%, 100% 2px;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;
  text-align: center;
  transition: background-image 0.3s ease;
  z-index: 1;
}

.coupon-card:hover .coupon-card-inner {
  background-image: 
    repeating-linear-gradient(0deg, #FFAD27, #FFAD27 12px, transparent 12px, transparent 24px),
    repeating-linear-gradient(90deg, #FFAD27, #FFAD27 12px, transparent 12px, transparent 24px),
    repeating-linear-gradient(180deg, #FFAD27, #FFAD27 12px, transparent 12px, transparent 24px),
    repeating-linear-gradient(270deg, #FFAD27, #FFAD27 12px, transparent 12px, transparent 24px);
}

.coupon-image {
  max-width: 160px;
  max-height: 160px;
  display: unset !important;
}

.coupon-price {
  font-family: var(--content-font);
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  margin: 15px 0;
  line-height: 1.2;
}

.coupon-title {
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: bold;
  color: white;
  margin: 0 0 10px 0;
}

.coupon-content-text {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 24px;
}

.coupon-content-text p {
  margin-bottom: 10px;
}

.coupon-content-text p:last-child {
  margin-bottom: 0;
}

.coupon-card .cta-primary {
  margin-bottom: 15px;
  display: inline-flex;
}

.coupon-terms {
  font-size: 12px;
  line-height: 13px;
}

.coupon-terms p {
  margin-bottom: 5px;
}

.coupon-terms p:last-child {
  margin-bottom: 0;
}


/* CTA Section Styles */
.cta-section {
  padding: 80px 20px 60px 0;
}

.cta-section__wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
}

.cta-section__left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.cta-section__image {
  display: flex;
  align-items: center;
}

.cta-section__image img {
  width: 100%;
  height: auto;
  display: block;
  animation: slideInFromLeft 1.5s ease-out;
}

.cta-section__right {
  flex: 1;
  background: var(--red);
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  max-width: 500px;
}

.cta-section__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 35px 25px;
}

.cta-section__title {
  color: white;
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: bold;
  text-transform: none;
  line-height: 1;
  margin: 0;
}

.cta-section__text {
  color: white;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}

.cta-section__text p {
  margin-bottom: 15px;
}

.cta-section__text p:last-child {
  margin-bottom: 0;
}

.cta-section__cta {
  margin-top: 10px;
}

.cta-section__review-logos {
  background: var(--blue);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  width: 100%;
}

.cta-section__review-logos img {
  max-height: 50px;
}


/* Footer Styles */
.footer {
  background-image: url('/wp-content/uploads/2025/11/shutterstock_723456373-24.svg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  padding: 60px 0 30px;
  color: white;
}

/* Primera fila - Logo */
.footer__logo-row {
  margin-bottom: 25px;
}

.footer__column {
  text-align: center;
  margin-bottom: 30px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.footer__social-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer__social-link:hover {
  opacity: 0.7;
}

.footer__social-link img {
  max-width: 30px;
  height: auto;
  display: block;
}

.footer__title {
  color: white;
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 5px;
}

.footer__content {
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 29px;
}

.footer__phone-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__phone-link:hover {
  color: var(--red);
  text-decoration: underline;
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

.footer__copyright,
.footer__lmh-text {
  color: white;
  font-size: 12px;
  font-weight: 500;
}

.footer__lmh-text{text-decoration: underline;}

.footer__legal-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: var(--red);
  text-decoration: underline;
}

/* Footer Menus */
.footer__column .plumbing-menu,
.footer__column .resources-menu,
.footer__column .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer__column .plumbing-menu li,
.footer__column .resources-menu li,
.footer__column .footer-nav li {
  margin: 0;
}

.footer__column .plumbing-menu a,
.footer__column .resources-menu a,
.footer__column .footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer__column .plumbing-menu a:hover,
.footer__column .resources-menu a:hover,
.footer__column .footer-nav a:hover {
  color: var(--red);
  text-decoration: underline;
}




.areas-we-serve {
  padding: 80px 0 0 0;
  position: relative;
  z-index: 2;
}

.areas-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 40px;
  color: var(--blue);
  text-transform: capitalize;
  letter-spacing: -0.48px;
  line-height: 44px;
  margin-bottom: 0;
}

.areas-content {
  font-size: 16px;
  line-height: 29px;
  color: var(--blue);
}

.areas-content-wrapper {
  margin-top: 27px;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.map-container {
  width: 100%;
  height: 400px;
  position: relative;
  border: 2px solid white;
  border-radius: 8px;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 2px solid white;
  border-radius: 8px;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
}

.cities-section {
  padding: 20px;
  border-radius: 0 0 8px 8px;
}

.cities-desktop,
.cities-mobile {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.city-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.city-item:hover .city-name {
  color: #ed1c24;
}

/* City Link Styles */
.city-link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.city-link:hover {
  color: white;
  text-decoration: none;
}

.city-link:hover .city-name {
  color: #ed1c24;
}

.city-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.city-name {
  font-family: var(--content-font);
  font-size: 20px;
  text-decoration: underline;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: -0.24px;
  transition: color 0.3s ease;
}

.areas-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* Reviews Section Styles */
.reviews-section {
  padding: 80px 0;
}

.reviews-title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: bold;
  color: var(--blue);
  text-align: center;
  margin: 0 0 10px 0;
}

.reviews-content {
  text-align: center;
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 40px;
  color: var(--blue);
}

.reviews-content p {
  margin-bottom: 15px;
}

.reviews-content p:last-child {
  margin-bottom: 0;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 20px;
  display: none;
}

.reviews-header-left .reviews-label {
  font-family: var(--content-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
}

.reviews-header-right .reviews-total {
  font-family: var(--content-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--blue);
}

.reviews-slider {
  margin-top: 40px;
  position: relative;
  padding: 0 60px;
}

.review-slide {
  padding: 0 12px;
  height: 100%;
}

.review-slide > div {
  height: 100%;
}

.review-card {
  position: relative;
  background-image: url('/wp-content/uploads/2025/11/shutterstock_723456373-24.png');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  border-radius: 8px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease;
  min-height: 427px;
  height: 427px;
  border: 2px solid white;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
  z-index: 0;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--red);
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.review-card:hover {
  transform: translateY(-2px);
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover .google-icon {
  filter: brightness(0) invert(1);
}

.review-card .stars {
  display: flex;
  margin-bottom: 10px;
}

.top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-date {
  font-family: var(--content-font);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-content {
  font-family: var(--content-font);
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 220px;
  flex: 1;
  min-height: 0;
}

.review-content.expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
  max-height: 220px;
}

.review-content-ellipsis {
  color: #fff;
  font-size: 16px;
}

.review-content.expanded .review-content-ellipsis {
  display: none;
}

.read-more-btn {
  text-align: left;
  background: none;
  border: none;
  color: #FFAD27;
  font-family: var(--content-font);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 0 0 0;
  margin-top: 5px;
  display: inline-block;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #EBAA3F;
}

.review-content.expanded .read-more-btn {
  display: none;
}

/* Custom Scrollbar for Review Content */
.review-content.expanded::-webkit-scrollbar {
  width: 4px;
}

.review-content.expanded::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.review-content.expanded::-webkit-scrollbar-thumb {
  background: #FFAD27;
  border-radius: 2px;
}

.review-content.expanded::-webkit-scrollbar-thumb:hover {
  background: #EBAA3F;
}

.review-name-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  min-height: 40px;
  flex-shrink: 0;
}

.review-name {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.google-icon {
  max-width: 26px;
  height: auto;
}

.review-content p {
  margin-bottom: 12px;
}

.review-content p:last-child {
  margin-bottom: 0;
}

.no-reviews {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 18px;
}


/* Left Content Right Slider Section */
.left-content-right-slider-section {
  padding: 80px 0;
}

.lcrs-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.lcrs-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.lcrs-title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
  line-height: 1.2;
}

.lcrs-content {
  font-family: var(--content-font);
  font-size: 16px;
  color: var(--blue);
  line-height: 1.6;
}

.lcrs-content p {
  margin-bottom: 15px;
}

.lcrs-content p:last-child {
  margin-bottom: 0;
}

.lcrs-right {
  flex: 1;
  position: relative;
  min-width: 0;
  max-width: 50%;
}

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

.lcrs-slider .slick-list {
  overflow: hidden;
}

.lcrs-slider .slick-track {
  display: flex;
  align-items: center;
}

.lcrs-slide {
  padding: 0 10px;
}

.lcrs-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
  display: block;
}

/* Custom arrows for Left Content Right Slider */
.lcrs-slider .slick-arrow.lcrs-arrow {
  background: var(--red) !important;
}

.lcrs-slider .slick-arrow.lcrs-arrow:hover {
  background: #A01D1E !important;
}

.lcrs-slider .slick-prev.lcrs-arrow {
  left: 10px;
}

.lcrs-slider .slick-next.lcrs-arrow {
  right: 10px;
}

/* Dots for Left Content Right Slider */
.lcrs-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.lcrs-slider .slick-dots li {
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
}

.lcrs-slider .slick-dots li button {
  width: 40px;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 16px;
  background: #D5D5D5;
  font-size: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lcrs-slider .slick-dots li button::before {
  display: none;
}

.lcrs-slider .slick-dots li.slick-active button {
  background: var(--blue);
}

/* Responsive styles for Left Content Right Slider */
@media (max-width: 992px) {
  .lcrs-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .lcrs-left {
    width: 100%;
    max-width: 100%;
  }

  .lcrs-right {
    width: 100%;
    max-width: 100%;
  }
}


/* Grid Values Section */
.grid-values-section {
  padding: 80px 0;
}

.grid-values-title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin: 0 0 10px 0;
}

.grid-values-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.grid-value-card {
  flex: 0 1 calc(50% - 12px);
  max-width: calc(50% - 12px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.79);
  padding: 56px 43px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.grid-value-icon {
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.grid-value-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.grid-value-card-title {
  font-family: var(--content-font);
  font-size: 31px;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
  text-transform: uppercase;
}

.grid-value-card-content {
  font-family: var(--content-font);
  font-size: 16px;
  color: var(--blue);
  line-height: 1.6;
  max-width: 443px;
  margin: 0 auto;
}

.grid-value-card-content p {
  margin-bottom: 10px;
}

.grid-value-card-content p:last-child {
  margin-bottom: 0;
}

/* Responsive Grid Values */
@media (max-width: 768px) {
  .grid-value-card {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .grid-values-title {
    font-size: 32px;
  }

  .grid-value-card-title {
    font-size: 24px;
  }
}


/* Left Content Right Image Section */
.left-content-right-image-section {
  padding: 80px 0 0 0;
  position: relative;
}

.lcri-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

.lcri-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  padding-bottom: 80px;
}

.lcri-title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  color: var(--blue);
  margin: 0;
  line-height: 1.2;
}

.lcri-content {
  font-family: var(--content-font);
  font-size: 16px;
  color: var(--blue);
  line-height: 1.6;
}

.lcri-content p {
  margin-bottom: 15px;
}

.lcri-content p:last-child {
  margin-bottom: 0;
}

.lcri-right {
  flex: 1;
  position: relative;
  min-width: 0;
  max-width: 50%;
  display: flex;
  align-items: flex-end;
}

.lcri-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive styles for Left Content Right Image */
@media (max-width: 992px) {
  .lcri-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .lcri-left {
    width: 100%;
    max-width: 100%;
    padding-bottom: 40px;
    text-align: center;
  }

  .lcri-right {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

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


/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin: 0 0 40px 0;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.team-card {
  flex: 0 1 calc(25% - 18px);
  max-width: calc(25% - 18px);
  background: var(--blue);
  border-radius: 8px;
  border: 2px solid white;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  background: #C72627;
  border-color: #EBAA3F;
}

.team-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.team-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background: linear-gradient(180deg, rgba(4, 35, 59, 0.00) 0%, #04233B 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-card-image::after {
  opacity: 0.88;
}

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

.team-card-info {
  padding: 15px 20px;
  text-align: center;
}

.team-card-name {
  font-family: var(--content-font);
  font-size: 31px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}

.team-card-role {
  font-family: var(--extra-font);
  font-size: 16px;
  color: #fff;
  margin: 0;
}

/* Team Modal */
.team-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-modal.active {
  opacity: 1;
  visibility: visible;
}

.team-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.team-modal-content {
  position: relative;
  background: #C72627;
  padding: 50px 30px;
  border-radius: 8px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.team-modal.active .team-modal-content {
  transform: scale(1);
}

.team-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.team-modal-close:hover {
  opacity: 0.7;
}

.team-modal-inner {
  display: flex;
}

.team-modal-left {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
}

.team-modal-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, rgba(199, 38, 39, 0.00) 0%, #C72627 100%);
  pointer-events: none;
}

.team-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-modal-right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 90vh;
}

.team-modal-name {
  font-family: var(--content-font);
  font-size: 31px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}

.team-modal-role {
  font-family: var(--content-font);
  font-size: 16px;
  color: #fff;
  margin: 0;
}

.team-modal-bio {
  font-family: var(--content-font);
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-top: 15px;
}

.team-modal-bio p {
  margin-bottom: 15px;
}

.team-modal-bio p:last-child {
  margin-bottom: 0;
}

body.modal-open {
  overflow: hidden;
}

/* Responsive Team */
@media (max-width: 1200px) {
  .team-card {
    flex: 0 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}

@media (max-width: 992px) {
  .team-card {
    flex: 0 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
    background: #C72627;
    border-color: #EBAA3F;
  }

  .team-card-image::after {
    opacity: 0.88;
  }

  .team-modal-content {
    padding: 15px 10px;
  }

  .team-modal-inner {
    flex-direction: column;
  }

  .team-modal-left {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .team-modal-image {
    max-height: 300px;
    object-fit: contain;
  }

  .team-modal-right {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .team-card {
    flex: 0 1 100%;
    max-width: 100%;
  }

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

  .team-modal-name {
    font-size: 24px;
  }
}


/* Content Block Section */
.content-block-section {
  padding: 80px 0;
}

.content-block-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.content-block-wrapper h1 {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 20px 0;
}

.content-block-wrapper h2 {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 20px 0;
}

.content-block-wrapper h3,
.content-block-wrapper h4,
.content-block-wrapper h5,
.content-block-wrapper h6 {
  font-family: var(--content-font);
  color: var(--blue);
  margin: 0 0 15px 0;
}

.content-block-wrapper h3 {
  font-size: 31px;
  font-weight: 700;
}

.content-block-wrapper h4 {
  font-size: 24px;
  font-weight: 700;
}

.content-block-wrapper h5 {
  font-size: 20px;
  font-weight: 700;
}

.content-block-wrapper h6 {
  font-size: 18px;
  font-weight: 700;
}

.content-block-wrapper p {
  font-family: var(--content-font);
  font-size: 16px;
  color: var(--blue);
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.content-block-wrapper p:last-child {
  margin-bottom: 0;
}


/* About Hero Section */
.about-hero {
  padding: 60px 0 0 0;
}

.about-hero-row-1 {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.about-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-hero-title {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin: 0;
  max-width: 627px;
  text-transform: capitalize;
}

.about-hero-content {
  font-family: var(--content-font);
  font-size: 16px;
  color: var(--blue);
  line-height: 1.6;
  max-width: 587px;
}

.about-hero-content p {
  margin-bottom: 15px;
}

.about-hero-content p:last-child {
  margin-bottom: 0;
}

.about-hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}

.about-hero-right {
  flex: 0 0 auto;
}

.about-hero-wolf {
  width: 100%;
  height: auto;
}

.about-hero-row-2 {
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

.about-hero-image-wrapper {
  position: relative;
  width: 100%;
}

.about-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 2px solid #FFF;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
}

.about-hero-reviews {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: var(--blue);
  border-radius: 40px 0 6px 0;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-hero-reviews img {
  max-height: 40px;
  width: auto;
}

/* Responsive About Hero */
@media (max-width: 992px) {
  .about-hero-row-1 {
    flex-direction: column;
    text-align: center;
  }

  .about-hero-left {
    align-items: center;
  }

  .about-hero-ctas {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-hero-title {
    font-size: 40px;
  }

  .about-hero-wolf {
    max-width: 200px;
  }

  .about-hero-reviews {
    position: relative;
    border-radius: 8px;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .about-hero-title {
    font-size: 32px;
  }

  .about-hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .about-hero-ctas .cta-primary,
  .about-hero-ctas .cta-phone-number {
    width: 100%;
    justify-content: center;
  }

  .about-hero-reviews {
    flex-wrap: wrap;
    gap: 15px;
  }

  .about-hero-reviews img {
    max-height: 30px;
  }
}


/* Services Hero Section */
.services-hero {
  padding: 60px 0 80px 0;
}

.services-hero-row-1 {
  display: flex;
  align-items: center;
  gap: 40px;
}

.services-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.services-hero-title {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin: 0;
  max-width: 627px;
  text-transform: capitalize;
}

.services-hero-content {
  font-family: var(--content-font);
  font-size: 16px;
  color: var(--blue);
  line-height: 1.6;
  max-width: 587px;
}

.services-hero-content p {
  margin-bottom: 15px;
}

.services-hero-content p:last-child {
  margin-bottom: 0;
}

.services-hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}

.services-hero-right {
  flex: 0 0 auto;
}

.services-hero-wolf {
  width: 100%;
  height: auto;
}

.services-hero-row-2 {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.services-hero-reviews {
  max-width: 761px;
  width: 100%;
  background: var(--blue);
  border-radius: 50px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.services-hero-reviews img {
  max-height: 50px;
  width: auto;
}

/* Responsive Services Hero */
@media (max-width: 992px) {
  .services-hero {
    padding: 0 0 40px 0;
  }

  .services-hero .container {
    display: flex;
    flex-direction: column;
  }

  .services-hero-row-2 {
    order: 1;
    margin: 0 -15px;
  }

  .services-hero-row-1 {
    order: 2;
    flex-direction: column;
    text-align: left;
    margin-top: 30px;
  }

  .services-hero-left {
    align-items: flex-start;
    order: 2;
  }

  .services-hero-right {
    order: 1;
    align-self: flex-start;
  }

  .services-hero-ctas .cta-phone-number {
    display: none;
  }

  .services-hero-title {
    font-size: 40px;
    max-width: 100%;
  }

  .services-hero-content {
    max-width: 100%;
  }

  .services-hero-wolf {
    max-width: 120px;
  }

  .services-hero-reviews {
    max-width: 100%;
    border-radius: 0;
    padding: 20px 15px;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .services-hero-title {
    font-size: 46px;
  }

  .services-hero-reviews {
    flex-wrap: wrap;
    gap: 20px;
  }

}


/* Services Areas Hero Section */
.services-areas-hero {
  padding: 60px 0 80px 0;
}

.sah-row-1 {
  display: flex;
  align-items: center;
  gap: 40px;
}

.sah-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sah-title {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin: 0;
  max-width: 627px;
  text-transform: capitalize;
}

.sah-content {
  font-family: var(--content-font);
  font-size: 16px;
  color: var(--blue);
  line-height: 1.6;
  max-width: 587px;
}

.sah-content p {
  margin-bottom: 15px;
}

.sah-content p:last-child {
  margin-bottom: 0;
}

.sah-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}

.sah-right {
  flex: 0 0 auto;
}

.sah-wolf {
  width: 100%;
  height: auto;
}

/* Reviews Mobile (hidden on desktop) */
.sah-reviews-mobile {
  display: none;
}

/* Map Section */
.sah-map-wrapper {
  position: relative;
  margin-top: -40px;
}

.sah-map-container {
  width: 100%;
  height: 400px;
  border: 2px solid white;
  border-radius: 8px;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
  overflow: hidden;
}

.sah-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.sah-reviews {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: var(--blue);
  border-radius: 40px 0 6px 0;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sah-reviews img {
  max-height: 40px;
  width: auto;
}

/* Cities Section */
.sah-cities {
  margin-top: 30px;
}

.sah-cities-desktop {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.sah-cities-mobile {
  display: none;
}

.sah-city-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.sah-city-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sah-city-item:hover .sah-city-name {
  color: var(--red);
}

.sah-city-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.sah-city-name {
  font-family: var(--content-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: -0.24px;
  transition: color 0.3s ease;
}

/* Responsive Services Areas Hero */
@media (max-width: 992px) {
  .services-areas-hero {
    padding: 0 0 40px 0;
  }

  .services-areas-hero .container {
    display: flex;
    flex-direction: column;
  }

  /* Order: 1. Reviews Mobile, 2. Row-1 (wolf, title, content, cta), 3. Map, 4. Cities */
  .sah-reviews-mobile {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    background: var(--blue);
    padding: 20px 15px;
    margin: 0 -15px 30px -15px;
  }

  .sah-reviews-mobile img {
    max-height: 50px;
    width: auto;
  }

  .sah-row-1 {
    order: 2;
    flex-direction: column;
    text-align: left;
  }

  .sah-right {
    order: 1;
    align-self: flex-start;
  }

  .sah-left {
    order: 2;
    align-items: flex-start;
  }

  .sah-map-wrapper {
    order: 3;
    margin: 30px 0 0 0;
  }

  .sah-map-container {
    height: 430px;
  }

  /* Hide desktop reviews on map */
  .sah-reviews {
    display: none;
  }

  .sah-cities {
    order: 4;
    margin-top: 30px;
  }

  .sah-cities-desktop {
    display: none;
  }

  .sah-cities-mobile {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .sah-ctas .cta-phone-number {
    display: none;
  }

  .sah-title {
    font-size: 46px;
    max-width: 100%;
  }

  .sah-content {
    max-width: 100%;
  }

  .sah-wolf {
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .sah-title {
    font-size: 32px;
  }

  .sah-reviews-mobile {
    flex-wrap: wrap;
    gap: 20px;
  }

  .sah-cities-mobile {
    gap: 15px;
  }

  .sah-city-column {
    gap: 15px;
  }

  .sah-city-name {
    font-size: 16px;
  }

  .sah-city-icon {
    width: 28px;
    height: 28px;
  }
}


/* Financing Hero Section */
.financing-hero {
  position: relative;
}

.financing-hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.financing-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(4, 35, 59, 0.00) 0%, #04233B 100%);
  pointer-events: none;
}

.financing-hero-bg .container {
  position: relative;
  z-index: 1;
}

.financing-hero-title {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0;
}

.financing-hero-logos-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

.financing-hero-logos {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.financing-hero-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 450px;
}

.financing-hero-logo {
  background-color: var(--blue);
  padding: 30px 60px;
  border: 3px solid white;
  border-radius: 9px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 138px;
}

.financing-hero-logo img {
  width: auto;
  display: block;
}

/* Responsive Financing Hero */
@media (max-width: 992px) {
  .financing-hero-logos {
    gap: 40px;
  }

  .financing-hero-logo-item {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .financing-hero-bg {
    height: 220px;
  }

  .financing-hero-title {
    font-size: 40px;
  }

  .financing-hero-logos {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .financing-hero-logo-item {
    width: 100%;
    max-width: 400px;
  }

  .financing-hero-logo {
    padding: 25px 40px;
  }
}

@media (max-width: 576px) {
  .financing-hero-title {
    font-size: 32px;
  }

  .financing-hero-logo {
    padding: 20px 30px;
  }

  .financing-hero-logo img {
    max-height: 40px;
  }
}


/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.benefits-title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 40px 0;
}

.benefits-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  flex: 0 1 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  background-image: url('https://whitewolfplstg.wpenginepowered.com/wp-content/uploads/2026/01/image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  border: 2px solid #fff;
  padding: 50px 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: border-color 0.3s ease;
}

.benefit-card:hover {
  border-color: #EBAA3F;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.benefit-card-title {
  font-family: var(--content-font);
  font-size: 31px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px 0;
  max-width: 259px;
  text-transform: uppercase;
}

.benefit-card-content {
  font-family: var(--content-font);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}

.benefit-card-content p {
  margin: 0;
}

@media (max-width: 992px) {
  .benefit-card {
    flex: 0 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 576px) {
  .benefits-title {
    font-size: 32px;
  }

  .benefit-card {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .benefit-card-title {
    font-size: 24px;
  }
}


/* Blog Hero */
.blog-hero {
  position: relative;
}

.blog-hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(4, 35, 59, 0.00) 0%, #04233B 100%);
  pointer-events: none;
}

.blog-hero-bg .container {
  position: relative;
  z-index: 1;
}

.blog-hero-title {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0;
}


/* Featured Article Section */
.featured-article-section {
  padding: 80px 0;
}

.featured-article-heading {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 30px 0;
  text-align: left;
}

.featured-article-card {
  display: flex;
  width: 100%;
  background: var(--blue);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-article-image {
  flex: 0 0 65%;
  max-width: 65%;
}

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

.featured-article-content {
  flex: 0 0 35%;
  max-width: 35%;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.featured-article-title {
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.featured-article-date {
  font-family: var(--content-font);
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.featured-article-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.featured-article-categories .category-tag,
.article-card-categories .category-tag {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #EBAA3F;
  text-transform: uppercase;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #EBAA3F;
  display: inline-block;
}

.featured-article-excerpt {
  font-family: var(--content-font);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  padding-bottom: 85px;
}

.featured-article-card .cta-primary {
  align-self: flex-start;
  padding: 11px 24px;
  width: 168px;
  justify-content: center;
}


/* All Articles Section */
.all-articles-section {
  padding: 0 0 80px 0;
}

.all-articles-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.all-articles-heading {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}

.all-articles-filter {
  display: flex;
  align-items: center;
  gap: 15px;
}

.filter-label {
  font-family: var(--content-font);
  font-size: 16px;
  color: var(--blue);
}

.category-filter {
  font-family: var(--content-font);
  font-size: 16px;
  padding: 10px 40px 10px 15px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2304233B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.category-filter:focus {
  outline: none;
  border-color: #EBAA3F;
}


/* Articles Grid */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.article-card {
  flex: 0 1 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 0 6px 0 rgba(156, 156, 156, 0.75);
  transition: background 0.3s ease, transform 0.3s ease;
}

.article-card:hover {
  background: var(--blue);
  transform: translateY(-5px);
}

.article-card-image {
  width: 100%;
  height: 224px;
}

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

.article-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  text-align: center;
}

.article-card-title {
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 10px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.article-card:hover .article-card-title {
  color: #fff;
}

.article-card-date {
  font-family: var(--content-font);
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.article-card:hover .article-card-date {
  color: #fff;
}

.article-card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
  justify-content: center;
}

.article-card-excerpt {
  font-family: var(--content-font);
  font-size: 16px;
  color: var(--blue);
  line-height: 1.6;
  padding-bottom: 19px;
  transition: color 0.3s ease;
}

.article-card:hover .article-card-excerpt {
  color: rgba(255, 255, 255, 0.9);
}

.article-card .cta-primary {
  align-self: center;
  padding: 11px 24px !important;
  margin-top: auto;
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
  width: 168px;
  justify-content: center;
}

.article-card .cta-primary::before {
  display: none;
}

.article-card:hover .cta-primary {
  background: linear-gradient(180deg, #EBAA3F 0%, #FFAD27 100%);
  color: var(--blue);
  border: 1px solid #fff;
}


/* Responsive Blog */
@media (max-width: 992px) {
  .featured-article-card {
    flex-direction: column;
  }

  .featured-article-image {
    flex: 0 0 100%;
    max-width: 100%;
    height: 300px;
  }

  .featured-article-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px 25px;
  }

  .article-card {
    flex: 0 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .all-articles-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .all-articles-filter {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .blog-hero-bg {
    height: 220px;
  }

  .blog-hero-title {
    font-size: 40px;
  }

  .featured-article-heading,
  .all-articles-heading {
    font-size: 32px;
  }

  .featured-article-title {
    font-size: 18px;
  }

  .article-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .blog-hero-title {
    font-size: 32px;
  }

  .featured-article-image {
    height: 200px;
  }

  .featured-article-content {
    padding: 25px 20px;
  }

  .featured-article-categories .category-tag,
  .article-card-categories .category-tag {
    font-size: 14px;
    padding: 4px 8px;
  }
}


/* 404 Error Page */
.error-404-section {
  background-image: url('https://whitewolfplstg.wpenginepowered.com/wp-content/uploads/2026/01/405.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404-wrapper {
  padding: 70px 0;
}

.error-404-content {
  text-align: center;
}

.error-404-title {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 20px 0;
}

.error-404-text {
  font-family: var(--content-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 40px;
  max-width: 866px;
}

.error-404-text p {
  margin: 0;
}

.error-404-menu {
  max-width: 715px;
  margin: 0 auto;
}

.error-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px 46px;
  height: 160px;
}

.error-menu-list li {
  width: calc(33.333% - 31px);
  text-align: left;
}

.error-menu-list li a {
  font-family: var(--content-font);
  font-size: 27px;
  font-weight: 600;
  color: #C72627;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.error-menu-list li a:hover {
  opacity: 0.8;
}



/* Responsive 404 */
@media (max-width: 992px) {
  .error-404-section {
    background-position: top;
    margin-top: 50px;
    padding-top: 80px;
  }

  .error-menu-list li a {
    font-size: 27px;
  }
  .error-menu-list li:nth-child(3),
.error-menu-list li:nth-child(6) {
  margin-bottom: 46px;
}
}

@media (max-width: 768px) {
  .error-404-title {
    font-size: 40px;
  }

  .error-menu-list {
    height: auto;
    flex-direction: row;
    gap: 15px 30px;
  }

  .error-menu-list li {
    width: calc(50% - 15px);
  }


}

@media (max-width: 576px) {
  .error-404-title {
    font-size: 32px;
  }

  .error-menu-list li {
    width: 100%;
    text-align: center;
  }
}


/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
}

.contact-info-wrapper {
  background-image: url('https://whitewolfplstg.wpenginepowered.com/wp-content/uploads/2025/11/shutterstock_723456373-24.png');
  background-size: contain;
  background-repeat: repeat;
  border-radius: 40px;
  padding: 60px;
}

.contact-info-row-1 {
  display: flex;
  gap: 60px;
}

.contact-info-left {
  flex: 1;
}

.contact-info-title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
  max-width: 415px;
}

.contact-info-content {
  font-family: var(--content-font);
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  max-width: 415px;
  padding-bottom: 40px;
  border-bottom: 2px solid #fff;
  margin-bottom: 0;
}

.contact-info-content p {
  margin: 0;
}

.contact-info-hours-title {
  font-family: var(--content-font);
  font-size: 31px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  max-width: 356px;
  margin: 0 0 10px 0;
  padding-top: 54px;
}

.contact-info-hours-content {
  font-family: var(--content-font);
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

.contact-info-hours-content p {
  margin: 0;
}

.contact-info-phone-title {
  font-family: var(--content-font);
  font-size: 31px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
  padding-top: 54px;
}

.contact-info-phone-content {
  font-family: var(--content-font);
  font-size: 23px;
  color: #fff;
  line-height: 1.6;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.contact-info-phone-content:hover {
  color: #EBAA3F;
}
.contact-info-phone-content svg {
  flex-shrink: 0;
}

.contact-info-phone-content p {
  margin: 0;
}

.contact-info-address-title {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
  padding-top: 37px;
}

.contact-info-address-content {
  font-family: var(--content-font);
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

.contact-info-address-content p {
  margin: 0;
}

/* Right Column: Form */
.contact-info-right {
  flex: auto;
  max-width: 690px;
}

.contact-info-form-outer {
  background-color: #C72627;
  border-radius: 8px;
  padding: 9px;
}

.contact-info-form-inner {
  background-color: #C72627;
  border-radius: 8px;
  border: 2px solid #EBAA3F;
  padding: 50px 59px;
  text-align: center;
}

.contact-info-form-title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}

.contact-info-form-shortcode {
  margin-bottom: 10px;
}



.contact-info-form-shortcode .gform_title {
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 700;
  color: #fff;
}

.contact-info-form-shortcode input[type="text"],
.contact-info-form-shortcode input[type="email"],
.contact-info-form-shortcode input[type="tel"],
.contact-info-form-shortcode input[type="number"],
.contact-info-form-shortcode input[type="url"],
.contact-info-form-shortcode textarea,
.contact-info-form-shortcode select {
  background: #fff;
  border: 2px solid transparent !important;
  border-radius: 4px !important;
  font-family: var(--content-font) !important;
  font-size: 16px !important;
  font-weight: 400;
  color: var(--blue) !important;
  text-align: left;
  padding: 12px 15px !important;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-form-shortcode input[type="file"] {
  border-radius: 4px !important;
  border: 2px solid transparent !important;
}

.contact-info-form-shortcode input[type="text"]::placeholder,
.contact-info-form-shortcode input[type="email"]::placeholder,
.contact-info-form-shortcode input[type="tel"]::placeholder,
.contact-info-form-shortcode input[type="number"]::placeholder,
.contact-info-form-shortcode input[type="url"]::placeholder,
.contact-info-form-shortcode input[type="file"]::placeholder,
.contact-info-form-shortcode textarea::placeholder {
  font-family: var(--content-font);
  font-size: 16px;
  font-weight: 400;
  color: #AFAFAF !important;
}

.contact-info-form-shortcode input[type="text"]:focus,
.contact-info-form-shortcode input[type="email"]:focus,
.contact-info-form-shortcode input[type="tel"]:focus,
.contact-info-form-shortcode input[type="number"]:focus,
.contact-info-form-shortcode input[type="url"]:focus,
.contact-info-form-shortcode textarea:focus,
.contact-info-form-shortcode input[type="file"]:focus,
.contact-info-form-shortcode select:focus {
  outline: none;
  border: 2px solid #EBAA3F !important;
  box-shadow: 0 2px 24px 0 rgba(243, 171, 53, 0.60) !important;
}

.gform_fileupload_rules{
  display: none !important;
}

.gform_fields{
  row-gap: 28px !important;
}

.contact-info-form-shortcode label{
  font-family: var(--content-font) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #fff !important;
  text-align: left !important;
}

.contact-info-form-shortcode .gform_button,
.contact-info-form-shortcode input[type="submit"] {
  position: relative;
  background: linear-gradient(180deg, #EBAA3F 0%, #FFAD27 100%);
  color: var(--blue) !important;
  border-radius: 32px !important;
  border: 1px solid #fff !important;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55) !important;
  font-weight: 900 !important;
  font-size: 17px !important;
  font-family: var(--button-font) !important;
  text-transform: uppercase !important;
  padding: 12px 24px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 168px !important;
}
.gform_footer {
  justify-content: center !important;
}

.contact-info-form-shortcode .gform_button:hover,
.contact-info-form-shortcode input[type="submit"]:hover {
  box-shadow: 0 2px 10px 0 rgba(156, 156, 156, 0.75);
}

.contact-info-form-last-text {
  font-family: var(--content-font);
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  font-weight: 500;
}

.contact-info-form-last-text p {
  margin: 0;
}

/* Row 2: Financing */
.contact-info-row-2 {
  padding-top: 54px;
}

.contact-info-financing {
  display: flex;
  flex-direction: row-reverse;
  gap: 60px;
}

.contact-info-financing-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.contact-info-financing-title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: bold;
  color: white;
  text-transform: none;
  margin: 0;
}

.contact-info-financing-text {
  font-size: 16px;
  line-height: 29px;
  color: white;
  max-width: 590px;
}

.contact-info-financing-text p {
  margin-bottom: 15px;
}

.contact-info-financing-text p:last-child {
  margin-bottom: 0;
}

.contact-info-financing-right {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 27px;
}

.contact-info-financing-right img {
  background-color: var(--red);
  padding: 30px 90px;
  border: 3px solid white;
  border-radius: 8px;
}

/* Responsive Contact Info */
@media (max-width: 992px) {
  .contact-info-wrapper {
    padding: 40px 0;
  }

  .contact-info-left {
    padding: 0 30px;
  }

  .contact-info-row-1 {
    flex-direction: column;
  }

  .contact-info-right {
    flex: 0 0 100%;
    max-width: 100%;
  }



  .contact-info-financing {
    flex-direction: column-reverse;
    padding: 0 30px;
  }

  .contact-info-row-2 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 768px) {
  .contact-info-wrapper {
    border-radius: 20px;
  }

  .contact-info-title,
  .contact-info-financing-title {
    font-size: 32px;
  }

  .contact-info-form-inner {
    padding: 30px 20px;
  }

  .contact-info-financing-right img {
    padding: 20px 40px;
  }
}

@media (max-width: 576px) {
  .contact-info-section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-info-title,
  .contact-info-financing-title {
    font-size: 28px;
  }

  .contact-info-form-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .contact-info-title,
  .contact-info-financing-title {
    font-size: 28px;
  }

  .contact-info-form-title {
    font-size: 24px;
  }
}


/* Single Post Hero */
.single-post-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 0 120px 0;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: visible;
}

.single-post-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, #04233B 0%, rgba(4, 35, 59, 0.00) 50%, #04233B 100%),
    linear-gradient(180deg, rgba(4, 35, 59, 0.00) 0%, rgba(4, 35, 59, 0.85) 100%);
  pointer-events: none;
}

.single-post-hero .container {
  position: relative;
  z-index: 1;
}

.single-post-hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.single-post-date {
  font-family: var(--content-font);
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
}

.single-post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.single-post-category {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #EBAA3F;
  text-transform: uppercase;
  background: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #EBAA3F;
}

.single-post-title {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.single-post-excerpt {
  font-family: var(--content-font);
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 30px;
}

.single-post-hero .cta-primary.single-post-cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
}

/* Back to Blog Button */
.back-to-blog-wrapper {
  padding: 30px 0 17px 0;
}

.back-to-blog-wrapper .container {
  display: flex;
  justify-content: flex-start;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.back-to-blog:hover {
  opacity: 0.7;
}

.back-to-blog svg {
  flex-shrink: 0;
}


/* Single Post Content Section */
.single-post-content-section {
  padding: 0px 0 80px 0;
  position: relative;
  background-image: url('/wp-content/uploads/2026/01/Group-1000002089.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-attachment: scroll;
}



.single-post-wrapper {
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.single-post-main {
  flex: 1;
  min-width: 0;
}

.single-post-body {
  font-family: var(--content-font);
  font-size: 16px;
  color: var(--blue);
  line-height: 1.8;
}

.single-post-body h1 {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  margin: 30px 0 20px 0;
}

.single-post-body h2 {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  margin: 30px 0 20px 0;
}

.single-post-body h3 {
  font-family: var(--content-font);
  font-size: 31px;
  font-weight: 700;
  margin: 25px 0 15px 0;
}

.single-post-body h4,
.single-post-body h5,
.single-post-body h6 {
  font-family: var(--content-font);
  font-weight: 700;
  margin: 20px 0 15px 0;
}

.single-post-body p {
  margin-bottom: 20px;
}

.single-post-body ul {
  margin-bottom: 20px;
  padding-left: 25px;
  list-style: none;
}

.single-post-body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.single-post-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #C72627;
  border-radius: 50%;
}

.single-post-body ol {
  margin-bottom: 20px;
  padding-left: 0;
  list-style: none;
  counter-reset: custom-counter;
}

.single-post-body ol li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  counter-increment: custom-counter;
}

.single-post-body ol li::before {
  content: counter(custom-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--content-font);
  font-size: 21px;
  font-weight: 700;
  color: #C72627;
}

.single-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.single-post-body a {
  color: var(--red);
  text-decoration: underline;
}

.single-post-body a:hover {
  opacity: 0.8;
}

/* Blockquote Styles */
.single-post-body blockquote {
  position: relative;
  width: 100%;
  padding: 30px 40px;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 0 3px 9px 0 rgba(139, 139, 139, 0.30);
  margin: 30px 0;
  text-align: left;
  text-transform: uppercase;
}

.single-post-body blockquote::before {
  content: '';
  display: block;
  width: 53px;
  height: 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='35' viewBox='0 0 53 35' fill='none'%3E%3Cpath d='M52.096 1.152C49.152 6.784 46.848 14.464 45.952 19.968C46.208 23.552 47.488 29.44 49.024 33.92V34.944H29.568C28.672 32.768 28.288 30.336 28.288 28.16C28.288 25.6 28.672 22.912 29.568 20.48C32 13.824 35.328 7.68 40.832 0H52.096V1.152ZM23.808 1.152C20.864 6.784 18.56 14.464 17.664 19.968C17.92 23.552 19.2 29.44 20.736 33.92V34.944H1.28C0.384 32.768 0 30.336 0 28.16C0 25.6 0.384 22.912 1.28 20.48C3.712 13.824 7.04 7.68 12.544 0H23.808V1.152Z' fill='url(%23paint0_linear_1_5233)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1_5233' x1='26.048' y1='0' x2='26.048' y2='34.944' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23C72627'/%3E%3Cstop offset='1' stop-color='%23BF1011'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}

.single-post-body blockquote p {
  color: white;
  font-family: var(--content-font);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}


/* Single Post Sidebar */
.single-post-sidebar {
  flex: 0 0 300px;
  max-width: 300px;
}

.sidebar-widget {
  background: var(--blue);
  border-radius: 8px;
  padding: 56px 19px 32px 19px;
  margin-bottom: 30px;
}

.sidebar-widget-title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding-bottom: 30px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  padding-bottom: 16px;
  border-bottom: 1px solid #fff;
  margin-bottom: 16px;
}

.sidebar-menu li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-menu li a {
  font-family: var(--content-font);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.sidebar-menu li a:hover {
  color: #EBAA3F;
}

/* Van Animation */
@keyframes vanSlideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.single-post-van {
  position: absolute;
  bottom: -80px;
  right: 0;
  z-index: 10;
  max-width: 500px;
  animation: vanSlideIn 1.2s ease-out forwards;
}

.single-post-van img {
  width: 100%;
  height: auto;
}

/* Share Section */
.single-post-share {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

/* Single Post Small CTA */
.single-post-small-cta {
  margin-top: 30px;
}

.single-post-small-cta__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--blue);
  border-radius: 74px;
  box-shadow: 0 3px 9px 0 rgba(139, 139, 139, 0.30);
  padding: 40px 50px;
}

.single-post-small-cta__title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.share-title {
  font-family: var(--content-font);
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
}

.share-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.share-icon:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.share-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Related Articles Section */
.related-articles-section {
  padding: 80px 0;
}

.related-articles-heading {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 20px 0;
  text-align: center;
}

.related-articles-description {
  font-family: var(--content-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
  text-align: center;
  margin: 0 0 40px 0;
}


/* Responsive Single Post */
@media (max-width: 992px) {
  .single-post-wrapper {
    flex-direction: column;
  }

  .single-post-sidebar {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    gap: 30px;
    order: 2;
  }

  .single-post-main {
    order: 1;
  }

  .single-post-small-cta__wrapper {
    flex-direction: column;
    gap: 20px;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
  }

  .single-post-small-cta__title {
    font-size: 28px;
  }

  .sidebar-widget {
    flex: 1;
  }

  .single-post-title {
    font-size: 46px;
  }

  .single-post-van {
    max-width: 350px;
    bottom: -60px;
  }

  .single-post-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .share-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .single-post-hero {
    min-height: 400px;
    padding: 100px 0 80px 0;
  }

  .single-post-title {
    font-size: 36px;
  }

  .single-post-sidebar {
    flex-direction: column;
  }

  .sidebar-widget {
    flex: 0 0 100%;
    padding: 40px 19px 25px 19px;
  }

  .sidebar-widget-title {
    font-size: 32px;
    padding-bottom: 20px;
  }

  .single-post-van {
    max-width: 280px;
    bottom: -50px;
  }

  .related-articles-heading {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .single-post-content-section::before {
    display: none;
  }
  .single-post-content-section{
    background-size: 0px;
  }
}

@media (max-width: 576px) {
  .single-post-title {
    font-size: 28px;
  }

  .single-post-category {
    font-size: 12px;
    padding: 4px 8px;
  }

  .single-post-van {
    max-width: 200px;
    bottom: -40px;
  }

  .share-title {
    font-size: 24px;
  }

  .share-icons {
    gap: 15px;
  }

  .share-icon img {
    width: 20px;
    height: 20px;
  }

  .single-post-body blockquote {
    padding: 20px 25px;
  }

  .single-post-body blockquote::before {
    width: 40px;
    height: 26px;
  }

  .single-post-body blockquote p {
    font-size: 24px;
  }
}


/* Small CTA Section */
.small-cta__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--blue);
  border-radius: 74px;
  box-shadow: 0 3px 9px 0 rgba(139, 139, 139, 0.30);
  padding: 40px 50px;
}

.small-cta__title {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* Responsive Small CTA */
@media (max-width: 768px) {
  .small-cta__wrapper {
    flex-direction: column;
    gap: 20px;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
  }

  .small-cta__title {
    font-size: 28px;
  }
}


/* Internal Services Hero Section */
.internal-services-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

.internal-services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(4, 35, 59, 0.95) 0%, rgba(4, 35, 59, 0.70) 50%, rgba(4, 35, 59, 0.40) 100%);
  pointer-events: none;
}

.ish-content {
  display: flex;
  align-items: stretch;
  gap: 60px;
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}

.ish-left {
  flex: 2;
  display: flex;
  align-items: center;
  padding: 80px 0 80px 120px;
}

.ish-left-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 660px;
}

.ish-title {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

.ish-content-text {
  font-family: var(--content-font);
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}

.ish-content-text p {
  margin-bottom: 15px;
}

.ish-content-text p:last-child {
  margin-bottom: 0;
}

.ish-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}

/* CTA Secondary Ghost Style */
.cta-secondary-ghost {
  background: transparent;
  color: #fff;
  border-radius: 32px;
  border: 1px solid #fff;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
  font-weight: 900;
  font-size: 17px;
  font-family: var(--button-font);
  text-transform: uppercase;
  padding: 12px 24px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.cta-secondary-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(156, 156, 156, 0.75);
}

.ish-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}

.ish-review-logos {
  margin-top: 0;
}

.ish-review-logos {
  display: flex;
  background-image: url('/wp-content/uploads/2025/11/Rectangle-489.png');
  background-size: cover;
  padding: 14px;
  gap: 30px;
  align-items: center;
}

.ish-review-logos img {
  max-width: 120px;
  height: auto;
}

.ish-coupons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 20px;
}

.ish-coupon-item {
  border: 2px dashed var(--blue);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  background: #EFEFEF;
  gap: 10px;
  text-align: center;
  align-items: center;
  max-width: 433px;
}

.ish-coupon-title {
  font-family: var(--heading-font);
  font-size: 52px;
  font-weight: bold;
  color: var(--blue);
  margin: 0;
}

.ish-coupon-content {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  color: var(--blue);
}

.ish-coupon-content strong {
  font-size: 18px;
  font-family: var(--heading-font);
}

.ish-coupon-content p {
  margin-bottom: 10px;
}

.ish-coupon-content p:last-child {
  margin-bottom: 0;
}

/* Responsive Internal Services Hero */
@media (max-width: 992px) {
  .ish-content {
    flex-direction: column;
    gap: 0;
  }

  .ish-left {
    width: 100%;
    padding: 60px 30px;
    order: 2;
  }

  .ish-right {
    width: 100%;
    align-items: center;
    padding: 0;
    order: 1;
  }

  .ish-review-logos {
    width: 100%;
    border-radius: 0;
    justify-content: center;
    background-image: none;
    background: var(--blue);
  }

  .ish-review-logos img {
    max-height: 50px;
  }

  .ish-coupons {
    padding: 30px;
    width: 100%;
    order: 3;
  }

  .ish-title {
    font-size: 46px;
  }

  .ish-coupon-item {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .ish-left {
    padding: 40px 20px;
  }

  .ish-coupons {
    padding: 20px;
  }

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

  .ish-ctas {
    flex-direction: column;
    width: 100%;
  }

  .ish-ctas .cta-primary,
  .ish-ctas .cta-secondary-ghost {
    width: 100%;
    justify-content: center;
  }

  .ish-review-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .ish-coupon-title {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .ish-title {
    font-size: 28px;
  }
}
