/* Header Styles */

/* Screen reader text - hide visually but keep for accessibility */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.logo-tagline {
  color: var(--dark);
  font-size: clamp(1.2rem, 1rem + 0.64vw, 1.6rem);
}
#orpin_div_desktop_header {
  padding-top: 0rem;
  display: flex;
}

#orpin_div_desktop_header_wrapper {
  align-items: center;
  grid-template-columns: 15% 70% 15%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  display: grid;
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  max-width: 100%;
}
.mobile-only-cta {width:100%; text-align:center; padding:1rem; background-color:var(--primary); }

/* Hide mobile-only-cta on desktop (993px and above) */
@media (min-width: 993px) {
  .mobile-only-cta {
    display: none !important;
  }
}
#orpin_div_header_left {
  background-color: var(--header-left-bg, var(--light));
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  padding-right: 3rem;
  padding-left: 2rem;
  border-top: 4px solid var(--primary);
  box-sizing: border-box;
}

#orpin_div_header_left .callout-container {
  max-width: 70%;
  margin-left: 0;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#orpin_div_desktop_logo {
  width: 100%;
  background-color: var(--light);
  padding-top: 0px;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

#orpin_div_header_right {
  background-color: var(--header-right-bg, var(--light));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  padding-left: 3rem;
  padding-right: 2rem;
  border-top: 4px solid var(--primary);
  box-sizing: border-box;
}

#orpin_div_header_right .callout-container {
  max-width: 70%;
  margin-left: auto;
  margin-right: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#orpin_div_desktop_logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.orpin_div_header_right_wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.header-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.callout-container {
  display: flex;
  flex-direction: column;
}

.mobile-bar-wrapper {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}

.mobile-bar-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.mobile-bar-item:hover {
  opacity: 0.9;
}

.mobile-bar-call {
  background-color: var(--accent);
  flex: 0 0 60%;
}

.mobile-bar-call-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.75rem;
  width: 100%;
  height: 100%;
}

.mobile-bar-call-label {
  font-size: 1em;
  display: block;
}
.mobile-bar-call-label a { color:var(--light);}


.mobile-bar-menu {
  background-color: var(--secondary);
  flex: 0 0 40%;
}

.mobile-bar-menu .mobile-bar-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
}

.mobile-bar-menu svg {
  width: 60px;
  height: auto;
}

.mobile-bar-menu-text {
  color: var(--light);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.header-widget {
  display: block;
}

#orpin_div_desktop_header_container {
  background-color: transparent;
  color:#fff;
}

#orpin_div_desktop_nav {
  position: sticky;
  top: var(--admin-offset, 0px);
  z-index: 1000;
}

#orpin_div_desktop_nav_wrapper .menu-main-menu-container .sub-menu {
  border: 1px solid #fff;
}

/* Desktop Navigation Styling */
#desktop_navigation {
  display: flex;
  justify-content: flex-end;
  background-color: var(--primary);
  text-align:center;
}

#desktop_navigation .nav-menu {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left:auto;
  margin-right:auto
}

#desktop_navigation .menu-item {
  position: relative;
}

/* Add chevron to menu items with submenus */
#desktop_navigation .menu-item-has-children > a::after {
  content: '\25BC';
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

/* Rotate chevron on hover */
#desktop_navigation .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* Hide submenus by default */
#desktop_navigation .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary);
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Show submenu on hover */
#desktop_navigation .menu-item:hover > .sub-menu {
  display: block;
}

/* Submenu items */
#desktop_navigation .sub-menu .menu-item {
  width: 100%;
}

#desktop_navigation .sub-menu .menu-item a {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#desktop_navigation .menu-item a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 1rem 1.5rem;
  font-size: clamp(1.4rem, 1.2rem + 0.64vw, 1.8rem);
  transition: background-color 0.3s ease, color 0.3s ease;
}

#desktop_navigation .menu-item a:hover {
  background-color: var(--secondary);
  color: var(--light);
}

#desktop_navigation .current-menu-item > a,
#desktop_navigation .current-page-ancestor > a,
#desktop_navigation .current-menu-ancestor > a {
  background-color: var(--accent);
  color: var(--light);
  border-bottom: 3px solid var(--light);
}

#desktop_navigation .current-menu-item > a:hover {
  background-color: var(--secondary);
}

/* WP admin bar */
body.admin-bar { --admin-offset: 32px; }
@media (max-width: 782px) { body.admin-bar { --admin-offset: 46px; } }

.ct-section-inner-wrap {
  overflow: visible !important;
}

.orpin_div_hero--box ul li {
  position: relative;
  list-style: none;
  padding-left: 5rem;
}

.orpin_div_hero--box li {
  padding: 1rem;
}

.footer-widget p {
  margin-top: 0px;
}

.orpin_div_hero--box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: url('/wp-content/uploads/2025/04/checkbox-white.svg')
              no-repeat center center;
  background-size: contain;
}

.orpin_div_hero--box ul {
  padding-left: 0px;
}

.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border:3px solid var(--accent);
}

.orpin_div_header_container {
  max-height: 650px;
  border-bottom: 3px solid var(--accent);
  padding-top: 0;
  padding-bottom: 0;
}

/* Hero Header with Background Image */
.hero-header-bg {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 3px solid var(--accent);
  opacity:0.9;
}

.hero-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: center;
}

/* New hero layout specific adjustments */
.new-hero-layout {
  min-height: 600px;
}

.new-hero-layout .hero-header-overlay {
  position: relative;
  min-height: 600px;
}

.hero-header-wrapper {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.hero-header-content {
  max-width: 50%;
  padding: 2rem;
  background-color:#0000008f;
  word-wrap: break-word;
  overflow-wrap: break-word;
  border:2px solid var(--light);
}

@media (max-width: 992px) {
  .hero-header-bg {
    min-height: auto;
  }
  .hero-header-wrapper {max-width:100%;}
  
  .hero-header-overlay {
    position: relative;
    background: rgba(0, 0, 0, 0.85);
    flex-direction: column;
  }
  
  .hero-header-bg::before {
    content: '';
    display: block;
    width: 100%;
    height: 300px;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    border-bottom:3px solid var(--light);
  }
  
  .hero-header-content {
    max-width: 100%;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
  }
  
  .hero-header-content * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Hero Section Wrapper - 2 column grid */
.orpin_div_header_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 0px;
  align-items: stretch;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.orpin_div_header_left {
  display: flex;
  flex-direction: column;
}

.orpin_div_header_right {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .orpin_div_header_wrapper {
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
    max-width:100%;
  }
  
  .orpin_div_header_right {
    order: -1;
  }
}


#desktop_navigation .menu-item {
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  padding-top:1rem;
  padding-bottom: 1rem;
  text-transform:uppercase;
}

.menu-intro {
  text-align: center;
  color: #000;
  background-color: #fff;
  padding: 1rem;
  background-color: var(--light);
  text-align: center;
  font-weight:600;
}

.sd0{fill:var(--secondary);}
.sd1{fill:var(--secondary);}
.sd2{fill:var(--secondary);}
.sd3{fill:var(--primary);}
.sd4{fill:var(--secondary);}

.display-choice {display:none;}

.call-today {
  color: #fff !important;
  padding-left:3rem;
  padding-right:3rem;
  font-size: 1.25em;
}

.contact-num {
  font-weight: 900;
  color: #fff !important;
}

#contact_box_row .ct-fancy-icon > svg {
  width: 20px;
  height: 20px;
}

#call-us-today {
  background: url(/wp-content/uploads/2023/08/red-banner.png);
  background-position-x: 0%;
  background-position-y: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff !important;
  line-height: 2.5em;
  margin: 0;
  margin-left: auto;
}

.ksmnav-inner {
  background-color:var(--accent);
}

.ksmnav-menu {
  background-color: var(--primary);
}

#contact_box_row {
  align-items: stretch;
  grid-template-columns: repeat(3,minmax(80px,1fr));
  grid-column-gap: 0px;
  grid-row-gap: 20px;
  display: grid;
  border-bottom: 2px solid #fff
}

#call_us {
  background-color: var(--primary);
  text-align: left;
  align-items: center;
  gap: 10px;
}

#email_us {
  text-align: left;
  align-items: center;
  gap: 10px;
}

#about_us {
  background-color: var(--accent);
  text-align: left;
  align-items: center;
  gap: 10px;
}

div.ct-fancy-icon {
  display: inline-flex;
  border-radius: 50%;
}

#fancy_icon-11-7114 > svg {
  width: 20px;
  height: 20px;
}

#fancy_icon-15-7114 > svg {
  width: 20px;
  height: 20px;
}

#fancy_icon-14-7114 > svg {
  width: 20px;
  height: 20px;
}

#orpin_div_desktop_nav_control .menu-item a:hover {
  background-color: var(--secondary);
}

#orpin_div_desktop_nav_control .sub-menu .menu-item a:hover {
  background-color: var(--secondary);
}

#orpin_div_desktop_nav_control .menu-item a:active {
  background-color: var(--secondary);
}

#_nav_menu-2887-5620.oxy-nav-menu:not(.oxy-nav-menu-open) .sub-menu {
  background-color: var(--accent) !important;
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

#menu-top-menu {
  list-style-type: none;
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  flex-wrap: wrap;
  float: right;
}

#svg-phone {width:25px; height:25px;fill:#fff;}

#-site-navigation-desktop .sub-menu .menu-item {
  border-bottom: 1px solid #fff;
}

#-site-navigation-desktop .current-post-ancestor {background-color:#444 !important; }
#-site-navigation-desktop .current-post-ancestor a:hover {color:#fff !important; }
#-site-navigation-desktop .current-menu-ancestor {background-color:var(--accent) !important; }
#-site-navigation-desktop .current-menu-ancestor a { color: #fff !important; }
#-site-navigation-desktop .current-menu-item  {background-color:#444 !important; }
#-site-navigation-desktop .current-menu-item a {color:#fff !important; }

#orpin_div_desktop_nav_control .current-menu-item a {
  background-color: var(--secondary);
  color: var(--light);
  border-bottom: 2px solid #fff;
}

#-site-navigation-desktop .menu-item a:hover {
  background-color: var(--primary);
}

@media (max-width: 992px) {
  #orpin_div_desktop_header_wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  #orpin_div_header_left {
    display: none;
  }
  
  #orpin_div_desktop_logo {
    padding: 1.5rem 1rem;
    order: -1;
  }
  
  .logo-tagline {
    font-size: 1.2rem;
  }
  
  #orpin_div_header_right {
    display: none;
  }
  
  #desktop_navigation .menu-item a {
    font-size: 1.4rem;
    padding: 0.8rem 1rem;
  }
  
  #desktop_navigation {
    display: none;
  }
}

@media (max-width: 768px) {
  .display-choice {display:block;}
}

.top-animate-header {
  text-transform: uppercase;
  background-image: linear-gradient( -225deg, #fff 49%, #bc8818 67%, #fff 100% );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 3s linear infinite;
  display: inline-block;
}

.animate-text-header {
  text-transform: uppercase;
  background-image: linear-gradient( -225deg, #fff 49%, var(--accent) 100%, #fff 100% );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 4s linear infinite;
  display: inline-block;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

#link-2881-5620 {
  background-color: #e2e2e2;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-menu ul {
  padding-left: 2rem;
  color:var(--light);
  margin-top: 0;
}

.latest-footer {
  color:var(--light);
  padding-left:2rem;
  margin-top:0px;
}

.latest-footer a {color:var(--light);}
.latest-footer li {margin-bottom:1rem;}

.h-footer {
  border-bottom: 2px solid #fff;
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 2rem !important;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--light);
  padding-bottom: .5rem;
}

@media only screen and (max-width: 1205px) {
  #masthead .menu-main-menu-container .menu-item a {
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 993px) {
  #ksmnav-main {display:none;}
}

/* ==========================================================================
   New Header Design (Armorproof Style)
   ========================================================================== */

/* Top Promotional Banner */
.promo-banner {
  text-align: center;
  padding: 1rem 2rem;
  font-size: clamp(1.4rem, 1.2rem + 0.64vw, 1.8rem);
  font-weight: 600;
}

.promo-banner-content {
  max-width: 1400px;
  margin: 0 auto;
}

/* New Header Layout - Desktop */
.new-header-layout {
  display: grid;
  grid-template-columns: 15% 70% 15%;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  gap: 0;
}

/* Logo Section (Left) */
.header-logo-section {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-logo-section img {
  max-height: 70px;
  width: auto;
  max-width: 100%;
}

/* Navigation Section (Center) */
.header-nav-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-nav-section #desktop_navigation {
  background-color: transparent;
  margin: 0;
}

.header-nav-section #desktop_navigation .nav-menu {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-section #desktop_navigation .menu-item a {
  color: var(--secondary);
  font-weight: 600;
  padding: 2rem 1.5rem;
  font-size: clamp(1.3rem, 1.1rem + 0.64vw, 1.6rem);
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.header-nav-section #desktop_navigation .menu-item a:hover {
  color: var(--primary);
  background-color: transparent;
}

.header-nav-section #desktop_navigation .current-menu-item > a {
  color: var(--primary);
  background-color: transparent;
  border-bottom: 3px solid var(--primary);
}

/* CTA Section (Right) */
.header-cta-section {
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cta-label {
  font-size: clamp(1.2rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 500;
  text-transform: none;
}

.cta-phone {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta-phone a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.cta-phone a:hover {
  opacity: 0.9;
}

/* Hide old header styles on desktop */
@media (min-width: 993px) {
  .new-header-design #orpin_div_header_left,
  .new-header-design #orpin_div_header_right {
    display: none;
  }

  .new-header-design #orpin_div_desktop_header {
    border-bottom: 1px solid #e5e5e5;
  }

  /* Hide mobile-only CTA banner on desktop since we have new promo banner */
  .site-header .mobile-only-cta {
    display: none;
  }
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  .new-header-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .header-logo-section {
    padding: 1.5rem 1rem;
    align-items: center;
  }

  .header-nav-section {
    display: none;
  }

  .header-cta-section {
    display: none;
  }

  .promo-banner {
    padding: 0.8rem 1rem;
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   Custom Header Style
   ========================================================================== */

.orpin_div-header-top {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.orpin_div-header-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orpin_div-logo img {
  height: 100px;
  width: auto;
}

.orpin_div-header-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.orpin_div-btn {
  padding: 1.2rem 2.5rem;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.orpin_div-btn-phone {
  color: var(--light);
}

.orpin_div-btn-phone:hover {
  background-color: #e08c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.orpin_div-btn-contact {
  color: var(--light);
}

.orpin_div-btn-contact:hover {
  background-color: #1a1a1a;
}

/* Navigation Bar */
.orpin_div-nav-bar {
  padding: 0;
  background-color: var(--primary);
}

.orpin_div-nav-bar #desktop_navigation {
  background-color: transparent;
  margin: 0;
  display: flex;
  justify-content: center;
}

.orpin_div-nav-bar #desktop_navigation .nav-menu {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.orpin_div-nav-bar #desktop_navigation .menu-item a {
  color: var(--light);
  font-weight: 600;
  padding: 1.5rem 2rem;
  font-size: clamp(1.3rem, 1.2rem + 0.3vw, 1.5rem);
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.orpin_div-nav-bar #desktop_navigation .menu-item a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.orpin_div-nav-bar #desktop_navigation .current-menu-item > a {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Promotional Banner */
.orpin_div-promo-banner {
  text-align: center;
  padding: 1rem 2rem;
}

.orpin_div-promo-content {
  max-width: 1600px;
  margin: 0 auto;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.7rem);
  font-weight: 600;
  text-transform: uppercase;
}

/* Hide old header elements */
@media (min-width: 993px) {
  .orpin_div-header-design #orpin_div_header_left,
  .orpin_div-header-design #orpin_div_header_right {
    display: none;
  }
}

/* Mobile Header */
@media (max-width: 992px) {
  .orpin_div-header-container {
    padding: 0 1rem;
    justify-content: center;
  }

  .orpin_div-logo img {
    max-height: 60px;
  }

  .orpin_div-header-buttons {
    display: none;
  }

  .orpin_div-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
  }

  .orpin_div-nav-bar {
    background-color: transparent;
    padding: 0;
  }

  .orpin_div-nav-bar .ksm-navigation--desktop {
    display: none;
  }

  .orpin_div-promo-banner {
    display: none;
  }

  .orpin_div-promo-content {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   New Hero Layout (Custom Style)
   ========================================================================== */

.new-hero-layout .hero-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-left-content {
  padding: 2rem 0;
}

.hero-main-title {
  font-size: clamp(3rem, 2.5rem + 2vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: clamp(1.6rem, 1.4rem + 0.5vw, 2rem);
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.hero-cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1.5rem 3rem;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.7rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-btn-primary {
  background-color: var(--accent);
  color: var(--dark);
}

.hero-btn-primary:hover {
  background-color: #e08c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--light);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-right-form {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}

.hero-form-container {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  overflow: hidden;
}

.hero-form-container form {
  width: 100%;
  box-sizing: border-box;
}

.hero-form-container input,
.hero-form-container textarea,
.hero-form-container select,
.hero-form-container button {
  max-width: 100%;
  box-sizing: border-box;
}

.form-heading {
  font-size: clamp(2rem, 1.8rem + 0.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light);
}

.form-subheading {
  font-size: clamp(1.4rem, 1.3rem + 0.3vw, 1.6rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  color: var(--light);
}

/* Hero Review Badge */
.hero-review-badge-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

.hero-review-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-review-badge:hover {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-review-stars {
  display: flex;
  gap: 0.2rem;
}

.hero-review-star {
  color: var(--accent);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-review-text {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--light);
  font-size: 1.5rem;
  font-weight: 600;
}

.hero-review-rating {
  font-size: 1.6rem;
  font-weight: 700;
}

.hero-review-separator {
  color: rgba(255, 255, 255, 0.5);
}

.hero-review-count {
  font-weight: 500;
}

.hero-review-link {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 600;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease;
}

.hero-review-badge:hover .hero-review-link {
  color: var(--light);
}

/* Mobile Hero Layout */
@media (max-width: 992px) {
  /* Show featured image at top, hide background behind content on mobile */
  .new-hero-layout {
    position: relative;
    background-size: cover;
    background-position: center;
  }

  /* Featured image block at the top */
  .new-hero-layout::before {
    content: '';
    display: block;
    width: 100%;
    height: 300px;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--accent);
  }

  /* Dark background behind the content (not behind the image) */
  .new-hero-layout .hero-header-overlay {
    background: var(--dark);
    position: relative;
    min-height: auto;
  }

  .new-hero-layout .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  /* Hero text comes first, form comes second (no order change needed) */
  .hero-left-content {
    order: 1;
  }

  .hero-right-form {
    order: 2;
  }

  .hero-form-container {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-review-badge {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem;
    width:100%;
  }

  .hero-review-text {
    font-size: 1.3rem;
  }

  .hero-review-star {
    font-size: 1.5rem;
  }

  .hero-review-badge-wrapper {
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
